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 |
elementspath.css (part of editor.css)
|
|
|
8 |
=======================================
|
|
|
9 |
|
|
|
10 |
This file styles the "Elements Path", whith is the list of element names
|
|
|
11 |
present at the the bottom bar of the CKEditor interface.
|
|
|
12 |
|
|
|
13 |
The following is a visual representation of its main elements:
|
|
|
14 |
|
|
|
15 |
+-- .cke_path ---------------------------------------------------------------+
|
|
|
16 |
| +-- .cke_path_item ----+ +-- .cke_path_item ----+ +-- .cke_path_empty ---+ |
|
|
|
17 |
| | | | | | | |
|
|
|
18 |
| +----------------------+ +----------------------+ +----------------------+ |
|
|
|
19 |
+----------------------------------------------------------------------------+
|
|
|
20 |
*/
|
|
|
21 |
|
|
|
22 |
/* The box that holds the entire elements path. */
|
|
|
23 |
.cke_path {
|
|
|
24 |
float: left;
|
|
|
25 |
margin: -2px 0 2px;
|
|
|
26 |
}
|
|
|
27 |
|
|
|
28 |
/* Each item of the elements path. */
|
|
|
29 |
.cke_path_item,
|
|
|
30 |
/* Empty element available at the end of the elements path, to help us keeping
|
|
|
31 |
the proper box size when the elements path is empty. */
|
|
|
32 |
.cke_path_empty {
|
|
|
33 |
display: inline-block;
|
|
|
34 |
float: left;
|
|
|
35 |
padding: 3px 4px;
|
|
|
36 |
margin-right: 2px;
|
|
|
37 |
cursor: default;
|
|
|
38 |
text-decoration: none;
|
|
|
39 |
outline: 0;
|
|
|
40 |
border: 0;
|
|
|
41 |
color: #4c4c4c;
|
|
|
42 |
font-weight: bold;
|
|
|
43 |
font-size: 11px;
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
.cke_rtl {
|
|
|
47 |
.cke_path, .cke_path_item, .cke_path_empty {
|
|
|
48 |
float: right;
|
|
|
49 |
}
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
/* The items are <a> elements, so we define its hover states here. */
|
|
|
53 |
a.cke_path_item {
|
|
|
54 |
&:hover, &:focus, &:active {
|
|
|
55 |
background-color: #bfbfbf;
|
|
|
56 |
color: #333;
|
|
|
57 |
border-radius: 2px;
|
|
|
58 |
}
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
.cke_hc a.cke_path_item {
|
|
|
62 |
&:hover, &:focus, &:active {
|
|
|
63 |
border: 2px solid;
|
|
|
64 |
padding: 1px 2px;
|
|
|
65 |
}
|
|
|
66 |
}
|