]> git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blob - sources/skins/moono/editor.css
Change html5 audio player
[perso/Immae/Projets/packagist/ludivine-ckeditor-component.git] / sources / skins / moono / editor.css
1 /*
2 Copyright (c) 2003-2017, 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 /* "Reset" styles, necessary to avoid the editor UI being broken by external CSS. */
18 @import url("reset.css");
19
20 /* Styles the main interface structure (holding box). */
21 @import url("mainui.css");
22
23 /* Styles all "panels", which are the floating elements that appear when
24 opening toolbar combos, menu buttons, context menus, etc. */
25 @import url("panel.css");
26
27 /* Styles the color panel displayed by the color buttons. */
28 @import url("colorpanel.css");
29
30 /* Styles to toolbar. */
31 @import url("toolbar.css");
32
33 /* Styles menus, which are lists of selectable items (context menu, menu button). */
34 @import url("menu.css");
35
36 /* Styles toolbar combos. */
37 @import url("richcombo.css");
38
39 /* Styles the elements path bar, available at the bottom of the editor UI.*/
40 @import url("elementspath.css");
41
42 /* Contains hard-coded presets for "configurable-like" options of the UI
43 (e.g. display labels on specific buttons) */
44 @import url("presets.css");
45
46 /* Styles for notifications. */
47 @import url("notification.css");
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 {
54 visibility: inherit;
55 }
56
57 /* For accessibility purposes, several "voice labels" are present in the UI.
58 These are usually <span> elements that show not be visible, but that are
59 used by screen-readers to announce other elements. Here, we hide these
60 <spans>, in fact. */
61 .cke_voice_label
62 {
63 display: none;
64 }
65
66 legend.cke_voice_label
67 {
68 display: none;
69 }