1/*
2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3 * Copyright (C) 2003-2007 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/* Fix to allow putting the caret at the end of the
25content in Firefox if clicking below the content */
26html
27{
28	min-height: 100%;
29}
30
31
32table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
33{
34	border: #d3d3d3 1px solid;
35}
36
37form
38{
39	border: 1px dotted #FF0000;
40	padding: 2px;
41}
42
43.FCK__Flash
44{
45	border: #a9a9a9 1px solid;
46	background-position: center center;
47	background-image: url(images/fck_flashlogo.gif);
48	background-repeat: no-repeat;
49	width: 80px;
50	height: 80px;
51}
52
53/* Empty anchors images */
54.FCK__Anchor
55{
56	border: 1px dotted #00F;
57	background-position: center center;
58	background-image: url(images/fck_anchor.gif);
59	background-repeat: no-repeat;
60	width: 16px;
61	height: 15px;
62	vertical-align: middle;
63}
64
65/* Anchors with content */
66.FCK__AnchorC
67{
68	border: 1px dotted #00F;
69	background-position: 1px center;
70	background-image: url(images/fck_anchor.gif);
71	background-repeat: no-repeat;
72	padding-left: 18px;
73}
74
75/* Any anchor for non-IE, if we combine it
76   with the previous rule IE ignores all. */
77a[name]
78{
79	border: 1px dotted #00F;
80	background-position: 0 center;
81	background-image: url(images/fck_anchor.gif);
82	background-repeat: no-repeat;
83	padding-left: 18px;
84}
85
86.FCK__PageBreak
87{
88	background-position: center center;
89	background-image: url(images/fck_pagebreak.gif);
90	background-repeat: no-repeat;
91	clear: both;
92	display: block;
93	float: none;
94	width: 100%;
95	border-top: #999999 1px dotted;
96	border-bottom: #999999 1px dotted;
97	border-right: 0px;
98	border-left: 0px;
99	height: 5px;
100}
101
102/* Hidden fields */
103.FCK__InputHidden
104{
105	width: 19px;
106	height: 18px;
107	background-image: url(images/fck_hiddenfield.gif);
108	background-repeat: no-repeat;
109	vertical-align: text-bottom;
110	background-position: center center;
111}
112