1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * This is the sample style definitions file. It makes the styles combo
23 * completely customizable.
24 *
25 * See FCKConfig.StylesXmlPath in the configuration file.
26-->
27<Styles>
28
29	<!-- Block Styles -->
30
31	<!--
32	# These styles are already available in the "Format" combo, so they are not
33	# needed here by default.
34
35	<Style name="Heading 1" element="h1" />
36	<Style name="Heading 2" element="h2" />
37	<Style name="Heading 3" element="h3" />
38	<Style name="Heading 4" element="h4" />
39	<Style name="Heading 5" element="h5" />
40	<Style name="Heading 6" element="h6" />
41	<Style name="Paragraph" element="p" />
42	<Style name="Document Block" element="div" />
43	<Style name="Preformatted Text" element="pre" />
44	<Style name="Address" element="address" />
45	-->
46
47	<!-- Inline Styles -->
48
49	<!--
50	# These are core styles available as toolbar buttons.
51
52	<Style name="Bold" element="b">
53		<Override element="strong" />
54	</Style>
55	<Style name="Italic" element="i">
56		<Override element="em" />
57	</Style>
58	<Style name="Underline" element="u" />
59	<Style name="Strikethrough" element="strike" />
60	<Style name="Subscript" element="sub" />
61	<Style name="Superscript" element="sup" />
62	-->
63
64	<Style name="Marker: Yellow" element="span">
65		<Style name="background-color" value="Yellow" />
66	</Style>
67	<Style name="Marker: Green" element="span">
68		<Style name="background-color" value="Lime" />
69	</Style>
70
71	<Style name="Strong Emphasis" element="strong" />
72	<Style name="Emphasis" element="em" />
73
74	<Style name="Big" element="big" />
75	<Style name="Small" element="small" />
76	<Style name="Typewriter" element="tt" />
77
78	<Style name="Computer Code" element="code" />
79	<Style name="Keyboard Phrase" element="kbd" />
80	<Style name="Sample Text" element="samp" />
81	<Style name="Variable" element="var" />
82
83	<Style name="Deleted Text" element="del" />
84	<Style name="Inserted Text" element="ins" />
85
86	<Style name="Cited Work" element="cite" />
87	<Style name="Inline Quotation" element="q" />
88
89	<Style name="Language: RTL" element="span">
90		<Attribute name="dir" value="rtl" />
91	</Style>
92	<Style name="Language: LTR" element="span">
93		<Attribute name="dir" value="ltr" />
94	</Style>
95	<Style name="Language: RTL Strong" element="bdo">
96		<Attribute name="dir" value="rtl" />
97	</Style>
98	<Style name="Language: LTR Strong" element="bdo">
99		<Attribute name="dir" value="ltr" />
100	</Style>
101
102	<!-- Object Styles -->
103
104	<Style name="Image on Left" element="img">
105		<Attribute name="style" value="padding: 5px; margin-right: 5px" />
106		<Attribute name="border" value="2" />
107		<Attribute name="align" value="left" />
108	</Style>
109	<Style name="Image on Right" element="img">
110		<Attribute name="style" value="padding: 5px; margin-left: 5px" />
111		<Attribute name="border" value="2" />
112		<Attribute name="align" value="right" />
113	</Style>
114</Styles>