source: trunk/filemanager/tp/ckeditor/_source/skins/office2003/dialog.css @ 2000

Revision 2000, 13.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/* Restore the dialog visibility */
7body .cke_dialog
8{
9        visibility: visible;
10}
11
12.cke_skin_office2003 .cke_dialog_body
13{
14        margin-left: 16px;
15        margin-right: 16px;
16        margin-top: 2px;
17        margin-bottom: 20px;
18        position: relative;
19        z-index: 1;
20}
21
22.cke_skin_office2003 .cke_dialog_tl,
23.cke_skin_office2003 .cke_dialog_tr,
24.cke_skin_office2003 .cke_dialog_tc,
25.cke_skin_office2003 .cke_dialog_bl,
26.cke_skin_office2003 .cke_dialog_br,
27.cke_skin_office2003 .cke_dialog_bc
28{
29        background-image: url(images/sprites.png);
30        background-repeat: no-repeat;
31        position: absolute;
32
33        /* IE6 does not support full color transparent PNG. */
34        _background-image: url(images/sprites_ie6.png);
35}
36
37.cke_skin_office2003 .cke_dialog_tl
38{
39        background-position: -16px -16px;
40        height: 16px;
41        width: 16px;
42        top: 0;
43        left: 0;
44}
45
46.cke_skin_office2003 .cke_rtl .cke_dialog_tl
47{
48        background-position: -16px -397px;
49}
50
51.cke_skin_office2003 .cke_dialog_tr
52{
53        background-position: -16px -76px;
54        height: 16px;
55        width: 16px;
56        top: 0;
57        right: 0;
58}
59
60.cke_skin_office2003 .cke_rtl .cke_dialog_tr
61{
62        background-position: -16px -457px;
63}
64
65.cke_skin_office2003 .cke_dialog_tc
66{
67        background-position: 0 -136px;
68        background-repeat: repeat-x;
69        height: 16px;
70        top: 0;
71        left: 16px;
72        right: 16px;
73}
74
75.cke_skin_office2003 .cke_dialog_bl
76{
77        background-position: -16px -196px;
78        height: 51px;
79        width: 30px;
80        bottom: 0;
81        left: 0;
82}
83
84.cke_skin_office2003 .cke_rtl .cke_dialog_bl
85{
86        background-position: -16px -517px;
87}
88
89.cke_skin_office2003 .cke_dialog_br
90{
91        background-position: -16px -263px;
92        height: 51px;
93        width: 30px;
94        bottom: 0;
95        right: 0;
96}
97
98.cke_skin_office2003 .cke_rtl .cke_dialog_br
99{
100        background-position: -16px -584px;
101}
102
103.cke_skin_office2003 .cke_dialog_bc
104{
105        background-position: 0 -330px;
106        background-repeat: repeat-x;
107        height: 51px;
108        bottom: 0;
109        left: 30px;
110        right: 30px;
111}
112
113.cke_skin_office2003 .cke_dialog_ml,
114.cke_skin_office2003 .cke_dialog_mr
115{
116        background-image: url(images/dialog_sides.png);
117        background-repeat: repeat-y;
118        position: absolute;
119        width: 16px;
120        top: 16px;
121        bottom: 51px;
122
123        /* IE6 does not support full color transparent PNG. */
124        _background-image: url(images/dialog_sides.gif);
125
126        /* IE quirks gets confused when we have both top and bottom. */
127        _top: auto;
128}
129
130.cke_skin_office2003 .cke_rtl .cke_dialog_ml,
131.cke_skin_office2003 .cke_rtl .cke_dialog_mr
132{
133        background-image: url(images/dialog_sides_rtl.png);
134
135        /* IE6 does not support full color transparent PNG. */
136        _background-image: url(images/dialog_sides.gif);
137}
138
139.cke_skin_office2003 .cke_dialog_ml
140{
141        background-position: 0 0;
142        left: 0;
143}
144
145.cke_skin_office2003 .cke_dialog_mr
146{
147        background-position: -16px 0;
148        right: 0;
149}
150
151.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,
152.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr
153{
154        margin-top: 3px;
155}
156
157.cke_skin_office2003 .cke_dialog_title
158{
159        background-image: url(images/sprites.png);
160        _background-image: url(images/sprites_ie6.png);
161        background-position: 0 -678px;
162        background-repeat: repeat-x;
163        font-weight: bold;
164        font-size: 14pt;
165        color: #0E3460;
166        background-color: #8db1ff;
167        padding: 3px 10px 26px 10px;
168        cursor: move;
169        position: relative;
170}
171
172.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title
173{
174        position: static !important;
175        unicode-bidi: bidi-override;
176}
177
178.cke_skin_office2003 .cke_dialog_contents
179{
180        background-color: #f7f8fd;
181        border: #2b66c9 1px solid;
182        overflow: auto;
183        padding: 5px 10px;
184}
185
186.cke_skin_office2003 .cke_dialog_footer
187{
188        background-color: #8db1ff;
189        text-align: right;
190}
191
192.cke_skin_office2003 .cke_rtl .cke_dialog_footer
193{
194        text-align: left;
195}
196
197/* tabs */
198
199.cke_skin_office2003 .cke_dialog_tabs
200{
201        height: 23px;
202        background-color: #8db1ff;
203        display: inline-block;
204        margin-left:10px;
205        margin-right:10px;
206        margin-top:-23px;
207        position: absolute;
208        z-index: 2;
209}
210
211.cke_skin_office2003 .cke_rtl .cke_dialog_tabs
212{
213        right: 10px;
214}
215
216.cke_skin_office2003 a.cke_dialog_tab,
217.cke_skin_office2003 a:link.cke_dialog_tab,
218.cke_skin_office2003 a:active.cke_dialog_tab,
219.cke_skin_office2003 a:hover.cke_dialog_tab,
220.cke_skin_office2003 a:visited.cke_dialog_tab
221{
222        color: #0E3460;
223        border-left: 1px solid #2b66c9;
224        border-right: 1px solid #2b66c9;
225        border-top: 1px solid #2b66c9;
226        height: 14px;
227        padding: 4px 5px;
228        display: inline-block;
229        cursor: pointer;
230}
231
232/* Gecko 1.8 layout workaround. */
233.cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,
234.cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,
235.cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,
236.cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,
237.cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab
238{
239        display: inline;
240        position: relative;
241        top: 6px;
242}
243
244.cke_skin_office2003 a:hover.cke_dialog_tab
245{
246        background-color: #f7f8fd;
247}
248
249.cke_skin_office2003 a.cke_dialog_tab_selected,
250.cke_skin_office2003 a:link.cke_dialog_tab_selected,
251.cke_skin_office2003 a:active.cke_dialog_tab_selected,
252.cke_skin_office2003 a:hover.cke_dialog_tab_selected,
253.cke_skin_office2003 a:visited.cke_dialog_tab_selected
254{
255        border-bottom: 1px solid #f7f8fd;
256        background-color: #f7f8fd;
257        font-weight: bold;
258        cursor: default;
259}
260
261/* single_page */
262
263.cke_skin_office2003 .cke_single_page .cke_dialog_tabs
264{
265        display: none;
266}
267
268.cke_skin_office2003 .cke_single_page .cke_dialog_title
269{
270        padding-bottom: 3px;
271}
272
273.cke_skin_office2003 .cke_dialog_ui_vbox table,
274.cke_skin_office2003 .cke_dialog_ui_hbox table
275{
276        margin: auto;
277}
278
279.cke_skin_office2003 .cke_dialog_ui_vbox_child
280{
281        padding: 5px 0px;
282}
283
284.cke_skin_office2003 input.cke_dialog_ui_input_text,
285.cke_skin_office2003 input.cke_dialog_ui_input_password
286{
287        background-color: white;
288        border: none;
289        padding: 0px;
290        width: 100%;
291        height: 14px;
292}
293
294.cke_skin_office2003 div.cke_dialog_ui_input_text,
295.cke_skin_office2003 div.cke_dialog_ui_input_password
296{
297        background-color: white;
298        border: 1px solid #a0a0a0;
299        padding: 1px 0px;
300}
301
302.cke_skin_office2003 textarea.cke_dialog_ui_input_textarea
303{
304        background-color: white;
305        border: none;
306        padding: 0px;
307        width: 100%;
308        /*
309         * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
310         * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
311         */
312        _width: 99%;
313        overflow: auto;
314        resize: none;
315}
316
317.cke_skin_office2003 div.cke_dialog_ui_input_textarea
318{
319        background-color: white;
320        border: 1px solid #a0a0a0;
321        padding: 1px 0px;
322}
323
324.cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *
325{
326        background-color : #a0a0a0;
327        cursor : default;
328}
329
330.cke_skin_office2003 .cke_dialog_ui_hbox
331{
332        width: 100%;
333}
334
335.cke_skin_office2003 .cke_dialog_ui_hbox_first,
336.cke_skin_office2003 .cke_dialog_ui_hbox_child,
337.cke_skin_office2003 .cke_dialog_ui_hbox_last
338{
339        vertical-align: top;
340}
341
342.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,
343.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child
344{
345        padding-right: 10px;
346}
347
348.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,
349.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child
350{
351        padding-left: 10px;
352}
353
354/* button */
355
356.cke_skin_office2003 a.cke_dialog_ui_button
357{
358        border-collapse: separate;
359        cursor: default;
360}
361
362.cke_skin_office2003 span.cke_dialog_ui_button
363{
364        background-image: url(images/sprites.png);
365        _background-image: url(images/sprites_ie6.png);
366        background-position: 0 -678px;
367        background-repeat: repeat-x;
368        border: #0E3460 1px solid;
369        padding: 2px 10px;
370        text-align: center;
371        color: #0E3460;
372        background-color: #8db1ff;
373        display: inline-block;
374        cursor: default;
375}
376
377/* Gecko 1.8 does not support display: inline-block */
378.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
379{
380        display: block;
381}
382
383.cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled
384{
385        border: #898980 1px solid;
386        color: #5e5e55;
387        background-color: #c5c5b3;
388}
389
390.cke_skin_office2003 a:focus span.cke_dialog_ui_button,
391.cke_skin_office2003 a:active span.cke_dialog_ui_button
392{
393        background-color: #8db1ff;
394}
395
396.cke_skin_office2003 .cke_dialog_footer_buttons
397{
398        display: inline-table;
399        margin-right: 12px;
400        margin-left: 12px;
401        width: auto;
402        position: relative;
403}
404
405/* Gecko 1.8 does not support for display: inline-table */
406.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons
407{
408        display: inline;
409}
410
411.cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button
412{
413        width: 60px;
414        margin: 7px 0;
415}
416
417.cke_skin_office2003 strong
418{
419        font-weight: bold;
420}
421
422/* close_button */
423
424.cke_skin_office2003 .cke_dialog_close_button
425{
426        background-image: url(images/sprites.png);
427        background-repeat: no-repeat;
428        background-position: -20px -655px;
429        position: absolute;
430        cursor: pointer;
431        text-align: center;
432        height: 21px;
433        width: 21px;
434        top: 4px;
435
436        /* IE6 does not support full color transparent PNG. */
437        _background-image: url(images/sprites_ie6.png);
438}
439
440.cke_skin_office2003 .cke_dialog_close_button span
441{
442        display: none;
443}
444
445.cke_skin_office2003 .cke_ltr .cke_dialog_close_button
446{
447        right: 10px;
448        _right: 22px;
449}
450
451.cke_skin_office2003 .cke_rtl .cke_dialog_close_button
452{
453        left: 10px;
454        _left: 16px;
455        _top: 6px;
456}
457
458.cke_skin_office2003 .cke_browser_ie6.cke_rtl .cke_dialog_close_button
459{
460        position: relative;
461        float: left;
462        margin-top: -55px;
463        margin-left: -7px;
464}
465
466.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page .cke_dialog_close_button
467{
468        margin-top: -32px;
469}
470
471.cke_skin_office2003 .cke_browser_iequirks.cke_ltr .cke_dialog_close_button
472{
473        margin-top: 0;
474}
475
476.cke_skin_office2003 .cke_dialog_ui_input_select
477{
478        border: 1px solid #a0a0a0;
479        background-color: white;
480}
481
482.cke_skin_office2003 iframe.cke_dialog_ui_input_file
483{
484        width: 100%;
485        height: 25px;
486}
487
488/*
489 * Some utility CSS classes for dialog authors.
490 */
491.cke_skin_office2003 .cke_dialog .cke_dark_background
492{
493        background-color: #eaead1;
494}
495
496.cke_skin_office2003 .cke_dialog .cke_hand
497{
498        cursor: pointer;
499}
500
501.cke_skin_office2003 .cke_dialog .cke_centered
502{
503        text-align: center;
504}
505
506.cke_skin_office2003 .cke_dialog a.cke_btn_reset
507{
508        float: right;
509        background-position: 0 -32px;
510        background-image: url(images/mini.gif);
511        width: 16px;
512        height: 16px;
513        background-repeat: no-repeat;
514        border: 1px none;
515        font-size: 1px;
516}
517
518.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_reset
519{
520        float: left;
521}
522
523.cke_skin_office2003 .cke_dialog a.cke_btn_locked,
524.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
525{
526        float: left;
527        background-position: 0 0;
528        background-image: url(images/mini.gif);
529        width: 16px;
530        height: 16px;
531        background-repeat: no-repeat;
532        border: none 1px;
533        font-size: 1px;
534}
535
536.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_locked,
537.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_unlocked
538{
539        float: right;
540}
541
542.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
543{
544        background-position: 0 -16px;
545        background-image: url(images/mini.gif);
546}
547
548.cke_skin_office2003 .cke_dialog .cke_btn_over
549{
550        border: outset 1px;
551        cursor: pointer;
552        cursor: hand;
553}
554
555.cke_skin_office2003 .cke_dialog  #ImagePreviewBox
556{
557        white-space : normal;
558        border : 2px ridge black;
559        overflow : scroll;
560        height : 160px;
561        width : 230px;
562        padding : 2px;
563        background-color : white;
564}
565.cke_skin_office2003 .cke_dialog  #ImagePreviewLoader
566{
567        position: absolute;
568        white-space : normal;
569        overflow : hidden;
570        height : 160px;
571        width : 230px;
572        margin : 2px;
573        padding : 2px;
574        opacity : 0.9;
575        filter : alpha(opacity=90);
576
577        background-color : #e4e4e4;
578}
579
580.cke_skin_office2003 .cke_dialog  #FlashPreviewBox
581{
582        white-space : normal;
583        border : 2px ridge black;
584        overflow : auto;
585        height : 160px;
586        width : 390px;
587        padding : 2px;
588        background-color : white;
589}
590
591.cke_skin_office2003 .cke_dialog .cke_dark_background
592{
593        text-align : center;
594        background-color: #eaead1;
595        font-size : 14px;
596}
597
598.cke_skin_office2003 .cke_dialog .cke_light_background
599{
600        text-align : center;
601        background-color: #ffffbe;
602}
603
604.cke_skin_office2003 .cke_dialog .cke_hand
605{
606        cursor: pointer;
607        cursor: hand;
608}
609
610.cke_skin_office2003 .cke_disabled
611{
612        color: #a0a0a0;
613}
614
615/* High Contrast Mode */
616.cke_skin_office2003 .cke_hc .cke_dialog_title,
617.cke_skin_office2003 .cke_hc .cke_dialog_tabs,
618.cke_skin_office2003 .cke_hc .cke_dialog_contents,
619.cke_skin_office2003 .cke_hc .cke_dialog_footer
620{
621        border-left: 1px solid;
622        border-right: 1px solid;
623}
624
625.cke_skin_office2003 .cke_hc .cke_dialog_title
626{
627        border-top: 1px solid;
628}
629
630.cke_skin_office2003 .cke_hc .cke_dialog_footer
631{
632        border-bottom: 1px solid;
633}
634
635.cke_skin_office2003 .cke_hc .cke_dialog_close_button span
636{
637        display: inline;
638        cursor: pointer;
639        cursor: hand;
640        font-weight: bold;
641        position: relative;
642        top: 3px;
643}
Note: See TracBrowser for help on using the repository browser.