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

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