Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
4
 *
5
 * == BEGIN LICENSE ==
6
 *
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
19
 * == END LICENSE ==
20
 *
21
 * This CSS Style Sheet defines rules used by the editor for its internal use.
22
 */
23

    
24
/* #########
25
 *  WARNING
26
 * #########
27
 * When changing this file, the minified version of it must be updated in the
28
 * fckeditor.html file (see FCK_InternalCSS).
29
 */
30

    
31
/* Fix to allow putting the caret at the end of the content in Firefox if
32
   clicking below the content. */
33
html
34
{
35
	min-height: 100%;
36
}
37

    
38
table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
39
{
40
	border: #d3d3d3 1px solid;
41
}
42

    
43
form
44
{
45
	border: 1px dotted #FF0000;
46
	padding: 2px;
47
}
48

    
49
.FCK__Flash
50
{
51
	border: #a9a9a9 1px solid;
52
	background-position: center center;
53
	background-image: url(images/fck_flashlogo.gif);
54
	background-repeat: no-repeat;
55
	width: 80px;
56
	height: 80px;
57
}
58

    
59
.FCK__UnknownObject
60
{
61
	border: #a9a9a9 1px solid;
62
	background-position: center center;
63
	background-image: url(images/fck_plugin.gif);
64
	background-repeat: no-repeat;
65
	width: 80px;
66
	height: 80px;
67
}
68

    
69
/* Empty anchors images */
70
.FCK__Anchor
71
{
72
	border: 1px dotted #00F;
73
	background-position: center center;
74
	background-image: url(images/fck_anchor.gif);
75
	background-repeat: no-repeat;
76
	width: 16px;
77
	height: 15px;
78
	vertical-align: middle;
79
}
80

    
81
/* Anchors with content */
82
.FCK__AnchorC
83
{
84
	border: 1px dotted #00F;
85
	background-position: 1px center;
86
	background-image: url(images/fck_anchor.gif);
87
	background-repeat: no-repeat;
88
	padding-left: 18px;
89
}
90

    
91
/* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
92
a[name]
93
{
94
	border: 1px dotted #00F;
95
	background-position: 0 center;
96
	background-image: url(images/fck_anchor.gif);
97
	background-repeat: no-repeat;
98
	padding-left: 18px;
99
}
100

    
101
.FCK__PageBreak
102
{
103
	background-position: center center;
104
	background-image: url(images/fck_pagebreak.gif);
105
	background-repeat: no-repeat;
106
	clear: both;
107
	display: block;
108
	float: none;
109
	width: 100%;
110
	border-top: #999999 1px dotted;
111
	border-bottom: #999999 1px dotted;
112
	border-right: 0px;
113
	border-left: 0px;
114
	height: 5px;
115
}
116

    
117
/* Hidden fields */
118
.FCK__InputHidden
119
{
120
	width: 19px;
121
	height: 18px;
122
	background-image: url(images/fck_hiddenfield.gif);
123
	background-repeat: no-repeat;
124
	vertical-align: text-bottom;
125
	background-position: center center;
126
}
127

    
128
.FCK__ShowBlocks p,
129
.FCK__ShowBlocks div,
130
.FCK__ShowBlocks pre,
131
.FCK__ShowBlocks address,
132
.FCK__ShowBlocks blockquote,
133
.FCK__ShowBlocks h1,
134
.FCK__ShowBlocks h2,
135
.FCK__ShowBlocks h3,
136
.FCK__ShowBlocks h4,
137
.FCK__ShowBlocks h5,
138
.FCK__ShowBlocks h6
139
{
140
	background-repeat: no-repeat;
141
	border: 1px dotted gray;
142
	padding-top: 8px;
143
	padding-left: 8px;
144
}
145

    
146
.FCK__ShowBlocks p
147
{
148
	background-image: url(images/block_p.png);
149
}
150

    
151
.FCK__ShowBlocks div
152
{
153
	background-image: url(images/block_div.png);
154
}
155

    
156
.FCK__ShowBlocks pre
157
{
158
	background-image: url(images/block_pre.png);
159
}
160

    
161
.FCK__ShowBlocks address
162
{
163
	background-image: url(images/block_address.png);
164
}
165

    
166
.FCK__ShowBlocks blockquote
167
{
168
	background-image: url(images/block_blockquote.png);
169
}
170

    
171
.FCK__ShowBlocks h1
172
{
173
	background-image: url(images/block_h1.png);
174
}
175

    
176
.FCK__ShowBlocks h2
177
{
178
	background-image: url(images/block_h2.png);
179
}
180

    
181
.FCK__ShowBlocks h3
182
{
183
	background-image: url(images/block_h3.png);
184
}
185

    
186
.FCK__ShowBlocks h4
187
{
188
	background-image: url(images/block_h4.png);
189
}
190

    
191
.FCK__ShowBlocks h5
192
{
193
	background-image: url(images/block_h5.png);
194
}
195

    
196
.FCK__ShowBlocks h6
197
{
198
	background-image: url(images/block_h6.png);
199
}
(2-2/3)