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

Revision 3019, 4.1 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_office2003 .cke_contextmenu
7{
8        padding: 2px;
9}
10
11.cke_skin_office2003 .cke_menuitem a
12{
13        display:block;
14}
15
16.cke_skin_office2003 .cke_menuitem span
17{
18        cursor: default;
19}
20
21.cke_skin_office2003 .cke_menuitem a:hover,
22.cke_skin_office2003 .cke_menuitem a:focus,
23.cke_skin_office2003 .cke_menuitem a:active
24{
25        background-color: #8db1ff;
26        display:block;
27}
28
29.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover,
30.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus,
31.cke_skin_office2003 .cke_menuitem a.cke_disabled:active
32{
33        background-color: transparent !important;
34}
35
36.cke_skin_office2003 .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_office2003 .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_office2003 .cke_menuitem .cke_icon_wrapper
54{
55        background-color: #f7f8fd;
56        border: solid 4px #f7f8fd;
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_office2003 .cke_menuitem .cke_icon_wrapper
65{
66        float: right;
67}
68
69.cke_skin_office2003 .cke_menuitem a:hover .cke_icon_wrapper,
70.cke_skin_office2003 .cke_menuitem a:focus .cke_icon_wrapper,
71.cke_skin_office2003 .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_office2003 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
80.cke_skin_office2003 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
81.cke_skin_office2003 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
82{
83        background-color: #f7f8fd;
84        border: solid 4px #f7f8fd;
85}
86
87.cke_skin_office2003 .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_office2003 .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_office2003 .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_office2003 .cke_menuitem a:hover .cke_label,
117.cke_skin_office2003 .cke_menuitem a:focus .cke_label,
118.cke_skin_office2003 .cke_menuitem a:active .cke_label
119{
120        background-color: #8db1ff;
121}
122
123.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover .cke_label,
124.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus .cke_label,
125.cke_skin_office2003 .cke_menuitem a.cke_disabled:active .cke_label
126{
127        background-color: transparent;
128}
129
130.cke_skin_office2003 .cke_menuseparator
131{
132        background-color: #f7f8fd;
133        height: 2px;
134        filter: alpha(opacity=70); /* IE */
135        opacity: 0.70; /* Safari, Opera and Mozilla */
136
137        _font-size: 0;
138}
139
140.cke_skin_office2003 .cke_menuarrow
141{
142        /* arrowright.gif*/
143        background-image: url(images/sprites.png);
144        _background-image: url(images/sprites_ie6.png);
145        background-position: 0 -1071px;
146        background-repeat: no-repeat;
147        height: 5px;
148        width: 3px;
149        float: right;
150        margin-right: 2px;
151        margin-top: 3px;
152}
153
154.cke_rtl .cke_skin_office2003 .cke_menuarrow
155{
156        float: left;
157        margin-right: 0;
158        margin-left: 2px;
159        /* arrowleft.gif*/
160        background-position: 0 -1050px;
161}
162
163/* #3766 In the context menu, long labels with second level menu get wrapped */
164.cke_browser_ie.cke_ltr .cke_skin_office2003 .cke_menuarrow
165{
166        position: absolute;
167        right: 2px;
168}
169
170.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuarrow
171{
172        position: absolute;
173        left: 2px;
174}
175/* END #3766 */
Note: See TracBrowser for help on using the repository browser.