Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1688 Rev 1921
Line 1... Line 1...
1
/*
1
/*
2
 * FCKeditor - The text editor for internet
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
3
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
-
 
4
 *
-
 
5
 * == BEGIN LICENSE ==
4
 * 
6
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
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")
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
11
 *    http://www.gnu.org/licenses/gpl.html
7
 * 
12
 *
8
 * For further information visit:
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
9
 * 		http://www.fckeditor.net/
14
 *    http://www.gnu.org/licenses/lgpl.html
10
 * 
15
 *
11
 * "Support Open Source software. What about a donation today?"
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
-
 
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
12
 * 
18
 *
13
 * File Name: fck_editorarea.css
19
 * == END LICENSE ==
-
 
20
 *
14
 * 	This is the default CSS file used by the editor area. It defines the
21
 * This is the default CSS file used by the editor area. It defines the
15
 * 	initial font of the editor and background color.
22
 * initial font of the editor and background color.
16
 * 
23
 *
17
 * 	A user can configure the editor to use another CSS file. Just change
24
 * A user can configure the editor to use another CSS file. Just change
18
 * 	the value of the FCKConfig.EditorAreaCSS key in the configuration
25
 * the value of the FCKConfig.EditorAreaCSS key in the configuration
19
 * 	file.
26
 * file.
20
 * 
-
 
21
 * File Authors:
-
 
22
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
-
 
23
 */
27
 */
Line 24... Line 28...
24
 
28
 
25
/*
29
/**
26
    The "body" styles should match your editor web site, mainly regarding
30
 * The "body" styles should match your editor web site, mainly regarding
27
    background color and font family and size.
31
 * background color and font family and size.
Line 28... Line 32...
28
*/
32
 */
29
 
33
 
30
body
34
body
31
{
35
{
32
	background-color: #ffffff;
36
	background-color: #ffffff;
33
	padding: 5px 5px 5px 5px;
37
	padding: 5px 5px 5px 5px;
Line 34... Line 38...
34
	margin: 0px;
38
	margin: 0px;
35
}
39
}
36
 
40
 
37
body, td
41
body, td
38
{
42
{
Line 39... Line -...
39
	font-family: Arial, Verdana, Sans-Serif;
-
 
40
	font-size: 12px;
-
 
41
}
-
 
42
 
-
 
43
a
-
 
44
{
43
	font-family: Arial, Verdana, sans-serif;
45
	color: #0000FF !important;	/* For Firefox... mark as important, otherwise it becomes black */
44
	font-size: 12px;
46
}
45
}
-
 
46
 
47
 
47
a[href]
Line 48... Line 48...
48
h3
48
{
49
{
49
	color: -moz-hyperlinktext !important;		/* For Firefox... mark as important, otherwise it becomes black */
50
	color: #000080;
50
	text-decoration: -moz-anchor-decoration;	/* For Firefox 3, otherwise no underline will be used */
51
}
51
}
Line 52... Line 52...
52
 
52
 
53
/* 
53
/**
54
	Just uncomment the following block if you want to avoid spaces between 
54
 * Just uncomment the following block if you want to avoid spaces between
55
	paragraphs. Remember to apply the same style in your output front end page.
55
 * paragraphs. Remember to apply the same style in your output front end page.
56
*/
56
 */
57
 
57
 
58
/*
58
/*
Line -... Line 59...
-
 
59
p, ul, li
-
 
60
{
-
 
61
	margin-top: 0px;
-
 
62
	margin-bottom: 0px;
-
 
63
}
-
 
64
*/
-
 
65
 
59
P, UL, LI
66
/**
60
{
67
 * Uncomment the following block, or only selected lines if appropriate,
-
 
68
 * if you have some style items that would break the styles combo box.
-
 
69
 * You can also write other CSS overrides inside the style block below
-
 
70
 * as needed and they will be applied to inside the style combo only.
61
	margin-top: 0px;
71
 */
-
 
72
 
62
	margin-bottom: 0px;
73
/*
-
 
74
.SC_Item *, .SC_ItemSelected *
63
}
75
{
Line -... Line 76...
-
 
76
	margin: 0px !important;
-
 
77
	padding: 0px !important;
-
 
78
	text-indent: 0px !important;
-
 
79
	clip: auto !important;
-
 
80
	position: static !important;
-
 
81
}
64
*/
82
*/
65
 
83
 
66
/*
84
/**
67
    The following are some sample styles used in the "Styles" toolbar command.
85
 * The following are some sample styles used in the "Styles" toolbar command.
Line 87... Line 105...
87
	padding-right: 5px;
105
	padding-right: 5px;
88
	padding-left: 5px;
106
	padding-left: 5px;
89
	color: #000066;
107
	color: #000066;
90
	font-family: 'Courier New' , Monospace;
108
	font-family: 'Courier New' , Monospace;
91
	background-color: #ff9933;
109
	background-color: #ff9933;
92
}
-
 
93
110
}
-
 
111