source: trunk/admin/inc/FCKeditor/editor/css/fck_internal.css@ 2

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

File size: 1.8 KB
Line 
1/*
2 * FCKeditor - The text editor for internet
3 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4 *
5 * Licensed under the terms of the GNU Lesser General Public License:
6 * http://www.opensource.org/licenses/lgpl-license.php
7 *
8 * For further information visit:
9 * http://www.fckeditor.net/
10 *
11 * "Support Open Source software. What about a donation today?"
12 *
13 * File Name: fck_internal.css
14 * This CSS Style Sheet defines rules used by the editor for its internal use.
15 *
16 * File Authors:
17 * Frederico Caldeira Knabben (fredck@fckeditor.net)
18 */
19
20/* Fix to allow putting the caret at the end of the
21content in Firefox if clicking below the content */
22html
23{
24 min-height:100%;
25}
26
27
28table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
29{
30 border: #d3d3d3 1px solid;
31}
32
33form
34{
35 border: 1px dotted #FF0000;
36 padding: 2px;
37}
38
39.FCK__Flash
40{
41 border: darkgray 1px solid;
42 background-position: center center;
43 background-image: url(images/fck_flashlogo.gif);
44 background-repeat: no-repeat;
45 width: 80px;
46 height: 80px;
47}
48
49.FCK__Anchor
50{
51 background-position: center center;
52 background-image: url(images/fck_anchor.gif);
53 background-repeat: no-repeat;
54 width: 16px;
55 height: 15px;
56}
57
58.FCK__PageBreak
59{
60 background-position: center center;
61 background-image: url(images/fck_pagebreak.gif);
62 background-repeat: no-repeat;
63 clear: both;
64 display: block;
65 float: none;
66 width: 100%;
67 border-top: #999999 1px dotted;
68 border-bottom: #999999 1px dotted;
69 border-right: 0px;
70 border-left: 0px;
71 height: 5px;
72}
73
74input[type="hidden"]
75{
76 display: inline;
77 width:20px;
78 height:20px;
79 border:1px dotted #FF0000 ;
80 background-image: url(behaviors/hiddenfield.gif);
81 background-repeat: no-repeat;
82}
83
84input[type="hidden"]:after
85{
86 padding-left: 20px;
87 content: "" ;
88}
Note: See TracBrowser for help on using the repository browser.