Project

General

Profile

1 57088 stefania.m
/*
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
/*
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
{
25
	float: left;
26
}
27
28
/* Each item of the elements path. */
29
a.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
span.cke_path_empty
33
{
34
	display: inline-block;
35
	float: left;
36
	padding: 4px;
37
	margin-right: 2px;
38
	cursor: default;
39
	text-decoration: none;
40
	outline: 0;
41
	border: 0;
42
	color: #212121;
43
	text-shadow: 0 1px 0 #fff;
44
	font-weight: 400;
45
	font-size: 12px;
46
}
47
48
.cke_rtl .cke_path,
49
.cke_rtl .cke_path_item,
50
.cke_rtl .cke_path_empty
51
{
52
	float: right;
53
}
54
55
/* The items are <a> elements, so we define its hover states here. */
56
a.cke_path_item:hover,
57
a.cke_path_item:focus,
58
a.cke_path_item:active
59
{
60
	background-color: #e4e4e4;
61
	color: #212121;
62
	border-radius: 2px;
63
64
}
65
66
.cke_hc a.cke_path_item:hover,
67
.cke_hc a.cke_path_item:focus,
68
.cke_hc a.cke_path_item:active
69
{
70
	border: 2px solid;
71
	padding: 1px 2px;
72
}