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