summaryrefslogtreecommitdiff
path: root/rt/share/html/NoAuth/RichText/FCKeditor/editor/css
diff options
context:
space:
mode:
Diffstat (limited to 'rt/share/html/NoAuth/RichText/FCKeditor/editor/css')
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc15
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc36
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css110
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css199
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css49
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.pngbin0 -> 288 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.pngbin0 -> 293 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.pngbin0 -> 229 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.pngbin0 -> 218 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.pngbin0 -> 220 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.pngbin0 -> 219 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.pngbin0 -> 229 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.pngbin0 -> 236 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.pngbin0 -> 216 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.pngbin0 -> 205 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.pngbin0 -> 223 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gifbin0 -> 184 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gifbin0 -> 599 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gifbin0 -> 105 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gifbin0 -> 54 bytes
-rw-r--r--rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gifbin0 -> 1709 bytes
21 files changed, 409 insertions, 0 deletions
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc
new file mode 100644
index 0000000..8dfb661
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/disablehandles.htc
@@ -0,0 +1,15 @@
+<public:component lightweight="true">
+
+<script language="javascript">
+
+function CancelEvent()
+{
+ return false ;
+}
+
+this.onresizestart = CancelEvent ;
+this.onbeforeeditfocus = CancelEvent ;
+
+</script>
+
+</public:component>
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc
new file mode 100644
index 0000000..77418b9
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/behaviors/showtableborders.htc
@@ -0,0 +1,36 @@
+<public:component lightweight="true">
+
+<public:attach event="oncontentready" onevent="ShowBorders()" />
+<public:attach event="onpropertychange" onevent="OnPropertyChange()" />
+
+<script language="javascript">
+
+var oClassRegex = /\s*FCK__ShowTableBorders/ ;
+
+function ShowBorders()
+{
+ if ( this.border == 0 )
+ {
+ if ( !oClassRegex.test( this.className ) )
+ this.className += ' FCK__ShowTableBorders' ;
+ }
+ else
+ {
+ if ( oClassRegex.test( this.className ) )
+ {
+ this.className = this.className.replace( oClassRegex, '' ) ;
+ if ( this.className.length == 0 )
+ this.removeAttribute( 'className', 0 ) ;
+ }
+ }
+}
+
+function OnPropertyChange()
+{
+ if ( event.propertyName == 'border' || event.propertyName == 'className' )
+ ShowBorders.call(this) ;
+}
+
+</script>
+
+</public:component>
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css
new file mode 100644
index 0000000..8a328bb
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_editorarea.css
@@ -0,0 +1,110 @@
+/*
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
+ * Copyright (C) 2003-2009 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ * - GNU General Public License Version 2 or later (the "GPL")
+ * http://www.gnu.org/licenses/gpl.html
+ *
+ * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ * http://www.gnu.org/licenses/lgpl.html
+ *
+ * - Mozilla Public License Version 1.1 or later (the "MPL")
+ * http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+ *
+ * This is the default CSS file used by the editor area. It defines the
+ * initial font of the editor and background color.
+ *
+ * A user can configure the editor to use another CSS file. Just change
+ * the value of the FCKConfig.EditorAreaCSS key in the configuration
+ * file.
+ */
+
+/**
+ * The "body" styles should match your editor web site, mainly regarding
+ * background color and font family and size.
+ */
+
+body
+{
+ background-color: #ffffff;
+ padding: 5px 5px 5px 5px;
+ margin: 0px;
+}
+
+body, td
+{
+ font-family: Arial, Verdana, sans-serif;
+ font-size: 12px;
+}
+
+a[href]
+{
+ color: -moz-hyperlinktext !important; /* For Firefox... mark as important, otherwise it becomes black */
+ text-decoration: -moz-anchor-decoration; /* For Firefox 3, otherwise no underline will be used */
+}
+
+/**
+ * Just uncomment the following block if you want to avoid spaces between
+ * paragraphs. Remember to apply the same style in your output front end page.
+ */
+
+/*
+p, ul, li
+{
+ margin-top: 0px;
+ margin-bottom: 0px;
+}
+*/
+
+/**
+ * Uncomment the following block, or only selected lines if appropriate,
+ * if you have some style items that would break the styles combo box.
+ * You can also write other CSS overrides inside the style block below
+ * as needed and they will be applied to inside the style combo only.
+ */
+
+/*
+.SC_Item *, .SC_ItemSelected *
+{
+ margin: 0px !important;
+ padding: 0px !important;
+ text-indent: 0px !important;
+ clip: auto !important;
+ position: static !important;
+}
+*/
+
+/**
+ * The following are some sample styles used in the "Styles" toolbar command.
+ * You should instead remove them, and include the styles used by the site
+ * you are using the editor in.
+ */
+
+.Bold
+{
+ font-weight: bold;
+}
+
+.Title
+{
+ font-weight: bold;
+ font-size: 18px;
+ color: #cc3300;
+}
+
+.Code
+{
+ border: #8b4513 1px solid;
+ padding-right: 5px;
+ padding-left: 5px;
+ color: #000066;
+ font-family: 'Courier New' , Monospace;
+ background-color: #ff9933;
+}
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css
new file mode 100644
index 0000000..725272f
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_internal.css
@@ -0,0 +1,199 @@
+/*
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
+ * Copyright (C) 2003-2009 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ * - GNU General Public License Version 2 or later (the "GPL")
+ * http://www.gnu.org/licenses/gpl.html
+ *
+ * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ * http://www.gnu.org/licenses/lgpl.html
+ *
+ * - Mozilla Public License Version 1.1 or later (the "MPL")
+ * http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+ *
+ * This CSS Style Sheet defines rules used by the editor for its internal use.
+ */
+
+/* #########
+ * WARNING
+ * #########
+ * When changing this file, the minified version of it must be updated in the
+ * fckeditor.html file (see FCK_InternalCSS).
+ */
+
+/* Fix to allow putting the caret at the end of the content in Firefox if
+ clicking below the content. */
+html
+{
+ min-height: 100%;
+}
+
+table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
+{
+ border: #d3d3d3 1px solid;
+}
+
+form
+{
+ border: 1px dotted #FF0000;
+ padding: 2px;
+}
+
+.FCK__Flash
+{
+ border: #a9a9a9 1px solid;
+ background-position: center center;
+ background-image: url(images/fck_flashlogo.gif);
+ background-repeat: no-repeat;
+ width: 80px;
+ height: 80px;
+}
+
+.FCK__UnknownObject
+{
+ border: #a9a9a9 1px solid;
+ background-position: center center;
+ background-image: url(images/fck_plugin.gif);
+ background-repeat: no-repeat;
+ width: 80px;
+ height: 80px;
+}
+
+/* Empty anchors images */
+.FCK__Anchor
+{
+ border: 1px dotted #00F;
+ background-position: center center;
+ background-image: url(images/fck_anchor.gif);
+ background-repeat: no-repeat;
+ width: 16px;
+ height: 15px;
+ vertical-align: middle;
+}
+
+/* Anchors with content */
+.FCK__AnchorC
+{
+ border: 1px dotted #00F;
+ background-position: 1px center;
+ background-image: url(images/fck_anchor.gif);
+ background-repeat: no-repeat;
+ padding-left: 18px;
+}
+
+/* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
+a[name]
+{
+ border: 1px dotted #00F;
+ background-position: 0 center;
+ background-image: url(images/fck_anchor.gif);
+ background-repeat: no-repeat;
+ padding-left: 18px;
+}
+
+.FCK__PageBreak
+{
+ background-position: center center;
+ background-image: url(images/fck_pagebreak.gif);
+ background-repeat: no-repeat;
+ clear: both;
+ display: block;
+ float: none;
+ width: 100%;
+ border-top: #999999 1px dotted;
+ border-bottom: #999999 1px dotted;
+ border-right: 0px;
+ border-left: 0px;
+ height: 5px;
+}
+
+/* Hidden fields */
+.FCK__InputHidden
+{
+ width: 19px;
+ height: 18px;
+ background-image: url(images/fck_hiddenfield.gif);
+ background-repeat: no-repeat;
+ vertical-align: text-bottom;
+ background-position: center center;
+}
+
+.FCK__ShowBlocks p,
+.FCK__ShowBlocks div,
+.FCK__ShowBlocks pre,
+.FCK__ShowBlocks address,
+.FCK__ShowBlocks blockquote,
+.FCK__ShowBlocks h1,
+.FCK__ShowBlocks h2,
+.FCK__ShowBlocks h3,
+.FCK__ShowBlocks h4,
+.FCK__ShowBlocks h5,
+.FCK__ShowBlocks h6
+{
+ background-repeat: no-repeat;
+ border: 1px dotted gray;
+ padding-top: 8px;
+ padding-left: 8px;
+}
+
+.FCK__ShowBlocks p
+{
+ background-image: url(images/block_p.png);
+}
+
+.FCK__ShowBlocks div
+{
+ background-image: url(images/block_div.png);
+}
+
+.FCK__ShowBlocks pre
+{
+ background-image: url(images/block_pre.png);
+}
+
+.FCK__ShowBlocks address
+{
+ background-image: url(images/block_address.png);
+}
+
+.FCK__ShowBlocks blockquote
+{
+ background-image: url(images/block_blockquote.png);
+}
+
+.FCK__ShowBlocks h1
+{
+ background-image: url(images/block_h1.png);
+}
+
+.FCK__ShowBlocks h2
+{
+ background-image: url(images/block_h2.png);
+}
+
+.FCK__ShowBlocks h3
+{
+ background-image: url(images/block_h3.png);
+}
+
+.FCK__ShowBlocks h4
+{
+ background-image: url(images/block_h4.png);
+}
+
+.FCK__ShowBlocks h5
+{
+ background-image: url(images/block_h5.png);
+}
+
+.FCK__ShowBlocks h6
+{
+ background-image: url(images/block_h6.png);
+}
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css
new file mode 100644
index 0000000..87ab979
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/fck_showtableborders_gecko.css
@@ -0,0 +1,49 @@
+/*
+ * FCKeditor - The text editor for Internet - http://www.fckeditor.net
+ * Copyright (C) 2003-2009 Frederico Caldeira Knabben
+ *
+ * == BEGIN LICENSE ==
+ *
+ * Licensed under the terms of any of the following licenses at your
+ * choice:
+ *
+ * - GNU General Public License Version 2 or later (the "GPL")
+ * http://www.gnu.org/licenses/gpl.html
+ *
+ * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+ * http://www.gnu.org/licenses/lgpl.html
+ *
+ * - Mozilla Public License Version 1.1 or later (the "MPL")
+ * http://www.mozilla.org/MPL/MPL-1.1.html
+ *
+ * == END LICENSE ==
+ *
+ * This CSS Style Sheet defines the rules to show table borders on Gecko.
+ */
+
+/* #########
+ * WARNING
+ * #########
+ * When changing this file, the minified version of it must be updated in the
+ * fckeditor.html file (see FCK_ShowTableBordersCSS).
+ */
+
+/* For tables with the "border" attribute set to "0" */
+table[border="0"],
+table[border="0"] > tr > td, table[border="0"] > tr > th,
+table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
+table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
+table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
+{
+ border: #d3d3d3 1px dotted ;
+}
+
+/* For tables with no "border" attribute set */
+table:not([border]),
+table:not([border]) > tr > td, table:not([border]) > tr > th,
+table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
+table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
+table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
+{
+ border: #d3d3d3 1px dotted ;
+}
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png
new file mode 100644
index 0000000..8bbae6e
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_address.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png
new file mode 100644
index 0000000..cf065ba
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_blockquote.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png
new file mode 100644
index 0000000..a2806b1
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_div.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png
new file mode 100644
index 0000000..d43fbdb
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h1.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png
new file mode 100644
index 0000000..27b5475
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h2.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png
new file mode 100644
index 0000000..3c3034f
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h3.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png
new file mode 100644
index 0000000..ab3f64d
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h4.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png
new file mode 100644
index 0000000..93477d0
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h5.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png
new file mode 100644
index 0000000..11ea1c2
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_h6.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png
new file mode 100644
index 0000000..d055c51
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_p.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png
new file mode 100644
index 0000000..be8ad26
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/block_pre.png
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif
new file mode 100644
index 0000000..5aa797b
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_anchor.gif
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif
new file mode 100644
index 0000000..141aac4
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_flashlogo.gif
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif
new file mode 100644
index 0000000..953f643
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_hiddenfield.gif
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif
new file mode 100644
index 0000000..8d1cffd
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_pagebreak.gif
Binary files differ
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif
new file mode 100644
index 0000000..7d58463
--- /dev/null
+++ b/rt/share/html/NoAuth/RichText/FCKeditor/editor/css/images/fck_plugin.gif
Binary files differ