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. */
33html
34{
35	min-height: 100%;
36}
37
38table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
39{
40	border: #d3d3d3 1px solid;
41}
42
43form
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
73}
74
75/* Anchors with content */
76.FCK__AnchorC
77{
78
79}
80
81/* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
82a[name]
83{
84
85}
86
87.FCK__PageBreak
88{
89	background-position: center center;
90	background-image: url(images/fck_pagebreak.gif);
91	background-repeat: no-repeat;
92	clear: both;
93	display: block;
94	float: none;
95	width: 100%;
96	border-top: #999999 1px dotted;
97	border-bottom: #999999 1px dotted;
98	border-right: 0px;
99	border-left: 0px;
100	height: 5px;
101}
102
103/* Hidden fields */
104.FCK__InputHidden
105{
106	width: 19px;
107	height: 18px;
108	background-image: url(images/fck_hiddenfield.gif);
109	background-repeat: no-repeat;
110	vertical-align: text-bottom;
111	background-position: center center;
112}
113
114.FCK__ShowBlocks p,
115.FCK__ShowBlocks div,
116.FCK__ShowBlocks pre,
117.FCK__ShowBlocks address,
118.FCK__ShowBlocks blockquote,
119.FCK__ShowBlocks h1,
120.FCK__ShowBlocks h2,
121.FCK__ShowBlocks h3,
122.FCK__ShowBlocks h4,
123.FCK__ShowBlocks h5,
124.FCK__ShowBlocks h6
125{
126	background-repeat: no-repeat;
127	border: 1px dotted gray;
128	padding-top: 8px;
129	padding-left: 8px;
130}
131
132.FCK__ShowBlocks p
133{
134	background-image: url(images/block_p.png);
135}
136
137.FCK__ShowBlocks div
138{
139	background-image: url(images/block_div.png);
140}
141
142.FCK__ShowBlocks pre
143{
144	background-image: url(images/block_pre.png);
145}
146
147.FCK__ShowBlocks address
148{
149	background-image: url(images/block_address.png);
150}
151
152.FCK__ShowBlocks blockquote
153{
154	background-image: url(images/block_blockquote.png);
155}
156
157.FCK__ShowBlocks h1
158{
159	background-image: url(images/block_h1.png);
160}
161
162.FCK__ShowBlocks h2
163{
164	background-image: url(images/block_h2.png);
165}
166
167.FCK__ShowBlocks h3
168{
169	background-image: url(images/block_h3.png);
170}
171
172.FCK__ShowBlocks h4
173{
174	background-image: url(images/block_h4.png);
175}
176
177.FCK__ShowBlocks h5
178{
179	background-image: url(images/block_h5.png);
180}
181
182.FCK__ShowBlocks h6
183{
184	background-image: url(images/block_h6.png);
185}
186