editor.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /*
  6. editor.css
  7. ============
  8. This is he heart of the skin system. This is the file loaded by the editor to
  9. style all elements inside its main interface.
  10. To make it easier to maintain, instead of including all styles here, we import
  11. other files.
  12. */
  13. /* Config files, where variables are defined */
  14. @import "../config/config";
  15. /* "Reset" styles, necessary to avoid the editor UI being broken by external CSS. */
  16. @import "reset";
  17. /* Styles the main interface structure (holding box). */
  18. @import "mainui";
  19. /* Styles all "panels", which are the floating elements that appear when
  20. opening toolbar combos, menu buttons, context menus, etc. */
  21. @import "panel";
  22. /* Styles the color panel displayed by the color buttons. */
  23. @import "colorpanel";
  24. /* Styles to toolbar. */
  25. @import "toolbar";
  26. /* Styles menus, which are lists of selectable items (context menu, menu button). */
  27. @import "menu";
  28. /* Styles toolbar combos. */
  29. @import "richcombo";
  30. /* Styles the elements path bar, available at the bottom of the editor UI.*/
  31. @import "elementspath";
  32. /* Contains hard-coded presets for "configurable-like" options of the UI
  33. (e.g. display labels on specific buttons) */
  34. @import "presets";
  35. /* Important!
  36. To avoid showing the editor UI while its styles are still not available, the
  37. editor creates it with visibility:hidden. Here, we restore the UI visibility. */
  38. .cke_chrome {
  39. visibility: inherit;
  40. }
  41. /* For accessibility purposes, several "voice labels" are present in the UI.
  42. These are usually <span> elements that show not be visible, but that are
  43. used by screen-readers to announce other elements. Here, we hide these
  44. <spans>, in fact. */
  45. .cke_voice_label {
  46. display: none;
  47. }
  48. legend.cke_voice_label {
  49. display: none;
  50. }