source: branches/2.2/filemanager/tp/ckeditor/_source/skins/kama/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_kama .cke_path
15{
16        padding: 0 5px;
17        display: inline-block;
18        float: left;
19}
20
21.cke_skin_kama .cke_rtl .cke_path
22{
23        float: right;
24}
25
26.cke_skin_kama .cke_path a,
27.cke_skin_kama .cke_path .cke_empty
28{
29        display: inline-block;
30        float: left;
31        padding-top: 1px;
32        padding-bottom: 1px;
33        padding-left: 4px;
34        padding-right: 4px;
35        margin-bottom : 3px;
36        color: #60676a;
37}
38
39.cke_skin_kama .cke_path .cke_empty
40{
41        visibility: hidden;
42}
43
44.cke_skin_kama .cke_rtl .cke_path a,
45.cke_skin_kama .cke_rtl .cke_path cke_empty
46{
47        float: right;
48}
49
50.cke_skin_kama .cke_path a:hover,
51.cke_skin_kama .cke_path a:focus,
52.cke_skin_kama .cke_path a:active       /* IE */
53{
54        background-color: #dff1ff;
55        padding-top: 1px;
56        padding-bottom: 1px;
57        padding-left: 4px;
58        padding-right: 4px;
59        outline: none;
60        color : #000;
61}
62
63/* IE double float-right workaround */
64.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path a,
65.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path .cke_empty
66{
67        float: none;
68}
Note: See TracBrowser for help on using the repository browser.