You are here

assets-editor.css in Asset 7

.asset.editor {
  cursor: default;
  margin: 10px 0;
  padding: 5px 10px;
  background: #F4F1ED;
  box-shadow: 0 0 15px #e1dede inset;
  clear: both;
}

.asset.editor.selected {
  background: #FDFDEE;
  box-shadow: 0 0 15px #e1dede inset;
}

.asset.editor.selected:hover {
  background: #F3E1DB;
  box-shadow: 0 0 15px #D7C9C4 inset;
}

.asset.editor .content {
  padding:5px 0;
}

.asset.editor.asset-align-left {
  margin: 0 8px 0 0;
  float: left;
}

.asset.editor.asset-align-right {
  margin: 0 0 0 8px;
  float: right;
}

.asset.editor.asset-align-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

File

ckeditor/assets-editor.css
View source
  1. .asset.editor {
  2. cursor: default;
  3. margin: 10px 0;
  4. padding: 5px 10px;
  5. background: #F4F1ED;
  6. box-shadow: 0 0 15px #e1dede inset;
  7. clear: both;
  8. }
  9. .asset.editor.selected {
  10. background: #FDFDEE;
  11. box-shadow: 0 0 15px #e1dede inset;
  12. }
  13. .asset.editor.selected:hover {
  14. background: #F3E1DB;
  15. box-shadow: 0 0 15px #D7C9C4 inset;
  16. }
  17. .asset.editor .content {
  18. padding:5px 0;
  19. }
  20. .asset.editor.asset-align-left {
  21. margin: 0 8px 0 0;
  22. float: left;
  23. }
  24. .asset.editor.asset-align-right {
  25. margin: 0 0 0 8px;
  26. float: right;
  27. }
  28. .asset.editor.asset-align-center {
  29. margin-left: auto;
  30. margin-right: auto;
  31. display: block;
  32. }