esp-ckeditor 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +32 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/_bootstrap.js +87 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_base.js +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_basic.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/command.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/commanddefinition.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/config.js +423 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dataprocessor.js +65 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/comment.js +32 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/document.js +251 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/documentfragment.js +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/domobject.js +258 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/element.js +1691 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/elementpath.js +119 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/event.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/node.js +696 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js +26 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/range.js +2054 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/rangelist.js +213 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/text.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/walker.js +462 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom/window.js +96 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dom.js +20 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/dtd.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor.js +1060 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/editor_basic.js +186 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/env.js +305 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/event.js +342 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/eventInfo.js +120 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/focusmanager.js +152 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/cdata.js +43 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/comment.js +60 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/element.js +308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/filter.js +288 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/fragment.js +518 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/text.js +53 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser.js +224 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/lang.js +157 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/loader.js +240 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugindefinition.js +83 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/plugins.js +103 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/resourcemanager.js +238 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/scriptloader.js +180 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/skins.js +184 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/themes.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/tools.js +763 -0
- data/app/assets/javascripts/esp-ckeditor/_source/core/ui.js +128 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/_languages.js +27 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/en.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/lang/ru.js +815 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/button/plugin.js +290 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/plugin.js +453 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/plugin.js +3308 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/domiterator/plugin.js +361 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/editingblock/plugin.js +278 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/elementspath/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/enterkey/plugin.js +433 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/entities/plugin.js +250 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/dialogs/esp_attachment.js +234 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/en.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/ru.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/uk.js +22 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/plugin.js +23 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/dialogs/esp_audio.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/en.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/ru.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/uk.js +18 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/dialogs/esp_blockquote.js +132 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/plugin.js +235 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/dialogs/esp_image.js +1414 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/en.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/ru.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/uk.js +9 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/plugin.js +80 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_anchor.js +145 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_link.js +1396 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/en.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/ru.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/uk.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/plugin.js +379 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/plugin.js +163 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/dialogs/esp_video.js +277 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/en.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/ru.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/uk.js +19 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/plugin.js +182 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/dialogs/find.js +915 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/plugin.js +47 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/format/plugin.js +197 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/plugin.js +81 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/indent/plugin.js +461 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/justify/plugin.js +253 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/list/plugin.js +774 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/listblock/plugin.js +266 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/plugin.js +66 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/maximize/plugin.js +353 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/menu/plugin.js +541 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/panel/plugin.js +400 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/plugin.js +98 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/popup/plugin.js +64 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/removeformat/plugin.js +185 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/resize/plugin.js +168 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/richcombo/plugin.js +381 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/selection/plugin.js +1729 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/showborders/plugin.js +207 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/plugin.js +1700 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/styles/default.js +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tab/plugin.js +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/dialogs/table.js +623 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/plugin.js +78 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/toolbar/plugin.js +545 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/undo/plugin.js +578 -0
- data/app/assets/javascripts/esp-ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/toolbar.css +412 -0
- data/app/assets/javascripts/esp-ckeditor/_source/themes/default/theme.js +407 -0
- data/app/assets/javascripts/esp-ckeditor/application.js +8 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.js +137 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor.pack +194 -0
- data/app/assets/javascripts/esp-ckeditor/ckeditor_source.js +35 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.jar +0 -0
- data/app/assets/javascripts/esp-ckeditor/ckpackager.txt +2 -0
- data/app/assets/javascripts/esp-ckeditor/config.js +147 -0
- data/app/assets/javascripts/esp-ckeditor/contents.css +38 -0
- data/app/assets/javascripts/esp-ckeditor/images/spacer.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/init_ckeditor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/he.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/basicstyles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/button/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/dialogs/paste.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/contextmenu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/dialogDefinition.js +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialog/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogadvtab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/dialogui/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/domiterator/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/editingblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/elementspath/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/enterkey/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/entities/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/dialogs/esp_attachment.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/images/esp_attachment.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/dialogs/esp_audio.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/esp_audio.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/dialogs/esp_blockquote.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/dialogs/esp_image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/images/esp_image.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_anchor.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_link.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_anchor.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_link.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_unlink.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_address.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_blockquote.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_div.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h1.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h2.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h3.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h4.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h5.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_p.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_pre.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/dialogs/esp_video.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/esp_video.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/placeholder.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/en.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/ru.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/uk.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/fakeobjects/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/filebrowser/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/dialogs/find.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/find/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/floatpanel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/format/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmldataprocessor/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/htmlwriter/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/dialogs/image.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/image/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/indent/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/justify/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/keystrokes/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/list/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/listblock/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/maximize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/menu/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/panel/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/filter/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/popup/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/removeformat/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/resize/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/richcombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/selection/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/showborders/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/sourcearea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/styles/styles/default.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/stylescombo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tab/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/dialogs/table.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/table/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/toolbar/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/undo/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/plugins/wysiwygarea/plugin.js +1 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/dialog.css +988 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/editor.css +25 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/elementspath.css +73 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.css +367 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/icons_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/mini.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/noimage.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/mainui.css +209 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/menu.css +232 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/panel.css +227 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/presets.css +49 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/reset.css +85 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/richcombo.css +287 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/skin.js +236 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/templates.css +88 -0
- data/app/assets/javascripts/esp-ckeditor/skins/kama/toolbar.css +412 -0
- data/app/inputs/ckeditor_input.rb +42 -0
- data/config/routes.rb +2 -0
- data/lib/esp-ckeditor/engine.rb +9 -0
- data/lib/esp-ckeditor/version.rb +3 -0
- data/lib/esp-ckeditor.rb +17 -0
- data/lib/tasks/esp-ckeditor_tasks.rake +4 -0
- metadata +434 -0
@@ -0,0 +1,227 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
.cke_skin_kama .cke_panel
|
7
|
+
{
|
8
|
+
border: 1px solid #8f8f73;
|
9
|
+
background-color: #fff;
|
10
|
+
|
11
|
+
width: 120px;
|
12
|
+
height: 100px;
|
13
|
+
|
14
|
+
overflow: hidden;
|
15
|
+
|
16
|
+
-moz-border-radius: 3px;
|
17
|
+
-webkit-border-radius: 3px;
|
18
|
+
border-radius: 3px;
|
19
|
+
}
|
20
|
+
|
21
|
+
.cke_skin_kama .cke_contextmenu
|
22
|
+
{
|
23
|
+
margin: 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* Ideally we would use "inherit here"... but you know... IE :( */
|
27
|
+
.cke_skin_kama .cke_panel iframe
|
28
|
+
{
|
29
|
+
width: 100%;
|
30
|
+
height: 100%;
|
31
|
+
}
|
32
|
+
|
33
|
+
/*
|
34
|
+
* All the following styles are to be used inside the iframe that holds panel
|
35
|
+
* contents. We don't use the cke_skin_default there to avoid the reset to be
|
36
|
+
* active.
|
37
|
+
* This is not an issue as we'll never have two skins running inside the same
|
38
|
+
* panel iframe.
|
39
|
+
*/
|
40
|
+
|
41
|
+
html.cke_skin_kama_container
|
42
|
+
{
|
43
|
+
overflow: auto;
|
44
|
+
overflow-x: hidden;
|
45
|
+
}
|
46
|
+
|
47
|
+
body.cke_panel_frame
|
48
|
+
{
|
49
|
+
overflow: auto;
|
50
|
+
}
|
51
|
+
|
52
|
+
.cke_panel_frame .cke_label
|
53
|
+
{
|
54
|
+
display: none;
|
55
|
+
}
|
56
|
+
|
57
|
+
ul.cke_panel_list
|
58
|
+
{
|
59
|
+
list-style-type: none;
|
60
|
+
margin: 3px;
|
61
|
+
padding: 0px;
|
62
|
+
white-space: nowrap;
|
63
|
+
}
|
64
|
+
|
65
|
+
li.cke_panel_listItem
|
66
|
+
{
|
67
|
+
margin: 0px;
|
68
|
+
}
|
69
|
+
|
70
|
+
.cke_panel_listItem a
|
71
|
+
{
|
72
|
+
padding: 2px;
|
73
|
+
display: block;
|
74
|
+
border: 1px solid #fff;
|
75
|
+
color: inherit !important;
|
76
|
+
text-decoration: none;
|
77
|
+
overflow: hidden;
|
78
|
+
text-overflow: ellipsis;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* IE6 */
|
82
|
+
* html .cke_panel_listItem a
|
83
|
+
{
|
84
|
+
width : 100%;
|
85
|
+
|
86
|
+
/* IE is not able to inherit the color, so we must force it to black */
|
87
|
+
color: #000;
|
88
|
+
}
|
89
|
+
|
90
|
+
/* IE7 */
|
91
|
+
*:first-child+html .cke_panel_listItem a
|
92
|
+
{
|
93
|
+
/* IE is not able to inherit the color, so we must force it to black */
|
94
|
+
color: #000;
|
95
|
+
}
|
96
|
+
|
97
|
+
.cke_panel_listItem.cke_selected a
|
98
|
+
{
|
99
|
+
border: 1px solid #ccc;
|
100
|
+
background-color: #e9f5ff;
|
101
|
+
}
|
102
|
+
|
103
|
+
.cke_panel_listItem a:hover,
|
104
|
+
.cke_panel_listItem a:focus,
|
105
|
+
.cke_panel_listItem a:active
|
106
|
+
{
|
107
|
+
border-color: #316ac5;
|
108
|
+
background-color: #dff1ff;
|
109
|
+
}
|
110
|
+
|
111
|
+
.cke_hc .cke_panel_listItem.cke_selected a,
|
112
|
+
.cke_hc .cke_panel_listItem a:hover,
|
113
|
+
.cke_hc .cke_panel_listItem a:focus,
|
114
|
+
.cke_hc .cke_panel_listItem a:active
|
115
|
+
{
|
116
|
+
border-width: 3px;
|
117
|
+
padding: 0px;
|
118
|
+
}
|
119
|
+
|
120
|
+
.cke_panel_grouptitle
|
121
|
+
{
|
122
|
+
font-size: 11px;
|
123
|
+
font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
|
124
|
+
font-weight: bold;
|
125
|
+
white-space: nowrap;
|
126
|
+
background-color: #dcdcdc;
|
127
|
+
color: #000;
|
128
|
+
margin:0px;
|
129
|
+
padding:3px;
|
130
|
+
}
|
131
|
+
|
132
|
+
.cke_panel_listItem p,
|
133
|
+
.cke_panel_listItem h1,
|
134
|
+
.cke_panel_listItem h2,
|
135
|
+
.cke_panel_listItem h3,
|
136
|
+
.cke_panel_listItem h4,
|
137
|
+
.cke_panel_listItem h5,
|
138
|
+
.cke_panel_listItem h6,
|
139
|
+
.cke_panel_listItem pre
|
140
|
+
{
|
141
|
+
margin-top: 3px;
|
142
|
+
margin-bottom: 3px;
|
143
|
+
}
|
144
|
+
|
145
|
+
.cke_panel_listItem h1
|
146
|
+
{
|
147
|
+
font-size: 22px;
|
148
|
+
}
|
149
|
+
|
150
|
+
.cke_panel_listItem blockquote
|
151
|
+
{
|
152
|
+
margin: 0;
|
153
|
+
}
|
154
|
+
|
155
|
+
.cke_skin_kama .cke_button_textcolor_panel,
|
156
|
+
.cke_skin_kama .cke_button_bgcolor_panel
|
157
|
+
{
|
158
|
+
width: 150px;
|
159
|
+
height: 135px;
|
160
|
+
}
|
161
|
+
|
162
|
+
.cke_colorblock
|
163
|
+
{
|
164
|
+
padding: 3px;
|
165
|
+
font-size: 11px;
|
166
|
+
font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
|
167
|
+
}
|
168
|
+
|
169
|
+
.cke_colorblock,
|
170
|
+
.cke_colorblock a
|
171
|
+
{
|
172
|
+
text-decoration: none;
|
173
|
+
color: #000;
|
174
|
+
}
|
175
|
+
|
176
|
+
span.cke_colorbox
|
177
|
+
{
|
178
|
+
width: 10px;
|
179
|
+
height: 10px;
|
180
|
+
border: #808080 1px solid;
|
181
|
+
float: left;
|
182
|
+
}
|
183
|
+
|
184
|
+
.cke_rtl span.cke_colorbox
|
185
|
+
{
|
186
|
+
float: right;
|
187
|
+
}
|
188
|
+
|
189
|
+
a.cke_colorbox
|
190
|
+
{
|
191
|
+
border: #fff 1px solid;
|
192
|
+
padding: 2px;
|
193
|
+
float: left;
|
194
|
+
}
|
195
|
+
|
196
|
+
.cke_rtl a.cke_colorbox
|
197
|
+
{
|
198
|
+
float: right;
|
199
|
+
}
|
200
|
+
|
201
|
+
a:hover.cke_colorbox,
|
202
|
+
a:focus.cke_colorbox,
|
203
|
+
a:active.cke_colorbox
|
204
|
+
{
|
205
|
+
border: #316ac5 1px solid;
|
206
|
+
background-color: #dff1ff;
|
207
|
+
}
|
208
|
+
|
209
|
+
a.cke_colorauto,
|
210
|
+
a.cke_colormore
|
211
|
+
{
|
212
|
+
border: #fff 1px solid;
|
213
|
+
padding: 2px;
|
214
|
+
display: block;
|
215
|
+
cursor: pointer;
|
216
|
+
}
|
217
|
+
|
218
|
+
a:hover.cke_colorauto,
|
219
|
+
a:hover.cke_colormore,
|
220
|
+
a:focus.cke_colorauto,
|
221
|
+
a:focus.cke_colormore,
|
222
|
+
a:active.cke_colorauto,
|
223
|
+
a:active.cke_colormore
|
224
|
+
{
|
225
|
+
border: #316ac5 1px solid;
|
226
|
+
background-color: #dff1ff;
|
227
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* "Source" button label */
|
7
|
+
.cke_skin_kama .cke_button_source .cke_label
|
8
|
+
{
|
9
|
+
display: inline;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* "Styles" panel size */
|
13
|
+
.cke_skin_kama .cke_styles_panel
|
14
|
+
{
|
15
|
+
width: 150px;
|
16
|
+
height: 170px;
|
17
|
+
}
|
18
|
+
|
19
|
+
/* "Format" panel size */
|
20
|
+
.cke_skin_kama .cke_format_panel
|
21
|
+
{
|
22
|
+
width: 150px;
|
23
|
+
height: 170px;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* "Font" panel size */
|
27
|
+
.cke_skin_kama .cke_font_panel
|
28
|
+
{
|
29
|
+
width: 150px;
|
30
|
+
height: 170px;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* "Font Size" panel size */
|
34
|
+
.cke_skin_kama .cke_fontSize_panel
|
35
|
+
{
|
36
|
+
height: 170px;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* "Font Size" combo width */
|
40
|
+
.cke_skin_kama .cke_fontSize .cke_text
|
41
|
+
{
|
42
|
+
width: 25px;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* "Font Size" combo width (IE Quirks) */
|
46
|
+
.cke_skin_kama .cke_browser_iequirks .cke_fontSize .cke_text
|
47
|
+
{
|
48
|
+
width: 32px;
|
49
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/**
|
7
|
+
* Reset and Default Values
|
8
|
+
*/
|
9
|
+
.cke_skin_kama *,
|
10
|
+
.cke_skin_kama a:hover,
|
11
|
+
.cke_skin_kama a:link,
|
12
|
+
.cke_skin_kama a:visited,
|
13
|
+
.cke_skin_kama a:active
|
14
|
+
{
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
background: transparent;
|
19
|
+
text-decoration: none;
|
20
|
+
font: normal normal normal 100% Sans-Serif;
|
21
|
+
width: auto;
|
22
|
+
height: auto;
|
23
|
+
border-collapse: collapse;
|
24
|
+
text-align: left;
|
25
|
+
vertical-align: baseline;
|
26
|
+
white-space: nowrap;
|
27
|
+
cursor: auto;
|
28
|
+
color: #000;
|
29
|
+
float: none;
|
30
|
+
|
31
|
+
font-size: 12px;
|
32
|
+
font-family: Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
|
33
|
+
}
|
34
|
+
|
35
|
+
.cke_skin_kama .cke_rtl *,
|
36
|
+
.cke_skin_kama .cke_rtl a:hover,
|
37
|
+
.cke_skin_kama .cke_rtl a:link,
|
38
|
+
.cke_skin_kama .cke_rtl a:visited,
|
39
|
+
.cke_skin_kama .cke_rtl a:active,
|
40
|
+
.cke_rtl .cke_skin_kama *,
|
41
|
+
.cke_rtl .cke_skin_kama a:hover,
|
42
|
+
.cke_rtl .cke_skin_kama a:link,
|
43
|
+
.cke_rtl .cke_skin_kama a:visited,
|
44
|
+
.cke_rtl .cke_skin_kama a:active
|
45
|
+
{
|
46
|
+
text-align: right;
|
47
|
+
}
|
48
|
+
|
49
|
+
.cke_skin_kama iframe
|
50
|
+
{
|
51
|
+
vertical-align: inherit; /** For IE */
|
52
|
+
}
|
53
|
+
|
54
|
+
.cke_skin_kama textarea
|
55
|
+
{
|
56
|
+
white-space: pre;
|
57
|
+
}
|
58
|
+
|
59
|
+
.cke_skin_kama .cke_browser_gecko textarea
|
60
|
+
{
|
61
|
+
cursor: text;
|
62
|
+
}
|
63
|
+
|
64
|
+
.cke_skin_kama .cke_browser_gecko textarea[disabled]
|
65
|
+
{
|
66
|
+
cursor: default;
|
67
|
+
}
|
68
|
+
|
69
|
+
.cke_skin_kama input[type="text"],
|
70
|
+
.cke_skin_kama input[type="password"]
|
71
|
+
{
|
72
|
+
cursor: text;
|
73
|
+
}
|
74
|
+
|
75
|
+
.cke_skin_kama input[type="text"][disabled],
|
76
|
+
.cke_skin_kama input[type="password"][disabled]
|
77
|
+
{
|
78
|
+
cursor: default;
|
79
|
+
}
|
80
|
+
|
81
|
+
.cke_skin_kama fieldset
|
82
|
+
{
|
83
|
+
padding: 10px;
|
84
|
+
border: 2px groove #E0DFE3;
|
85
|
+
}
|
@@ -0,0 +1,287 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
3
|
+
For licensing, see LICENSE.html or http://ckeditor.com/license
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* Special Combo */
|
7
|
+
|
8
|
+
.cke_skin_kama .cke_rcombo
|
9
|
+
{
|
10
|
+
display: inline;
|
11
|
+
}
|
12
|
+
|
13
|
+
.cke_skin_kama .cke_rtl .cke_rcombo
|
14
|
+
{
|
15
|
+
}
|
16
|
+
|
17
|
+
.cke_skin_kama .cke_rcombopanel
|
18
|
+
{
|
19
|
+
border: 1px solid #8F8F73;
|
20
|
+
-moz-border-radius-topleft: 0;
|
21
|
+
-webkit-border-top-left-radius: 0;
|
22
|
+
border-top-left-radius: 0;
|
23
|
+
height: auto;
|
24
|
+
_height: 100px;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* IE6 workaround, shouldn't be here */
|
28
|
+
.cke_skin_kama .cke_browser_iequirks .cke_rcombopanel,
|
29
|
+
.cke_skin_kama .cke_browser_ie6 .cke_rcombopanel
|
30
|
+
{
|
31
|
+
/* width: 150px;*/
|
32
|
+
}
|
33
|
+
|
34
|
+
.cke_skin_kama .cke_rcombo a,
|
35
|
+
.cke_skin_kama .cke_rcombo a:active,
|
36
|
+
.cke_skin_kama .cke_rcombo a:hover
|
37
|
+
{
|
38
|
+
-moz-border-radius: 5px;
|
39
|
+
-webkit-border-radius: 5px;
|
40
|
+
border-radius: 5px;
|
41
|
+
background-image: url(images/sprites.png);
|
42
|
+
_background-image: url(images/sprites_ie6.png);
|
43
|
+
background-repeat: repeat-x;
|
44
|
+
background-position: 0 -100px;
|
45
|
+
border-bottom:1px solid #DAD9D9;
|
46
|
+
border-right:1px solid #DAD9D9;
|
47
|
+
float:left;
|
48
|
+
padding: 2px;
|
49
|
+
height: 21px;
|
50
|
+
margin-right: 6px;
|
51
|
+
margin-bottom: 5px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.cke_skin_kama .cke_rtl .cke_rcombo a,
|
55
|
+
.cke_skin_kama .cke_rtl .cke_rcombo a:active,
|
56
|
+
.cke_skin_kama .cke_rtl .cke_rcombo a:hover
|
57
|
+
{
|
58
|
+
float:right;
|
59
|
+
margin-right: 0;
|
60
|
+
margin-left: 6px;
|
61
|
+
}
|
62
|
+
|
63
|
+
.cke_skin_kama .cke_hc .cke_rcombo a
|
64
|
+
{
|
65
|
+
filter: alpha(opacity=100); /* IE */
|
66
|
+
opacity: 1.0; /* Safari, Opera and Mozilla */
|
67
|
+
}
|
68
|
+
|
69
|
+
.cke_skin_kama .cke_rcombo .cke_label
|
70
|
+
{
|
71
|
+
display: none;
|
72
|
+
line-height: 26px;
|
73
|
+
vertical-align: top;
|
74
|
+
margin-right: 5px;
|
75
|
+
filter: alpha(opacity=70); /* IE */
|
76
|
+
opacity: 0.70; /* Safari, Opera and Mozilla */
|
77
|
+
/* background-color: #f1f1e3; Because of IE6+ClearType */
|
78
|
+
}
|
79
|
+
|
80
|
+
.cke_skin_kama .cke_rtl .cke_rcombo .cke_label
|
81
|
+
{
|
82
|
+
margin-right: 0;
|
83
|
+
margin-left: 5px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.cke_skin_kama .cke_rcombo .cke_inline_label
|
87
|
+
{
|
88
|
+
line-height: 21px;
|
89
|
+
font-style: italic;
|
90
|
+
color: #666666;
|
91
|
+
}
|
92
|
+
|
93
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_openbutton
|
94
|
+
{
|
95
|
+
vertical-align: top;
|
96
|
+
}
|
97
|
+
|
98
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_label
|
99
|
+
{
|
100
|
+
filter: alpha(opacity=100);
|
101
|
+
opacity: 1.0;
|
102
|
+
}
|
103
|
+
|
104
|
+
.cke_skin_kama .cke_rcombo .cke_text
|
105
|
+
{
|
106
|
+
filter: alpha(opacity=70); /* IE */
|
107
|
+
opacity: 0.70; /* Safari, Opera and Mozilla */
|
108
|
+
|
109
|
+
height: 21px;
|
110
|
+
line-height: 21px;
|
111
|
+
width:60px;
|
112
|
+
text-overflow: ellipsis;
|
113
|
+
overflow: hidden;
|
114
|
+
display: inline-block;
|
115
|
+
margin: 0 2px 0 4px;
|
116
|
+
cursor: default;
|
117
|
+
}
|
118
|
+
|
119
|
+
.cke_skin_kama .cke_rtl .cke_rcombo .cke_text
|
120
|
+
{
|
121
|
+
margin: 0 4px 0 2px;
|
122
|
+
}
|
123
|
+
|
124
|
+
.cke_skin_kama .cke_rcombo .cke_openbutton
|
125
|
+
{
|
126
|
+
display: inline-block;
|
127
|
+
}
|
128
|
+
|
129
|
+
.cke_skin_kama .cke_rcombo .cke_openbutton .cke_icon
|
130
|
+
{
|
131
|
+
display: inline-block;
|
132
|
+
background-image: url(images/sprites.png);
|
133
|
+
_background-image: url(images/sprites_ie6.png);
|
134
|
+
background-position: 0 -68px;
|
135
|
+
background-repeat: no-repeat;
|
136
|
+
width: 17px;
|
137
|
+
height: 19px;
|
138
|
+
margin: 1px 2px;
|
139
|
+
}
|
140
|
+
|
141
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_openbutton .cke_icon
|
142
|
+
{
|
143
|
+
background: none;
|
144
|
+
}
|
145
|
+
|
146
|
+
.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_openbutton
|
147
|
+
{
|
148
|
+
margin-bottom: 0;
|
149
|
+
}
|
150
|
+
|
151
|
+
.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_text,
|
152
|
+
.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_text,
|
153
|
+
.cke_skin_kama .cke_rcombo .cke_off a:active .cke_text,
|
154
|
+
.cke_skin_kama .cke_rcombo .cke_on .cke_text
|
155
|
+
{
|
156
|
+
border-color: #316ac5;
|
157
|
+
filter: alpha(opacity=100); /* IE */
|
158
|
+
opacity: 1; /* Safari, Opera and Mozilla */
|
159
|
+
}
|
160
|
+
|
161
|
+
.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_openbutton,
|
162
|
+
.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_openbutton,
|
163
|
+
.cke_skin_kama .cke_rcombo .cke_off a:active .cke_openbutton,
|
164
|
+
.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton
|
165
|
+
{
|
166
|
+
border-color: #316ac5;
|
167
|
+
background-color: #dff1ff;
|
168
|
+
}
|
169
|
+
|
170
|
+
.cke_skin_kama .cke_rcombo .cke_on .cke_text
|
171
|
+
{
|
172
|
+
-moz-border-radius-bottomleft: 0px;
|
173
|
+
-webkit-border-bottom-left-radius: 0px;
|
174
|
+
border-bottom-left-radius: 0px;
|
175
|
+
}
|
176
|
+
|
177
|
+
.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton
|
178
|
+
{
|
179
|
+
-moz-border-radius-bottomright: 0px;
|
180
|
+
-webkit-border-bottom-right-radius: 0px;
|
181
|
+
border-bottom-right-radius: 0px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.cke_skin_kama .cke_rcombo .cke_disabled .cke_label
|
185
|
+
{
|
186
|
+
filter: alpha(opacity=30); /* IE */
|
187
|
+
opacity: 0.3; /* Safari, Opera and Mozilla */
|
188
|
+
}
|
189
|
+
|
190
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_label
|
191
|
+
{
|
192
|
+
filter: alpha(opacity=70);
|
193
|
+
opacity: 0.7;
|
194
|
+
}
|
195
|
+
|
196
|
+
.cke_skin_kama .cke_rcombo .cke_disabled .cke_text,
|
197
|
+
.cke_skin_kama .cke_rcombo .cke_disabled .cke_openbutton
|
198
|
+
{
|
199
|
+
filter: alpha(opacity=50); /* IE */
|
200
|
+
opacity: 0.5; /* Safari, Opera and Mozilla */
|
201
|
+
}
|
202
|
+
|
203
|
+
/* IE with zoom != 100% will distort the icons otherwise #4821 */
|
204
|
+
.cke_skin_kama .cke_browser_ie .cke_rcombo .cke_disabled .cke_openbutton
|
205
|
+
{
|
206
|
+
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=50);
|
207
|
+
}
|
208
|
+
.cke_skin_kama .cke_browser_ie6 .cke_rcombo .cke_disabled .cke_openbutton
|
209
|
+
{
|
210
|
+
filter: alpha(opacity=50);
|
211
|
+
}
|
212
|
+
|
213
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_text,
|
214
|
+
.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_openbutton
|
215
|
+
{
|
216
|
+
filter: alpha(opacity=80);
|
217
|
+
opacity: 0.8;
|
218
|
+
}
|
219
|
+
|
220
|
+
.cke_skin_kama .cke_rcombo .cke_disabled .cke_text
|
221
|
+
{
|
222
|
+
color: #fff;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* RTL */
|
226
|
+
|
227
|
+
.cke_skin_kama .cke_rtl .cke_rcombo span
|
228
|
+
{
|
229
|
+
/* _zoom: 1;*/
|
230
|
+
}
|
231
|
+
|
232
|
+
.cke_skin_kama .cke_rtl .cke_rcombo .cke_text
|
233
|
+
{
|
234
|
+
/* _float: left;*/
|
235
|
+
}
|
236
|
+
|
237
|
+
/* Firefox 2 & WebKit Section */
|
238
|
+
|
239
|
+
.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_text,
|
240
|
+
.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_openbutton,
|
241
|
+
.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_text,
|
242
|
+
.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_openbutton
|
243
|
+
{
|
244
|
+
display: block;
|
245
|
+
float: left;
|
246
|
+
}
|
247
|
+
|
248
|
+
.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_text,
|
249
|
+
.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text
|
250
|
+
{
|
251
|
+
/* float: right;*/
|
252
|
+
}
|
253
|
+
|
254
|
+
.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_label,
|
255
|
+
.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_label
|
256
|
+
{
|
257
|
+
/*display: block;*/
|
258
|
+
float: left;
|
259
|
+
}
|
260
|
+
|
261
|
+
.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_label,
|
262
|
+
.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_text,
|
263
|
+
.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_openbutton,
|
264
|
+
.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,
|
265
|
+
.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,
|
266
|
+
.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton
|
267
|
+
{
|
268
|
+
float: right;
|
269
|
+
}
|
270
|
+
|
271
|
+
.cke_skin_kama .cke_browser_ie7 .cke_rcombo .cke_text
|
272
|
+
{
|
273
|
+
line-height: 18px;
|
274
|
+
}
|
275
|
+
|
276
|
+
.cke_skin_kama .cke_browser_ie6 .cke_rcombo .cke_text,
|
277
|
+
.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_text
|
278
|
+
{
|
279
|
+
height: auto;
|
280
|
+
line-height: 17px;
|
281
|
+
}
|
282
|
+
|
283
|
+
.cke_skin_kama .cke_rtl .cke_rcombo .cke_font .cke_text,
|
284
|
+
.cke_skin_kama .cke_rtl .cke_rcombo .cke_fontSize .cke_text
|
285
|
+
{
|
286
|
+
direction: ltr;
|
287
|
+
}
|