source: trunk/filemanager/tp/ckeditor/_source/skins/kama/menu.css @ 2000

Revision 2000, 4.0 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

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.cke_skin_kama .cke_contextmenu
7{
8        padding: 2px;
9}
10
11.cke_skin_kama .cke_menuitem a
12{
13        display:block;
14}
15
16.cke_skin_kama .cke_menuitem span
17{
18        cursor: default;
19}
20
21.cke_skin_kama .cke_menuitem a:hover,
22.cke_skin_kama .cke_menuitem a:focus,
23.cke_skin_kama .cke_menuitem a:active
24{
25        background-color: #D3D3D3;
26        display:block;
27}
28
29.cke_skin_kama .cke_menuitem a.cke_disabled:hover,
30.cke_skin_kama .cke_menuitem a.cke_disabled:focus,
31.cke_skin_kama .cke_menuitem a.cke_disabled:active
32{
33        background-color: transparent !important;
34}
35
36.cke_skin_kama .cke_menuitem .cke_icon
37{
38        background-image: url(icons.png);
39        background-position: 100px;
40        background-repeat:no-repeat;
41        background-color: transparent;
42        width: 16px;
43        height: 16px;
44        float: left;
45}
46
47.cke_skin_kama .cke_menuitem .cke_disabled .cke_icon
48{
49        filter: alpha(opacity=70); /* IE */
50        opacity: 0.70; /* Safari, Opera and Mozilla */
51}
52
53.cke_skin_kama .cke_menuitem .cke_icon_wrapper
54{
55        background-color: #D3D3D3;
56        border: solid 4px #D3D3D3;
57        width: 16px;
58        height: 16px;
59        float: left;
60        filter: alpha(opacity=70); /* IE */
61        opacity: 0.70; /* Safari, Opera and Mozilla */
62        clear: both;
63}
64
65.cke_rtl .cke_skin_kama .cke_menuitem .cke_icon_wrapper
66{
67        float: right;
68}
69
70.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,
71.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,
72.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper
73{
74        background-color: #9d9d9d;
75        border: solid 4px #9d9d9d;
76        filter: alpha(opacity=70); /* IE */
77        opacity: 0.70; /* Safari, Opera and Mozilla */
78}
79
80.cke_skin_kama .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
81.cke_skin_kama .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
82.cke_skin_kama .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
83{
84        background-color: #D3D3D3;
85        border: solid 4px #D3D3D3;
86}
87
88.cke_skin_kama .cke_menuitem .cke_label
89{
90        display:block;
91        padding-right: 3px;
92        padding-top: 5px;
93        padding-left: 4px;
94        height:19px;
95        margin-left: 24px;
96        background-color: #fff;
97        _overflow: hidden;
98        _width: 80px;
99        filter: alpha(opacity=70); /* IE */
100        opacity: 0.70; /* Safari, Opera and Mozilla */
101}
102
103.cke_rtl .cke_skin_kama .cke_menuitem .cke_label
104{
105        padding-right: 0;
106        margin-left: 0;
107        padding-left: 3px;
108        margin-right: 28px;
109}
110
111.cke_skin_kama .cke_menuitem a.cke_disabled .cke_label
112{
113        filter: alpha(opacity=30); /* IE */
114        opacity: 0.30; /* Safari, Opera and Mozilla */
115}
116
117.cke_skin_kama .cke_menuitem a:hover .cke_label,
118.cke_skin_kama .cke_menuitem a:focus .cke_label,
119.cke_skin_kama .cke_menuitem a:active .cke_label
120{
121        background-color: #D3D3D3;
122}
123
124.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,
125.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,
126.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label
127{
128        background-color: transparent;
129}
130
131.cke_skin_kama .cke_menuseparator
132{
133        background-color: #D3D3D3;
134        height: 2px;
135        filter: alpha(opacity=70); /* IE */
136        opacity: 0.70; /* Safari, Opera and Mozilla */
137
138        _font-size: 0;
139}
140
141.cke_skin_kama .cke_menuarrow
142{
143        /* arrowright.gif*/
144        background-image: url(images/sprites.png);
145        _background-image: url(images/sprites_ie6.png);
146        background-position: 0 -1411px;
147        background-repeat: no-repeat;
148        height: 5px;
149        width: 3px;
150        float: right;
151        margin-right: 2px;
152        margin-top: 3px;
153}
154
155.cke_rtl .cke_skin_kama .cke_menuarrow
156{
157        float: left;
158        margin-right: 0;
159        margin-left: 2px;
160        /* arrowleft.gif*/
161        background-image: url(images/sprites.png);
162        _background-image: url(images/sprites_ie6.png);
163        background-position: 0px -1390px;
164        background-repeat: no-repeat;
165}
166
167/* #3766 In the context menu, long labels with second level menu get wrapped */
168.cke_browser_ie.cke_ltr .cke_skin_kama .cke_menuarrow
169{
170        position: absolute;
171        right: 2px;
172}
173
174.cke_browser_ie.cke_rtl .cke_skin_kama .cke_menuarrow
175{
176        position: absolute;
177        left: 2px;
178}
179/* END #3766 */
Note: See TracBrowser for help on using the repository browser.