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

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