source: trunk/phpgwapi/js/ckeditor/_source/skins/office2003/mainui.css @ 2862

Revision 2862, 2.6 KB checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, 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 span.cke_browser_webkit,
16.cke_skin_office2003 span.cke_browser_gecko18
17{
18        display: block;
19}
20
21.cke_skin_office2003,
22.cke_skin_office2003 .cke_wrapper
23{
24        display: block;
25}
26
27.cke_skin_office2003 .cke_top,
28.cke_skin_office2003 .cke_bottom,
29 .cke_shared .cke_skin_office2003
30{
31        background-color: #f7f8fd;
32}
33
34.cke_skin_office2003 .cke_top
35{
36    border-top: solid 1px #fafaf5;
37    border-left: solid 1px #fafaf5;
38    border-right: solid 1px #696969;
39    border-bottom: solid 2px #696969;
40}
41
42.cke_skin_office2003 .cke_rtl .cke_top
43{
44    border-left: solid 1px #696969;
45    border-right: solid 1px #fafaf5;
46}
47
48.cke_skin_office2003 .cke_bottom
49{
50    border-left: solid 1px #696969;
51    border-right: solid 1px #696969;
52    border-bottom: solid 1px #696969;
53}
54
55.cke_skin_office2003 .cke_contents
56{
57        border: solid 1px #696969;
58        /* Prevent background content from penetrate through when switching between editing modes. (#4918) */
59        background-color: white;
60}
61
62.cke_skin_office2003 .cke_focus
63{
64        outline: auto 5px -webkit-focus-ring-color;
65}
66
67.cke_skin_office2003 textarea.cke_source
68{
69        font-family: 'Courier New' , Monospace;
70        font-size: small;
71        white-space: pre;
72        background-color: #fff;
73}
74
75.cke_skin_office2003 .cke_browser_iequirks textarea.cke_source
76{
77    /* For IE6+Quirks only */
78    _white-space: normal;
79}
80
81.cke_skin_office2003 .cke_resizer
82{
83        width: 12px;
84        height: 12px;
85        margin-top: 16px;
86        display: block;
87        float: right;
88        /* resizer.gif*/
89        background-image: url(images/sprites.png);
90        _background-image: url(images/sprites_ie6.png);
91        background-position: 0 -1088px;
92        background-repeat: no-repeat;
93        cursor: se-resize;
94}
95
96.cke_skin_office2003 .cke_maximized .cke_resizer
97{
98        display: none;
99}
100
101.cke_skin_office2003 .cke_rtl .cke_resizer
102{
103        cursor: sw-resize;
104        /* resizer_rtl.gif*/
105        background-position: 0 -1115px;
106        float: left;
107}
108
109.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,
110.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea
111{
112        position: absolute;
113}
114
115/* All voice labels are not displayed. */
116.cke_skin_office2003 .cke_voice_label
117{
118        display: none;
119}
120
121.cke_skin_office2003 legend.cke_voice_label
122{
123        display: none;
124}
125
126.cke_skin_office2003 .cke_browser_ie legend.cke_voice_label
127{
128        position: absolute;
129        display: block;
130        width: 0;
131        height: 0;
132        overflow: hidden;
133}
Note: See TracBrowser for help on using the repository browser.