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

Revision 2862, 3.3 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_kama
7{
8        display: block;
9}
10
11/* Main editor only settings. */
12span.cke_skin_kama
13{
14        -moz-border-radius: 5px;
15        -webkit-border-radius: 5px;
16        border-radius: 5px;
17        border: 1px solid #D3D3D3;
18        padding: 5px;
19}
20
21.cke_skin_kama span.cke_browser_webkit,
22.cke_skin_kama span.cke_browser_gecko18
23{
24        display: block;
25}
26
27.cke_skin_kama .cke_wrapper
28{
29        -moz-border-radius: 5px;
30        -webkit-border-radius: 5px;
31        border-radius: 5px;
32        background-color: #d3d3d3;
33        background-image: url(images/sprites.png);
34        background-repeat: repeat-x;
35        background-position: 0 -1950px;
36        display: block;
37        /* IE Quirks: editor chrome overflow horizontally without an explicit width. */
38        _display: inline-block;
39        padding: 5px;
40
41        /*background-color: Red;*/
42}
43
44.cke_shared .cke_skin_kama .cke_wrapper
45{
46        padding-bottom: 0;
47}
48
49.cke_skin_kama .cke_browser_ie6 .cke_wrapper,
50.cke_skin_kama .cke_browser_iequirks .cke_wrapper
51{
52        background-image: none;
53}
54
55.cke_skin_kama .cke_editor
56{
57/*
58        border: solid 1px #dcdcdc;
59*/
60        display: inline-table;
61        width: 100%;
62}
63
64.cke_skin_kama .ltr .cke_browser_ie iframe
65{
66        margin-right: -10px;
67}
68
69.cke_skin_kama .rtl .cke_browser_ie iframe
70{
71        margin-left: -10px;
72}
73
74.cke_skin_kama .cke_browser_opera .cke_editor.cke_skin_kama .cke_resizer
75{
76        display: table;
77}
78
79.cke_skin_kama .cke_contents
80{
81        margin: 5px;
82}
83
84.cke_skin_kama .cke_hc .cke_contents
85{
86        border: 1px solid black;
87}
88
89.cke_skin_kama .cke_contents iframe
90{
91        background-color: #fff;
92}
93
94.cke_skin_kama .cke_focus
95{
96        outline: auto 5px -webkit-focus-ring-color;
97}
98
99.cke_skin_kama textarea.cke_source
100{
101        font-family: 'Courier New' , Monospace;
102        font-size: small;
103        background-color: #fff;
104        white-space: pre;
105}
106
107.cke_skin_kama .cke_browser_iequirks textarea.cke_source
108{
109        /* For IE6+Quirks only */
110        _white-space: normal;
111}
112
113.cke_skin_kama .cke_resizer
114{
115        width: 12px;
116        height: 12px;
117        margin-top: 9px;
118        display: block;
119        float: right;
120        /* resizer.gif*/
121        background-image: url(images/sprites.png);
122        _background-image: url(images/sprites_ie6.png);
123        background-position: 0 -1428px;
124        background-repeat: no-repeat;
125        cursor: se-resize;
126}
127
128.cke_skin_kama .cke_rtl .cke_resizer
129{
130        cursor: sw-resize;
131        /* resizer_rtl.gif*/
132        background-position: 0 -1455px;
133        float: left;
134}
135
136.cke_skin_kama .cke_maximized .cke_resizer
137{
138        display: none;
139}
140
141.cke_skin_kama .cke_browser_ie6 .cke_contents textarea,
142.cke_skin_kama .cke_browser_ie7 .cke_contents textarea
143{
144        position: absolute;
145}
146
147.cke_skin_kama .cke_browser_ie.cke_browser_quirks .cke_contents iframe
148{
149        position: absolute;
150        top: 0;
151}
152
153.cke_skin_kama .cke_browser_ie6 .cke_editor,
154.cke_skin_kama .cke_browser_ie7 .cke_editor
155{
156        display: inline-block;
157}
158
159.cke_skin_kama .cke_browser_ie6 .cke_editor,
160.cke_shared .cke_skin_kama .cke_browser_ie7 .cke_wrapper
161{
162        padding-bottom: 5px;
163}
164
165/* All voice labels are not displayed. */
166.cke_skin_kama .cke_voice_label
167{
168        display: none;
169}
170
171.cke_skin_kama legend.cke_voice_label
172{
173        display: none;
174}
175
176.cke_skin_kama .cke_browser_ie legend.cke_voice_label
177{
178        position: absolute;
179        display: block;
180        width: 0;
181        height: 0;
182        overflow: hidden;
183}
Note: See TracBrowser for help on using the repository browser.