You are here

ckeditor.editor.css in CKEditor - WYSIWYG HTML editor 7

/* Editor classes */

/* CKEditor padding in IE */
table.cke_editor fieldset {
    padding: 0 !important;
}
/* hack with ie and garland editing area size fix - [#733512] */
.cke_editor{
    display: table !important;
}
.cke_editor,#ie#bug {
    display: inline-table !important;
}
/* Fix table border for Drupal's Seven theme - [#1020612] */
.cke_dialog tr td:last-child {
    border-right: 0;
}
/* Panels in IE11 [#2244835] */
.cke.cke_chrome {
    visibility: inherit;
}
.cke.cke_panel {
    visibility: visible;
}

File

css/ckeditor.editor.css
View source
  1. /* Editor classes */
  2. /* CKEditor padding in IE */
  3. table.cke_editor fieldset {
  4. padding: 0 !important;
  5. }
  6. /* hack with ie and garland editing area size fix - [#733512] */
  7. .cke_editor{
  8. display: table !important;
  9. }
  10. .cke_editor,#ie#bug {
  11. display: inline-table !important;
  12. }
  13. /* Fix table border for Drupal's Seven theme - [#1020612] */
  14. .cke_dialog tr td:last-child {
  15. border-right: 0;
  16. }
  17. /* Panels in IE11 [#2244835] */
  18. .cke.cke_chrome {
  19. visibility: inherit;
  20. }
  21. .cke.cke_panel {
  22. visibility: visible;
  23. }