source: branches/2.2/filemanager/tp/ckeditor/_source/skins/v2/elementspath.css @ 3019

Revision 3019, 1.2 KB checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

Line 
1/*
2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6@media print
7{
8        .cke_path
9        {
10                display: none;
11        }
12}
13
14.cke_skin_v2 .cke_path
15{
16        padding: 3px 3px 0 3px;
17        display: inline-block;
18        float: left;
19}
20
21.cke_skin_v2 .cke_rtl .cke_path
22{
23        float: right;
24}
25
26.cke_skin_v2 .cke_path a,
27.cke_skin_v2 .cke_path .cke_empty
28{
29        display: inline-block;
30        float: left;
31        border: solid 1px #efefde;
32        background-color: #efefde;
33        padding-top: 1px;
34        padding-bottom: 1px;
35        padding-left: 4px;
36        padding-right: 4px;
37        margin-bottom : 3px;
38}
39
40.cke_skin_v2 .cke_path .cke_empty
41{
42        visibility: hidden;
43}
44
45.cke_skin_v2 .cke_rtl .cke_path a,
46.cke_skin_v2 .cke_rtl .cke_path cke_empty
47{
48        float: right;
49}
50
51.cke_skin_v2 .cke_path a:hover,
52.cke_skin_v2 .cke_path a:focus,
53.cke_skin_v2 .cke_path a:active /* IE */
54{
55        border: solid 1px #316ac5;
56        background-color: #dff1ff;
57        padding-top: 1px;
58        padding-bottom: 1px;
59        padding-left: 4px;
60        padding-right: 4px;
61        outline: none;
62}
63
64.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path a,
65.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path .cke_empty
66{
67        float: none;
68}
Note: See TracBrowser for help on using the repository browser.