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

Revision 3019, 3.4 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_panel
7{
8    border: 1px solid #8f8f73;
9        background-color: #fff;
10
11        width: 120px;
12        height: 100px;
13
14        overflow:hidden;
15
16        -moz-border-radius: 3px;
17        -webkit-border-radius: 3px;
18        border-radius: 3px;
19}
20
21/* Ideally we would use "inherit here"... but you know... IE :( */
22.cke_skin_office2003 .cke_panel iframe
23{
24        width: 100%;
25        height: 100%;
26}
27
28/*
29 * All the following styles are to be used inside the iframe that holds panel
30 * contents. We don't use the cke_skin_default there to avoid the reset to be
31 * active.
32 * This is not an issue as we'll never have two skins running inside the same
33 * panel iframe.
34 */
35
36html.cke_skin_office2003_container
37{
38        overflow: auto;
39        overflow-x: hidden;
40}
41
42body.cke_panel_frame
43{
44        overflow: auto;
45        overflow-x: hidden;
46}
47
48ul.cke_panel_list
49{
50        list-style-type: none;
51        margin: 3px;
52        padding: 0px;
53    white-space: nowrap;
54}
55
56li.cke_panel_listItem
57{
58        margin: 0px;
59}
60
61.cke_panel_listItem a
62{
63        padding: 2px;
64        display: block;
65        border: 1px solid #fff;
66        color: inherit;
67        text-decoration: none;
68        overflow: hidden;
69    text-overflow: ellipsis;
70}
71
72/* IE6 */
73* html .cke_panel_listItem a
74{
75        width : 100%;
76
77        /* IE is not able to inherit the color, so we must force it to black */
78        color: #000;
79}
80
81/* IE7 */
82*:first-child+html .cke_panel_listItem a
83{
84        /* IE is not able to inherit the color, so we must force it to black */
85        color: #000;
86}
87
88.cke_panel_listItem.cke_selected a
89{
90        border: 1px solid #ccc;
91        background-color: #e9f5ff;
92}
93
94.cke_panel_listItem a:hover,
95.cke_panel_listItem a:focus,
96.cke_panel_listItem a:active
97{
98        border-color: #316ac5;
99        background-color: #dff1ff;
100}
101
102.cke_panel_grouptitle
103{
104    font-size: 11px;
105    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
106        font-weight: bold;
107    white-space: nowrap;
108        background-color: #dcdcdc;
109        color: #000;
110        margin:0px;
111        padding:3px;
112}
113
114.cke_panel_listItem p,
115.cke_panel_listItem h1,
116.cke_panel_listItem h2,
117.cke_panel_listItem h3,
118.cke_panel_listItem h4,
119.cke_panel_listItem h5,
120.cke_panel_listItem h6,
121.cke_panel_listItem pre
122{
123        margin-top: 3px;
124        margin-bottom: 3px;
125}
126
127.cke_skin_office2003 .cke_button_textcolor_panel,
128.cke_skin_office2003 .cke_button_bgcolor_panel
129{
130        width: 150px;
131        height: 135px;
132}
133
134.cke_colorblock
135{
136        padding: 3px;
137    font-size: 11px;
138    font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
139}
140
141.cke_colorblock,
142.cke_colorblock a
143{
144        text-decoration: none;
145        color: #000;
146}
147
148span.cke_colorbox
149{
150        width: 10px;
151        height: 10px;
152    border: #808080 1px solid;
153        float: left;
154}
155
156.cke_rtl span.cke_colorbox
157{
158        float: right;
159}
160
161a.cke_colorbox
162{
163    border: #fff 1px solid;
164    padding: 2px;
165    float: left;
166}
167
168.cke_rtl a.cke_colorbox
169{
170    float: right;
171}
172
173a:hover.cke_colorbox,
174a:focus.cke_colorbox,
175a:active.cke_colorbox
176{
177    border: #316ac5 1px solid;
178    background-color: #dff1ff;
179}
180
181a.cke_colorauto,
182a.cke_colormore
183{
184    border: #fff 1px solid;
185    padding: 2px;
186    display: block;
187}
188
189a:hover.cke_colorauto,
190a:hover.cke_colormore,
191a:focus.cke_colorauto,
192a:focus.cke_colormore,
193a:active.cke_colorauto,
194a:active.cke_colormore
195{
196    border: #316ac5 1px solid;
197    background-color: #dff1ff;
198}
Note: See TracBrowser for help on using the repository browser.