Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1075 ddelon 1
/*
1921 jp_milcent 2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 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 is the default CSS file used by the editor area. It defines the
22
 * initial font of the editor and background color.
23
 *
24
 * A user can configure the editor to use another CSS file. Just change
25
 * the value of the FCKConfig.EditorAreaCSS key in the configuration
26
 * file.
1075 ddelon 27
 */
28
 
1921 jp_milcent 29
/**
30
 * The "body" styles should match your editor web site, mainly regarding
31
 * background color and font family and size.
32
 */
1075 ddelon 33
 
34
body
35
{
36
	background-color: #ffffff;
37
	padding: 5px 5px 5px 5px;
38
	margin: 0px;
39
}
40
 
41
body, td
42
{
1921 jp_milcent 43
	font-family: Arial, Verdana, sans-serif;
1075 ddelon 44
	font-size: 12px;
45
}
46
 
1921 jp_milcent 47
a[href]
1075 ddelon 48
{
1921 jp_milcent 49
	color: -moz-hyperlinktext !important;		/* For Firefox... mark as important, otherwise it becomes black */
50
	text-decoration: -moz-anchor-decoration;	/* For Firefox 3, otherwise no underline will be used */
1075 ddelon 51
}
52
 
1921 jp_milcent 53
/**
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.
56
 */
1075 ddelon 57
 
58
/*
1921 jp_milcent 59
p, ul, li
1075 ddelon 60
{
61
	margin-top: 0px;
62
	margin-bottom: 0px;
63
}
64
*/
65
 
1921 jp_milcent 66
/**
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.
71
 */
72
 
1075 ddelon 73
/*
1921 jp_milcent 74
.SC_Item *, .SC_ItemSelected *
75
{
76
	margin: 0px !important;
77
	padding: 0px !important;
78
	text-indent: 0px !important;
79
	clip: auto !important;
80
	position: static !important;
81
}
1075 ddelon 82
*/
83
 
1921 jp_milcent 84
/**
85
 * The following are some sample styles used in the "Styles" toolbar command.
86
 * You should instead remove them, and include the styles used by the site
87
 * you are using the editor in.
88
 */
89
 
1075 ddelon 90
.Bold
91
{
92
	font-weight: bold;
93
}
94
 
95
.Title
96
{
97
	font-weight: bold;
98
	font-size: 18px;
99
	color: #cc3300;
100
}
101
 
102
.Code
103
{
104
	border: #8b4513 1px solid;
105
	padding-right: 5px;
106
	padding-left: 5px;
107
	color: #000066;
108
	font-family: 'Courier New' , Monospace;
109
	background-color: #ff9933;
1921 jp_milcent 110
}