source: branches/2.2/filemanager/tp/ckeditor/_source/skins/kama/mainui.css @ 3019

Revision 3019, 2.5 KB checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

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
7{
8        display: block;
9        _display: inline-block;
10}
11
12/* Main editor only settings. */
13span.cke_skin_kama
14{
15        -moz-border-radius: 5px;
16        -webkit-border-radius: 5px;
17        border-radius: 5px;
18        border: 1px solid #D3D3D3;
19        padding: 5px;
20}
21
22.cke_skin_kama .cke_wrapper
23{
24        -moz-border-radius: 5px;
25        -webkit-border-radius: 5px;
26        border-radius: 5px;
27        background-color: #d3d3d3;
28        background-image: url(images/sprites.png);
29        background-repeat: repeat-x;
30        background-position: 0 -1950px;
31        display: block;
32
33        /*background-color: Red;*/
34}
35
36.cke_skin_kama .cke_browser_ie6 .cke_wrapper,
37.cke_skin_kama .cke_browser_iequirks .cke_wrapper
38{
39        background-image: none;
40}
41
42.cke_skin_kama .cke_editor
43{
44/*
45        border: solid 1px #dcdcdc;
46*/
47        display: inline-table;
48        width: 100%;
49}
50
51.cke_skin_kama .ltr .cke_browser_ie iframe
52{
53        margin-right: -10px;
54}
55
56.cke_skin_kama .rtl .cke_browser_ie iframe
57{
58        margin-left: -10px;
59}
60
61.cke_skin_kama .cke_browser_opera .cke_editor.cke_skin_kama .cke_resizer
62{
63        display: table;
64}
65
66.cke_skin_kama .cke_contents
67{
68        margin: 5px;
69        padding: 0 5px 5px;
70}
71
72.cke_skin_kama .cke_hc .cke_contents
73{
74        border: 1px solid black;
75}
76
77.cke_skin_kama .cke_contents iframe
78{
79        background-color: #fff;
80}
81
82.cke_skin_kama .cke_focus
83{
84        outline: auto 5px -webkit-focus-ring-color;
85}
86
87.cke_skin_kama textarea.cke_source
88{
89        font-family: 'Courier New' , Monospace;
90        font-size: small;
91        background-color: #fff;
92        white-space: pre;
93}
94
95.cke_skin_kama .cke_browser_iequirks textarea.cke_source
96{
97        /* For IE6+Quirks only */
98        _white-space: normal;
99}
100
101.cke_skin_kama .cke_resizer
102{
103        width: 12px;
104        height: 12px;
105        margin-top: 9px;
106        display: block;
107        float: right;
108        /* resizer.gif*/
109        background-image: url(images/sprites.png);
110        _background-image: url(images/sprites_ie6.png);
111        background-position: 0 -1428px;
112        background-repeat: no-repeat;
113        cursor: se-resize;
114}
115
116.cke_skin_kama .cke_rtl .cke_resizer
117{
118        cursor: sw-resize;
119        /* resizer_rtl.gif*/
120        background-position: 0 -1455px;
121        float: left;
122}
123
124.cke_skin_kama .cke_maximized .cke_resizer
125{
126        display: none;
127}
128
129.cke_skin_kama .cke_browser_ie6 .cke_contents textarea,
130.cke_skin_kama .cke_browser_ie7 .cke_contents textarea
131{
132        position: absolute;
133}
134
135.cke_skin_kama .cke_browser_ie.cke_browser_quirks .cke_contents iframe
136{
137        position: absolute;
138        top: 0;
139}
Note: See TracBrowser for help on using the repository browser.