editor_iequirks.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /*
  6. editor_iequirks.css
  7. ===============
  8. This file contains styles to used by all versions of Internet Explorer
  9. in Quirks mode only.
  10. */
  11. /* Base it on editor_ie.css, overriding it with styles defined in this file. */
  12. @import url("editor_ie.css");
  13. .cke_top,
  14. .cke_contents,
  15. .cke_bottom
  16. {
  17. width: 100%; /* hasLayout = true */
  18. }
  19. .cke_button_arrow
  20. {
  21. font-size: 0; /* Set minimal font size, so arrow won't be streched by the text that doesn't exist. */
  22. }
  23. /* Bring back toolbar buttons in RTL. */
  24. .cke_rtl .cke_toolgroup,
  25. .cke_rtl .cke_toolbar_separator,
  26. .cke_rtl .cke_button,
  27. .cke_rtl .cke_button *,
  28. .cke_rtl .cke_combo,
  29. .cke_rtl .cke_combo *,
  30. .cke_rtl .cke_path_item,
  31. .cke_rtl .cke_path_item *,
  32. .cke_rtl .cke_path_empty
  33. {
  34. float: none;
  35. }
  36. .cke_rtl .cke_toolgroup,
  37. .cke_rtl .cke_toolbar_separator,
  38. .cke_rtl .cke_combo_button,
  39. .cke_rtl .cke_combo_button *,
  40. .cke_rtl .cke_button,
  41. .cke_rtl .cke_button_icon
  42. {
  43. display: inline-block;
  44. vertical-align: top;
  45. }
  46. /* Otherwise formatting toolbar breaks when editing a mixed content (#9893). */
  47. .cke_rtl .cke_button_icon
  48. {
  49. float: none;
  50. }
  51. .cke_resizer
  52. {
  53. width: 10px;
  54. }
  55. .cke_source
  56. {
  57. white-space: normal;
  58. }
  59. .cke_bottom
  60. {
  61. position: static; /* Without this bottom space doesn't move when resizing editor. */
  62. }
  63. .cke_colorbox
  64. {
  65. font-size: 0; /* Set minimal font size, so button won't be streched by the text that doesn't exist. */
  66. }