ckeditor.editor.css 517 B

123456789101112131415161718192021222324
  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. }