You are here

ckeditor.css in Editor 7

/**
 * CSS needed when displaying a CKEditor instance.
 */
.ckeditor-dialog-loading {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}

.ckeditor-dialog-loading-link {
  border-radius: 0 0 5px 5px;
  border: 1px solid #B6B6B6;
  border-top: none;
  background: white;
  padding: 3px 10px;
  box-shadow: 0 0 10px -3px #000;
  display: inline-block;
  font-size: 14px;
  position: relative;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * Adjust the style of in-place editing CKEditor instances.
 */
.quickedit-toolgroup.wysiwyg-main .cke_chrome,
.quickedit-toolgroup.wysiwyg-main .cke_inner,
.quickedit-toolgroup.wysiwyg-main .cke_top {
  background: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  box-shadow: none;
}

File

modules/editor_ckeditor/css/ckeditor.css
View source
  1. /**
  2. * CSS needed when displaying a CKEditor instance.
  3. */
  4. .ckeditor-dialog-loading {
  5. position: absolute;
  6. top: 0;
  7. width: 100%;
  8. text-align: center;
  9. }
  10. .ckeditor-dialog-loading-link {
  11. border-radius: 0 0 5px 5px;
  12. border: 1px solid #B6B6B6;
  13. border-top: none;
  14. background: white;
  15. padding: 3px 10px;
  16. box-shadow: 0 0 10px -3px #000;
  17. display: inline-block;
  18. font-size: 14px;
  19. position: relative;
  20. top: 0;
  21. -webkit-touch-callout: none;
  22. -webkit-user-select: none;
  23. -khtml-user-select: none;
  24. -moz-user-select: none;
  25. -ms-user-select: none;
  26. user-select: none;
  27. }
  28. /**
  29. * Adjust the style of in-place editing CKEditor instances.
  30. */
  31. .quickedit-toolgroup.wysiwyg-main .cke_chrome,
  32. .quickedit-toolgroup.wysiwyg-main .cke_inner,
  33. .quickedit-toolgroup.wysiwyg-main .cke_top {
  34. background: transparent;
  35. border-top: none;
  36. border-right: none;
  37. border-bottom: none;
  38. border-left: none;
  39. box-shadow: none;
  40. }