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

Revision 2000, 1.9 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_office2003 .cke_editor
7{
8/*
9        border: solid 1px #dcdcdc;
10*/
11        display: inline-table;
12        width: 100%;
13}
14
15.cke_skin_office2003,
16.cke_skin_office2003 .cke_wrapper
17{
18        display: block;
19}
20
21.cke_skin_office2003 .cke_top, .cke_skin_office2003 .cke_bottom
22{
23        background-color: #f7f8fd;
24}
25
26.cke_skin_office2003 .cke_top
27{
28    border-top: solid 1px #fafaf5;
29    border-left: solid 1px #fafaf5;
30    border-right: solid 1px #696969;
31    border-bottom: solid 2px #696969;
32}
33
34.cke_skin_office2003 .cke_rtl .cke_top
35{
36    border-left: solid 1px #696969;
37    border-right: solid 1px #fafaf5;
38}
39
40.cke_skin_office2003 .cke_bottom
41{
42    border-left: solid 1px #696969;
43    border-right: solid 1px #696969;
44    border-bottom: solid 1px #696969;
45}
46
47.cke_skin_office2003 .cke_contents
48{
49        border: solid 1px #696969;
50}
51
52.cke_skin_office2003 .cke_focus
53{
54        outline: auto 5px -webkit-focus-ring-color;
55}
56
57.cke_skin_office2003 textarea.cke_source
58{
59        font-family: 'Courier New' , Monospace;
60        font-size: small;
61        white-space: pre;
62        background-color: #fff;
63}
64
65.cke_skin_office2003 .cke_resizer
66{
67        width: 12px;
68        height: 12px;
69        margin-top: 16px;
70        display: block;
71        float: right;
72        /* resizer.gif*/
73        background-image: url(images/sprites.png);
74        _background-image: url(images/sprites_ie6.png);
75        background-position: 0 -1088px;
76        background-repeat: no-repeat;
77        cursor: se-resize;
78}
79
80.cke_skin_office2003 .cke_maximized .cke_resizer
81{
82        display: none;
83}
84
85.cke_skin_office2003 .cke_rtl .cke_resizer
86{
87        cursor: sw-resize;
88        /* resizer_rtl.gif*/
89        background-position: 0 -1115px;
90        float: left;
91}
92
93.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,
94.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea
95{
96        position: absolute;
97}
Note: See TracBrowser for help on using the repository browser.