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