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,988 @@
|
|
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
|
+
/* Restore the dialog visibility */
|
7
|
+
body .cke_dialog
|
8
|
+
{
|
9
|
+
visibility: visible;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* Force Gecko to consider table as positioned */
|
13
|
+
.cke_skin_kama table.cke_dialog.cke_browser_gecko
|
14
|
+
{
|
15
|
+
display:block;
|
16
|
+
}
|
17
|
+
|
18
|
+
.cke_skin_kama .cke_dialog_body
|
19
|
+
{
|
20
|
+
z-index: 1;
|
21
|
+
border: solid 1px #ddd;
|
22
|
+
padding: 5px;
|
23
|
+
background-color: #fff;
|
24
|
+
-moz-border-radius: 5px;
|
25
|
+
-webkit-border-radius: 5px;
|
26
|
+
border-radius: 5px;
|
27
|
+
|
28
|
+
/* 'cke_dialog' element has been fixed positioned in all but IE6, while we
|
29
|
+
need it to be positioned to hold e.g. close button. */
|
30
|
+
position: relative;
|
31
|
+
_position: static;
|
32
|
+
}
|
33
|
+
|
34
|
+
.cke_skin_kama .cke_dialog_tl,
|
35
|
+
.cke_skin_kama .cke_dialog_tr,
|
36
|
+
.cke_skin_kama .cke_dialog_tc,
|
37
|
+
.cke_skin_kama .cke_dialog_bl,
|
38
|
+
.cke_skin_kama .cke_dialog_br,
|
39
|
+
.cke_skin_kama .cke_dialog_bc,
|
40
|
+
.cke_skin_kama .cke_dialog_ml,
|
41
|
+
.cke_skin_kama .cke_dialog_mr
|
42
|
+
{
|
43
|
+
display:none;
|
44
|
+
}
|
45
|
+
|
46
|
+
.cke_skin_kama .cke_dialog_title
|
47
|
+
{
|
48
|
+
font-weight: bold;
|
49
|
+
font-size: 14px;
|
50
|
+
padding: 3px 3px 8px;
|
51
|
+
cursor: move;
|
52
|
+
position: relative;
|
53
|
+
border-bottom: 1px solid #eee;
|
54
|
+
}
|
55
|
+
|
56
|
+
.cke_skin_kama .cke_browser_iequirks .cke_dialog_title,
|
57
|
+
.cke_skin_kama .cke_browser_ie6 .cke_dialog_title,
|
58
|
+
.cke_skin_kama .cke_browser_ie7 .cke_dialog_title
|
59
|
+
{
|
60
|
+
margin-bottom: 22px;
|
61
|
+
}
|
62
|
+
|
63
|
+
.cke_skin_kama .cke_browser_iequirks.cke_single_page .cke_dialog_title,
|
64
|
+
.cke_skin_kama .cke_browser_ie6.cke_single_page .cke_dialog_title,
|
65
|
+
.cke_skin_kama .cke_browser_ie7.cke_single_page .cke_dialog_title
|
66
|
+
{
|
67
|
+
margin-bottom: 10px;
|
68
|
+
}
|
69
|
+
|
70
|
+
.cke_skin_kama .cke_dialog_contents
|
71
|
+
{
|
72
|
+
background-color: #ebebeb;
|
73
|
+
border: solid 1px #fff;
|
74
|
+
border-bottom: none;
|
75
|
+
overflow: auto;
|
76
|
+
padding: 17px 10px 5px 10px;
|
77
|
+
-moz-border-radius-topleft: 5px;
|
78
|
+
-moz-border-radius-topright: 5px;
|
79
|
+
-webkit-border-top-left-radius: 5px;
|
80
|
+
-webkit-border-top-right-radius: 5px;
|
81
|
+
border-top-left-radius: 5px;
|
82
|
+
border-top-right-radius: 5px;
|
83
|
+
margin-top: 22px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.cke_skin_kama .cke_dialog_footer
|
87
|
+
{
|
88
|
+
text-align: right;
|
89
|
+
background-color: #ebebeb;
|
90
|
+
border: solid 1px #fff;
|
91
|
+
border-bottom: none;
|
92
|
+
-moz-border-radius-bottomleft: 5px;
|
93
|
+
-moz-border-radius-bottomright: 5px;
|
94
|
+
-webkit-border-bottom-left-radius: 5px;
|
95
|
+
-webkit-border-bottom-right-radius: 5px;
|
96
|
+
border-bottom-left-radius: 5px;
|
97
|
+
border-bottom-right-radius: 5px;
|
98
|
+
}
|
99
|
+
|
100
|
+
.cke_skin_kama .cke_rtl .cke_dialog_footer
|
101
|
+
{
|
102
|
+
text-align: left;
|
103
|
+
}
|
104
|
+
|
105
|
+
.cke_skin_kama .cke_dialog_footer .cke_resizer
|
106
|
+
{
|
107
|
+
margin-top: 20px;
|
108
|
+
}
|
109
|
+
.cke_skin_kama .cke_browser_iequirks .cke_dialog_footer .cke_resizer,
|
110
|
+
.cke_skin_kama .cke_browser_ie6 .cke_dialog_footer .cke_resizer
|
111
|
+
{
|
112
|
+
margin-top: 27px;
|
113
|
+
}
|
114
|
+
|
115
|
+
/* tabs */
|
116
|
+
|
117
|
+
.cke_skin_kama .cke_dialog_tabs
|
118
|
+
{
|
119
|
+
height: 23px;
|
120
|
+
display: inline-block;
|
121
|
+
_display: block;
|
122
|
+
margin-left:10px;
|
123
|
+
margin-right:10px;
|
124
|
+
margin-top: 11px;
|
125
|
+
position: absolute;
|
126
|
+
z-index: 2;
|
127
|
+
}
|
128
|
+
|
129
|
+
.cke_skin_kama .cke_browser_iequirks .cke_dialog_tabs,
|
130
|
+
.cke_skin_kama .cke_browser_ie6 .cke_dialog_tabs,
|
131
|
+
.cke_skin_kama .cke_browser_ie7 .cke_dialog_tabs
|
132
|
+
{
|
133
|
+
top: 33px;
|
134
|
+
}
|
135
|
+
|
136
|
+
.cke_skin_kama .cke_rtl .cke_dialog_tabs
|
137
|
+
{
|
138
|
+
right: 10px;
|
139
|
+
}
|
140
|
+
|
141
|
+
.cke_skin_kama a.cke_dialog_tab,
|
142
|
+
.cke_skin_kama a:link.cke_dialog_tab,
|
143
|
+
.cke_skin_kama a:active.cke_dialog_tab,
|
144
|
+
.cke_skin_kama a:hover.cke_dialog_tab,
|
145
|
+
.cke_skin_kama a:visited.cke_dialog_tab
|
146
|
+
{
|
147
|
+
background-image: url(images/sprites.png);
|
148
|
+
background-repeat: repeat-x;
|
149
|
+
background-position: 0 -1323px;
|
150
|
+
|
151
|
+
background-color: #ebebeb;
|
152
|
+
height: 14px;
|
153
|
+
padding: 4px 8px;
|
154
|
+
display: inline-block;
|
155
|
+
cursor: pointer;
|
156
|
+
|
157
|
+
}
|
158
|
+
|
159
|
+
/* Gecko 1.8 layout workaround. */
|
160
|
+
.cke_skin_kama .cke_browser_gecko18 a.cke_dialog_tab,
|
161
|
+
.cke_skin_kama .cke_browser_gecko18 a:link.cke_dialog_tab,
|
162
|
+
.cke_skin_kama .cke_browser_gecko18 a:active.cke_dialog_tab,
|
163
|
+
.cke_skin_kama .cke_browser_gecko18 a:hover.cke_dialog_tab,
|
164
|
+
.cke_skin_kama .cke_browser_gecko18 a:visited.cke_dialog_tab
|
165
|
+
{
|
166
|
+
display: inline;
|
167
|
+
position: relative;
|
168
|
+
top: 6px;
|
169
|
+
}
|
170
|
+
|
171
|
+
.cke_skin_kama a:hover.cke_dialog_tab
|
172
|
+
{
|
173
|
+
background-color: #f1f1e3;
|
174
|
+
}
|
175
|
+
|
176
|
+
.cke_skin_kama .cke_hc a:hover.cke_dialog_tab
|
177
|
+
{
|
178
|
+
padding: 2px 6px !important;
|
179
|
+
border-width: 3px;
|
180
|
+
}
|
181
|
+
|
182
|
+
.cke_skin_kama a.cke_dialog_tab_selected,
|
183
|
+
.cke_skin_kama a:link.cke_dialog_tab_selected,
|
184
|
+
.cke_skin_kama a:active.cke_dialog_tab_selected,
|
185
|
+
.cke_skin_kama a:hover.cke_dialog_tab_selected,
|
186
|
+
.cke_skin_kama a:visited.cke_dialog_tab_selected
|
187
|
+
{
|
188
|
+
background-position: 0 -1279px;
|
189
|
+
cursor: default;
|
190
|
+
}
|
191
|
+
|
192
|
+
.cke_skin_kama .cke_hc a.cke_dialog_tab_selected,
|
193
|
+
.cke_skin_kama .cke_hc a:link.cke_dialog_tab_selected,
|
194
|
+
.cke_skin_kama .cke_hc a:active.cke_dialog_tab_selected,
|
195
|
+
.cke_skin_kama .cke_hc a:hover.cke_dialog_tab_selected,
|
196
|
+
.cke_skin_kama .cke_hc a:visited.cke_dialog_tab_selected
|
197
|
+
{
|
198
|
+
padding: 2px 6px !important;
|
199
|
+
border-width: 3px;
|
200
|
+
}
|
201
|
+
|
202
|
+
/* single_page */
|
203
|
+
|
204
|
+
.cke_skin_kama .cke_single_page .cke_dialog_tabs
|
205
|
+
{
|
206
|
+
display: none;
|
207
|
+
}
|
208
|
+
|
209
|
+
.cke_skin_kama .cke_single_page .cke_dialog_contents
|
210
|
+
{
|
211
|
+
padding-top: 5px;
|
212
|
+
margin-top: 10px;
|
213
|
+
}
|
214
|
+
|
215
|
+
/* IE7 + IE quirks */
|
216
|
+
.cke_skin_kama .cke_browser_ie7.cke_single_page .cke_dialog_contents
|
217
|
+
{
|
218
|
+
margin-top: 0px;
|
219
|
+
position: relative;
|
220
|
+
margin-bottom: -22px;
|
221
|
+
}
|
222
|
+
|
223
|
+
.cke_skin_kama .cke_dialog_ui_vbox table,
|
224
|
+
.cke_skin_kama .cke_dialog_ui_hbox table
|
225
|
+
{
|
226
|
+
margin: auto;
|
227
|
+
}
|
228
|
+
|
229
|
+
.cke_skin_kama .cke_dialog_ui_vbox_child
|
230
|
+
{
|
231
|
+
padding: 5px 0px;
|
232
|
+
}
|
233
|
+
|
234
|
+
.cke_skin_kama input.cke_dialog_ui_input_text,
|
235
|
+
.cke_skin_kama input.cke_dialog_ui_input_password
|
236
|
+
{
|
237
|
+
background-color: white;
|
238
|
+
border: none;
|
239
|
+
padding: 0px;
|
240
|
+
width: 100%;
|
241
|
+
height: 14px;
|
242
|
+
}
|
243
|
+
|
244
|
+
.cke_skin_kama div.cke_dialog_ui_input_text,
|
245
|
+
.cke_skin_kama div.cke_dialog_ui_input_password
|
246
|
+
{
|
247
|
+
background-color: white;
|
248
|
+
border: 1px solid #a0a0a0;
|
249
|
+
padding: 1px 0px;
|
250
|
+
/* IE6/Quirks - make sure the content does not overflow (#7321) */
|
251
|
+
_width: 99.9%;
|
252
|
+
}
|
253
|
+
|
254
|
+
/* Opera/IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
|
255
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,
|
256
|
+
.cke_skin_kama .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,
|
257
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,
|
258
|
+
.cke_skin_kama .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password
|
259
|
+
{
|
260
|
+
padding-right: 2px;
|
261
|
+
}
|
262
|
+
|
263
|
+
/* Compensate the padding added above on container. */
|
264
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,
|
265
|
+
.cke_skin_kama .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,
|
266
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,
|
267
|
+
.cke_skin_kama .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password
|
268
|
+
{
|
269
|
+
padding-left: 2px;
|
270
|
+
}
|
271
|
+
|
272
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,
|
273
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,
|
274
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,
|
275
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last
|
276
|
+
{
|
277
|
+
padding-right: 2px !important;
|
278
|
+
}
|
279
|
+
|
280
|
+
.cke_skin_kama .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text {
|
281
|
+
padding-right: 1px;
|
282
|
+
}
|
283
|
+
|
284
|
+
.cke_skin_kama .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,
|
285
|
+
.cke_skin_kama .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password
|
286
|
+
{
|
287
|
+
border-width: 0px;
|
288
|
+
}
|
289
|
+
|
290
|
+
.cke_skin_kama .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,
|
291
|
+
.cke_skin_kama .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password
|
292
|
+
{
|
293
|
+
border-width: 1px;
|
294
|
+
}
|
295
|
+
|
296
|
+
.cke_skin_kama textarea.cke_dialog_ui_input_textarea
|
297
|
+
{
|
298
|
+
background-color: white;
|
299
|
+
border: none;
|
300
|
+
padding: 0px;
|
301
|
+
width: 100%;
|
302
|
+
/*
|
303
|
+
* IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
|
304
|
+
* So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
|
305
|
+
*/
|
306
|
+
_width: 99%;
|
307
|
+
overflow: auto;
|
308
|
+
resize: none;
|
309
|
+
}
|
310
|
+
|
311
|
+
.cke_skin_kama div.cke_dialog_ui_input_textarea
|
312
|
+
{
|
313
|
+
background-color: white;
|
314
|
+
border: 1px solid #a0a0a0;
|
315
|
+
padding: 1px 0px;
|
316
|
+
}
|
317
|
+
|
318
|
+
.cke_skin_kama div.cke_disabled .cke_dialog_ui_labeled_content *
|
319
|
+
{
|
320
|
+
background-color : #a0a0a0;
|
321
|
+
cursor : default;
|
322
|
+
}
|
323
|
+
|
324
|
+
/* RTL + IE6: Input overflows dialog element. (#7321) */
|
325
|
+
.cke_skin_kama .cke_rtl .cke_dialog_ui_labeled_content
|
326
|
+
{
|
327
|
+
_width: 95%;
|
328
|
+
}
|
329
|
+
|
330
|
+
.cke_skin_kama .cke_dialog_ui_hbox
|
331
|
+
{
|
332
|
+
width: 100%;
|
333
|
+
}
|
334
|
+
|
335
|
+
.cke_skin_kama .cke_dialog_ui_hbox_first,
|
336
|
+
.cke_skin_kama .cke_dialog_ui_hbox_child,
|
337
|
+
.cke_skin_kama .cke_dialog_ui_hbox_last
|
338
|
+
{
|
339
|
+
vertical-align: top;
|
340
|
+
}
|
341
|
+
|
342
|
+
.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_first,
|
343
|
+
.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_child
|
344
|
+
{
|
345
|
+
padding-right: 10px;
|
346
|
+
}
|
347
|
+
|
348
|
+
.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_first,
|
349
|
+
.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_child
|
350
|
+
{
|
351
|
+
padding-left: 10px;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* button */
|
355
|
+
|
356
|
+
.cke_skin_kama a.cke_dialog_ui_button
|
357
|
+
{
|
358
|
+
border-collapse: separate;
|
359
|
+
cursor: default;
|
360
|
+
|
361
|
+
-moz-border-radius: 5px;
|
362
|
+
-webkit-border-radius: 5px;
|
363
|
+
border-radius: 5px;
|
364
|
+
background: transparent url(images/sprites.png) repeat-x scroll 0 -1069px;
|
365
|
+
_background: none;
|
366
|
+
padding: 5px 0;
|
367
|
+
text-align: center;
|
368
|
+
}
|
369
|
+
|
370
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button
|
371
|
+
{
|
372
|
+
padding: 0;
|
373
|
+
}
|
374
|
+
|
375
|
+
/* IE6 buttons. */
|
376
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button span
|
377
|
+
{
|
378
|
+
width: 70px;
|
379
|
+
}
|
380
|
+
|
381
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,
|
382
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span
|
383
|
+
{
|
384
|
+
width: 100px;
|
385
|
+
}
|
386
|
+
|
387
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,
|
388
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,
|
389
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button span
|
390
|
+
{
|
391
|
+
padding: 5px 15px;
|
392
|
+
text-align: center;
|
393
|
+
color: #3b3b1f;
|
394
|
+
background: #53D9F0 none;
|
395
|
+
display: inline-block;
|
396
|
+
cursor: default;
|
397
|
+
}
|
398
|
+
/* END IE6 buttons. */
|
399
|
+
|
400
|
+
.cke_skin_kama .cke_browser_webkit a.cke_dialog_ui_button span.cke_dialog_ui_button
|
401
|
+
{
|
402
|
+
margin: 0;
|
403
|
+
}
|
404
|
+
.cke_skin_kama .cke_browser_webkit a.cke_dialog_ui_button
|
405
|
+
{
|
406
|
+
display:inline-block;
|
407
|
+
padding-top: 3px;
|
408
|
+
padding-bottom: 2px;
|
409
|
+
margin: 2px 0;
|
410
|
+
}
|
411
|
+
|
412
|
+
.cke_skin_kama a.cke_dialog_ui_button_ok span,
|
413
|
+
.cke_skin_kama a.cke_dialog_ui_button_cancel span
|
414
|
+
{
|
415
|
+
width:60px;
|
416
|
+
padding-right: 20px;
|
417
|
+
padding-left: 20px;
|
418
|
+
}
|
419
|
+
|
420
|
+
.cke_skin_kama a.cke_dialog_ui_button_ok
|
421
|
+
{
|
422
|
+
background-position: 0 -1143px;
|
423
|
+
}
|
424
|
+
|
425
|
+
.cke_skin_kama a.cke_dialog_ui_button_ok span
|
426
|
+
{
|
427
|
+
background: transparent url(images/sprites.png) no-repeat scroll right -1219px;
|
428
|
+
}
|
429
|
+
|
430
|
+
.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_ok span
|
431
|
+
{
|
432
|
+
background-position: left -1219px;
|
433
|
+
}
|
434
|
+
|
435
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,
|
436
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span
|
437
|
+
{
|
438
|
+
background-color: #B8E834;
|
439
|
+
margin-right: 0;
|
440
|
+
}
|
441
|
+
|
442
|
+
.cke_skin_kama a.cke_dialog_ui_button_cancel
|
443
|
+
{
|
444
|
+
background-position: 0 -1104px;
|
445
|
+
}
|
446
|
+
|
447
|
+
.cke_skin_kama a.cke_dialog_ui_button_cancel span
|
448
|
+
{
|
449
|
+
background: transparent url(images/sprites.png) no-repeat scroll right -1245px;
|
450
|
+
}
|
451
|
+
|
452
|
+
.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_cancel span
|
453
|
+
{
|
454
|
+
background-position: left -1245px;
|
455
|
+
}
|
456
|
+
|
457
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,
|
458
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span
|
459
|
+
{
|
460
|
+
background-color: #F65D20;
|
461
|
+
}
|
462
|
+
|
463
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,
|
464
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span,
|
465
|
+
.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,
|
466
|
+
.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span
|
467
|
+
{
|
468
|
+
background-image: none;
|
469
|
+
}
|
470
|
+
|
471
|
+
.cke_skin_kama span.cke_dialog_ui_button
|
472
|
+
{
|
473
|
+
padding: 2px 10px;
|
474
|
+
text-align: center;
|
475
|
+
color: #222;
|
476
|
+
display: inline-block;
|
477
|
+
cursor: default;
|
478
|
+
min-width: 60px;
|
479
|
+
}
|
480
|
+
|
481
|
+
/* Gecko 1.8 does not support display: inline-block */
|
482
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
|
483
|
+
{
|
484
|
+
display: block;
|
485
|
+
}
|
486
|
+
|
487
|
+
.cke_skin_kama a.cke_dialog_ui_button span.cke_disabled
|
488
|
+
{
|
489
|
+
border: #898980 1px solid;
|
490
|
+
color: #5e5e55;
|
491
|
+
background-color: #c5c5b3;
|
492
|
+
}
|
493
|
+
|
494
|
+
.cke_skin_kama a:hover.cke_dialog_ui_button,
|
495
|
+
.cke_skin_kama a:focus.cke_dialog_ui_button,
|
496
|
+
.cke_skin_kama a:active.cke_dialog_ui_button
|
497
|
+
{
|
498
|
+
background-position: 0 -1179px;
|
499
|
+
}
|
500
|
+
|
501
|
+
.cke_skin_kama .cke_hc a:hover.cke_dialog_ui_button,
|
502
|
+
.cke_skin_kama .cke_hc a:focus.cke_dialog_ui_button,
|
503
|
+
.cke_skin_kama .cke_hc a:active.cke_dialog_ui_button
|
504
|
+
{
|
505
|
+
border-width: 2px;
|
506
|
+
}
|
507
|
+
|
508
|
+
/* Skip hover effect on IE6 */
|
509
|
+
.cke_skin_kama .cke_browser_iequirks a:hover.cke_dialog_ui_button span,
|
510
|
+
.cke_skin_kama .cke_browser_iequirks a:focus.cke_dialog_ui_button span,
|
511
|
+
.cke_skin_kama .cke_browser_iequirks a:active.cke_dialog_ui_button span,
|
512
|
+
.cke_skin_kama .cke_browser_ie6 a:hover.cke_dialog_ui_button span,
|
513
|
+
.cke_skin_kama .cke_browser_ie6 a:focus.cke_dialog_ui_button span,
|
514
|
+
.cke_skin_kama .cke_browser_ie6 a:active.cke_dialog_ui_button span
|
515
|
+
{
|
516
|
+
background-image: none;
|
517
|
+
background: #F7A922;
|
518
|
+
}
|
519
|
+
|
520
|
+
.cke_skin_kama .cke_dialog_footer_buttons
|
521
|
+
{
|
522
|
+
display: inline-table;
|
523
|
+
margin-right: 12px;
|
524
|
+
margin-left: 12px;
|
525
|
+
width: auto;
|
526
|
+
position: relative;
|
527
|
+
}
|
528
|
+
|
529
|
+
/* IE7 needs position static #6806 */
|
530
|
+
.cke_skin_kama .cke_browser_ie7 .cke_dialog_footer_buttons
|
531
|
+
{
|
532
|
+
position: static;
|
533
|
+
}
|
534
|
+
|
535
|
+
/* Gecko 1.8 does not support for display: inline-table */
|
536
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons
|
537
|
+
{
|
538
|
+
display: inline;
|
539
|
+
}
|
540
|
+
|
541
|
+
.cke_skin_kama .cke_dialog_footer_buttons span.cke_dialog_ui_button
|
542
|
+
{
|
543
|
+
margin: 7px 0;
|
544
|
+
text-align: center;
|
545
|
+
}
|
546
|
+
|
547
|
+
/* Firefox2 buttons */
|
548
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons a.cke_dialog_ui_button
|
549
|
+
{
|
550
|
+
display: block;
|
551
|
+
padding: 0;
|
552
|
+
}
|
553
|
+
|
554
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
|
555
|
+
{
|
556
|
+
padding-bottom: 5px;
|
557
|
+
padding-top: 6px;
|
558
|
+
margin-bottom: 0;
|
559
|
+
}
|
560
|
+
|
561
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons .cke_dialog_ui_button_ok .cke_dialog_ui_button
|
562
|
+
{
|
563
|
+
background-position: right -1214px;
|
564
|
+
}
|
565
|
+
|
566
|
+
.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons .cke_dialog_ui_button_cancel .cke_dialog_ui_button
|
567
|
+
{
|
568
|
+
background-position: right -1242px;
|
569
|
+
}
|
570
|
+
/* END Firefox2 buttons */
|
571
|
+
|
572
|
+
.cke_skin_kama .cke_browser_ie9.cke_rtl .cke_dialog_footer_buttons td
|
573
|
+
{
|
574
|
+
padding-left: 2px;
|
575
|
+
}
|
576
|
+
|
577
|
+
.cke_skin_kama strong
|
578
|
+
{
|
579
|
+
font-weight: bold;
|
580
|
+
}
|
581
|
+
|
582
|
+
/* close_button */
|
583
|
+
|
584
|
+
.cke_skin_kama .cke_dialog .cke_dialog_body .cke_dialog_close_button
|
585
|
+
{
|
586
|
+
background-image: url(images/sprites.png);
|
587
|
+
background-repeat: no-repeat;
|
588
|
+
background-position: 0 -1022px;
|
589
|
+
position: absolute;
|
590
|
+
cursor: pointer;
|
591
|
+
text-align: center;
|
592
|
+
height: 20px;
|
593
|
+
width: 20px;
|
594
|
+
top: 5px;
|
595
|
+
/* IE 6 */
|
596
|
+
_background-image: url(images/sprites_ie6.png);
|
597
|
+
}
|
598
|
+
|
599
|
+
.cke_skin_kama .cke_dialog_close_button span
|
600
|
+
{
|
601
|
+
display: none;
|
602
|
+
}
|
603
|
+
|
604
|
+
.cke_skin_kama .cke_dialog_close_button:hover
|
605
|
+
{
|
606
|
+
background-position: 0 -1045px;
|
607
|
+
}
|
608
|
+
|
609
|
+
.cke_skin_kama .cke_ltr .cke_dialog_close_button
|
610
|
+
{
|
611
|
+
right: 10px;
|
612
|
+
}
|
613
|
+
|
614
|
+
.cke_skin_kama .cke_browser_ie8.cke_rtl .cke_dialog_close_button
|
615
|
+
{
|
616
|
+
left: 8px;
|
617
|
+
}
|
618
|
+
|
619
|
+
.cke_skin_kama .cke_rtl .cke_dialog_close_button
|
620
|
+
{
|
621
|
+
left: 10px;
|
622
|
+
}
|
623
|
+
|
624
|
+
.cke_skin_kama .cke_browser_ie7.cke_rtl .cke_dialog_close_button
|
625
|
+
{
|
626
|
+
left: 16px;
|
627
|
+
top: 0;
|
628
|
+
}
|
629
|
+
|
630
|
+
/*.cke_skin_kama .cke_browser_ie6.cke_rtl .cke_dialog_close_button
|
631
|
+
{
|
632
|
+
left: 16px;
|
633
|
+
}*/
|
634
|
+
|
635
|
+
/* IE7 + IE quirks */
|
636
|
+
.cke_skin_kama .cke_browser_ie7.cke_rtl .cke_dialog_close_button
|
637
|
+
{
|
638
|
+
position: absolute;
|
639
|
+
left: 10px;
|
640
|
+
top: 5px;
|
641
|
+
}
|
642
|
+
|
643
|
+
/* IE7 + IE quirks */
|
644
|
+
.cke_skin_kama .cke_browser_ie7.cke_single_page .cke_dialog_footer
|
645
|
+
{
|
646
|
+
margin-top: 22px;
|
647
|
+
}
|
648
|
+
|
649
|
+
.cke_skin_kama .cke_browser_ie6 .cke_dialog_close_button,
|
650
|
+
.cke_skin_kama .cke_browser_iequirks .cke_dialog_close_button
|
651
|
+
{
|
652
|
+
top: 7px;
|
653
|
+
}
|
654
|
+
|
655
|
+
/* IE7 + IE quirks */
|
656
|
+
.cke_skin_kama .cke_browser_ie7.cke_ltr .cke_dialog_close_button
|
657
|
+
{
|
658
|
+
margin-top: 0;
|
659
|
+
}
|
660
|
+
|
661
|
+
.cke_skin_kama .cke_dialog_ui_input_select
|
662
|
+
{
|
663
|
+
border: 1px solid #a0a0a0;
|
664
|
+
background-color: white;
|
665
|
+
}
|
666
|
+
|
667
|
+
.cke_skin_kama .cke_dialog_ui_input_file
|
668
|
+
{
|
669
|
+
width: 100%;
|
670
|
+
height: 25px;
|
671
|
+
}
|
672
|
+
|
673
|
+
/*
|
674
|
+
* Some utility CSS classes for dialog authors.
|
675
|
+
*/
|
676
|
+
.cke_skin_kama .cke_dialog .cke_dark_background
|
677
|
+
{
|
678
|
+
background-color: #eaead1;
|
679
|
+
}
|
680
|
+
|
681
|
+
.cke_skin_kama .cke_dialog .cke_hand
|
682
|
+
{
|
683
|
+
cursor: pointer;
|
684
|
+
}
|
685
|
+
|
686
|
+
.cke_skin_kama .cke_dialog .cke_centered
|
687
|
+
{
|
688
|
+
text-align: center;
|
689
|
+
}
|
690
|
+
|
691
|
+
.cke_skin_kama .cke_dialog a.cke_btn_reset
|
692
|
+
{
|
693
|
+
float: right;
|
694
|
+
background-position: 0 -32px;
|
695
|
+
background-image: url(images/mini.gif);
|
696
|
+
width: 16px;
|
697
|
+
height: 16px;
|
698
|
+
background-repeat: no-repeat;
|
699
|
+
border: 1px none;
|
700
|
+
font-size: 1px;
|
701
|
+
}
|
702
|
+
|
703
|
+
.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_reset
|
704
|
+
{
|
705
|
+
float: left;
|
706
|
+
}
|
707
|
+
|
708
|
+
.cke_skin_kama .cke_dialog a.cke_btn_locked,
|
709
|
+
.cke_skin_kama .cke_dialog a.cke_btn_unlocked
|
710
|
+
{
|
711
|
+
float: left;
|
712
|
+
background-position: 0 0;
|
713
|
+
background-image: url(images/mini.gif);
|
714
|
+
width: 16px;
|
715
|
+
height: 16px;
|
716
|
+
background-repeat: no-repeat;
|
717
|
+
border: none 1px;
|
718
|
+
font-size: 1px;
|
719
|
+
}
|
720
|
+
.cke_skin_kama .cke_dialog a.cke_btn_locked .cke_icon
|
721
|
+
{
|
722
|
+
display:none;
|
723
|
+
}
|
724
|
+
|
725
|
+
.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_locked,
|
726
|
+
.cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_unlocked
|
727
|
+
{
|
728
|
+
float: right;
|
729
|
+
}
|
730
|
+
|
731
|
+
.cke_skin_kama .cke_dialog a.cke_btn_unlocked
|
732
|
+
{
|
733
|
+
background-position: 0 -16px;
|
734
|
+
background-image: url(images/mini.gif);
|
735
|
+
}
|
736
|
+
|
737
|
+
.cke_skin_kama .cke_dialog .cke_btn_over
|
738
|
+
{
|
739
|
+
border: outset 1px;
|
740
|
+
cursor: pointer;
|
741
|
+
}
|
742
|
+
|
743
|
+
.cke_skin_kama .cke_dialog .ImagePreviewBox
|
744
|
+
{
|
745
|
+
border : 2px ridge black;
|
746
|
+
overflow : scroll;
|
747
|
+
height : 200px;
|
748
|
+
width : 300px;
|
749
|
+
padding : 2px;
|
750
|
+
background-color : white;
|
751
|
+
}
|
752
|
+
|
753
|
+
.cke_skin_kama .cke_dialog .ImagePreviewBox table td {
|
754
|
+
white-space: normal;
|
755
|
+
}
|
756
|
+
|
757
|
+
/* Fix iframedialog's height doesn't stretch to 100% #4863.*/
|
758
|
+
.cke_skin_kama .cke_browser_iequirks .cke_dialog_page_contents
|
759
|
+
{
|
760
|
+
_position: absolute;
|
761
|
+
}
|
762
|
+
|
763
|
+
.cke_skin_kama .cke_dialog .ImagePreviewLoader
|
764
|
+
{
|
765
|
+
position: absolute;
|
766
|
+
white-space : normal;
|
767
|
+
overflow : hidden;
|
768
|
+
height : 160px;
|
769
|
+
width : 230px;
|
770
|
+
margin : 2px;
|
771
|
+
padding : 2px;
|
772
|
+
opacity : 0.9;
|
773
|
+
filter : alpha(opacity=90);
|
774
|
+
|
775
|
+
background-color : #e4e4e4;
|
776
|
+
}
|
777
|
+
|
778
|
+
.cke_skin_kama .cke_dialog .FlashPreviewBox
|
779
|
+
{
|
780
|
+
white-space : normal;
|
781
|
+
border : 2px ridge black;
|
782
|
+
overflow : auto;
|
783
|
+
height : 160px;
|
784
|
+
width : 390px;
|
785
|
+
padding : 2px;
|
786
|
+
background-color : white;
|
787
|
+
}
|
788
|
+
|
789
|
+
.cke_skin_kama .cke_dialog .cke_pastetext
|
790
|
+
{
|
791
|
+
width: 346px;
|
792
|
+
height: 170px;
|
793
|
+
}
|
794
|
+
|
795
|
+
.cke_skin_kama .cke_dialog .cke_pastetext textarea
|
796
|
+
{
|
797
|
+
width: 340px;
|
798
|
+
height: 170px;
|
799
|
+
resize: none;
|
800
|
+
}
|
801
|
+
|
802
|
+
.cke_skin_kama .cke_dialog iframe.cke_pasteframe
|
803
|
+
{
|
804
|
+
width: 346px;
|
805
|
+
height: 130px;
|
806
|
+
background-color: white;
|
807
|
+
border: 1px solid black;
|
808
|
+
}
|
809
|
+
|
810
|
+
.cke_skin_kama .cke_dialog .cke_dark_background
|
811
|
+
{
|
812
|
+
text-align : center;
|
813
|
+
background-color: #eaead1;
|
814
|
+
font-size : 14px;
|
815
|
+
}
|
816
|
+
|
817
|
+
.cke_skin_kama .cke_dialog .cke_light_background
|
818
|
+
{
|
819
|
+
text-align : center;
|
820
|
+
background-color: #ffffbe;
|
821
|
+
}
|
822
|
+
|
823
|
+
.cke_skin_kama .cke_dialog .cke_hand
|
824
|
+
{
|
825
|
+
cursor: pointer;
|
826
|
+
}
|
827
|
+
|
828
|
+
.cke_skin_kama .cke_disabled
|
829
|
+
{
|
830
|
+
color: #a0a0a0;
|
831
|
+
}
|
832
|
+
|
833
|
+
/* High Contrast Mode */
|
834
|
+
|
835
|
+
.cke_skin_kama .cke_hc .cke_dialog_title,
|
836
|
+
.cke_skin_kama .cke_hc .cke_dialog_tabs,
|
837
|
+
.cke_skin_kama .cke_hc .cke_dialog_contents,
|
838
|
+
.cke_skin_kama .cke_hc .cke_dialog_footer
|
839
|
+
{
|
840
|
+
border-left: 1px solid;
|
841
|
+
border-right: 1px solid;
|
842
|
+
}
|
843
|
+
|
844
|
+
.cke_skin_kama .cke_hc .cke_dialog_title
|
845
|
+
{
|
846
|
+
border-top: 1px solid;
|
847
|
+
}
|
848
|
+
|
849
|
+
.cke_skin_kama .cke_hc .cke_dialog_footer
|
850
|
+
{
|
851
|
+
border-bottom: 1px solid;
|
852
|
+
}
|
853
|
+
|
854
|
+
.cke_skin_kama .cke_hc .cke_dialog_close_button span
|
855
|
+
{
|
856
|
+
display: inline;
|
857
|
+
cursor: pointer;
|
858
|
+
font-weight: bold;
|
859
|
+
position: relative;
|
860
|
+
top: 3px;
|
861
|
+
}
|
862
|
+
|
863
|
+
.cke_skin_kama .cke_dialog_body .cke_label
|
864
|
+
{
|
865
|
+
display: none;
|
866
|
+
}
|
867
|
+
|
868
|
+
.cke_skin_kama .cke_dialog_body label.cke_required
|
869
|
+
{
|
870
|
+
font-weight: bold;
|
871
|
+
}
|
872
|
+
|
873
|
+
.cke_skin_kama .cke_hc .cke_dialog_body .cke_label
|
874
|
+
{
|
875
|
+
display: inline;
|
876
|
+
cursor: inherit;
|
877
|
+
}
|
878
|
+
|
879
|
+
.cke_skin_kama .cke_hc a.cke_btn_locked,
|
880
|
+
.cke_skin_kama .cke_hc a.cke_btn_unlocked,
|
881
|
+
.cke_skin_kama .cke_hc a.cke_btn_reset
|
882
|
+
{
|
883
|
+
border-style: solid;
|
884
|
+
float: left;
|
885
|
+
width: auto;
|
886
|
+
height: auto;
|
887
|
+
padding: 0 2px;
|
888
|
+
}
|
889
|
+
|
890
|
+
.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_locked,
|
891
|
+
.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_unlocked,
|
892
|
+
.cke_skin_kama .cke_rtl.cke_hc a.cke_btn_reset
|
893
|
+
{
|
894
|
+
float: right;
|
895
|
+
}
|
896
|
+
.cke_skin_kama .cke_hc a.cke_btn_locked .cke_icon
|
897
|
+
{
|
898
|
+
display:inline;
|
899
|
+
}
|
900
|
+
|
901
|
+
.cke_skin_kama a.cke_smile img
|
902
|
+
{
|
903
|
+
/* IE6 does not support transparent borders */
|
904
|
+
border: 2px solid #eaead1;
|
905
|
+
}
|
906
|
+
|
907
|
+
.cke_skin_kama a.cke_smile:focus img,
|
908
|
+
.cke_skin_kama a.cke_smile:active img,
|
909
|
+
.cke_skin_kama a.cke_smile:hover img
|
910
|
+
{
|
911
|
+
border-color: #C7C78F;
|
912
|
+
}
|
913
|
+
|
914
|
+
.cke_skin_kama .cke_hc .cke_dialog_tabs a,
|
915
|
+
.cke_skin_kama .cke_hc .cke_dialog_footer a
|
916
|
+
{
|
917
|
+
opacity: 1.0;
|
918
|
+
filter: alpha(opacity=100);
|
919
|
+
border: 1px solid white;
|
920
|
+
}
|
921
|
+
|
922
|
+
.cke_skin_kama .cke_hc .ImagePreviewBox
|
923
|
+
{
|
924
|
+
width: 260px;
|
925
|
+
}
|
926
|
+
|
927
|
+
/**
|
928
|
+
* Styles specific to "cellProperties" dialog.
|
929
|
+
*/
|
930
|
+
|
931
|
+
.cke_skin_kama .cke_dialog_contents a.colorChooser
|
932
|
+
{
|
933
|
+
display:block;
|
934
|
+
margin-top:6px;
|
935
|
+
margin-left: 10px;
|
936
|
+
width: 80px;
|
937
|
+
}
|
938
|
+
|
939
|
+
.cke_skin_kama .cke_rtl .cke_dialog_contents a.colorChooser
|
940
|
+
{
|
941
|
+
margin-right: 10px;
|
942
|
+
}
|
943
|
+
|
944
|
+
/* Compensate focus outline for some input elements. (#6200) */
|
945
|
+
.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,
|
946
|
+
.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_radio_input:focus,
|
947
|
+
.cke_skin_kama .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,
|
948
|
+
.cke_skin_kama .cke_browser_opera .cke_dialog_ui_radio_input:focus,
|
949
|
+
.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_input_select:focus,
|
950
|
+
.cke_skin_kama .cke_browser_gecko .cke_btn_over,
|
951
|
+
.cke_skin_kama .cke_browser_opera .cke_btn_over,
|
952
|
+
.cke_skin_kama .cke_browser_ie .cke_btn_over
|
953
|
+
{
|
954
|
+
outline: 1px dotted #696969;
|
955
|
+
}
|
956
|
+
|
957
|
+
/* IE<8 instead doesn't support CSS outline property, emulated with dotted border. */
|
958
|
+
|
959
|
+
/* Predefined border to avoid visual size change impact. */
|
960
|
+
.cke_skin_kama .cke_browser_ie .cke_dialog_ui_checkbox_input,
|
961
|
+
.cke_skin_kama .cke_browser_ie .cke_dialog_ui_ratio_input,
|
962
|
+
.cke_skin_kama .cke_browser_ie .cke_btn_reset,
|
963
|
+
.cke_skin_kama .cke_browser_ie .cke_btn_locked,
|
964
|
+
.cke_skin_kama .cke_browser_ie .cke_btn_unlocked
|
965
|
+
{
|
966
|
+
*border: 1px solid transparent !important;
|
967
|
+
/* Emulating border-color: transparent in IE6.*/
|
968
|
+
-border: 1px solid red !important;
|
969
|
+
-filter: chroma(color=red);
|
970
|
+
}
|
971
|
+
|
972
|
+
.cke_skin_kama .cke_browser_ie .cke_dialog_ui_focused,
|
973
|
+
.cke_skin_kama .cke_browser_ie .cke_btn_over
|
974
|
+
{
|
975
|
+
*border: 1px dotted #696969 !important;
|
976
|
+
}
|
977
|
+
|
978
|
+
.cke_skin_kama .cke_iframe_shim
|
979
|
+
{
|
980
|
+
display:block;
|
981
|
+
position:absolute;
|
982
|
+
top:0;
|
983
|
+
left:0;
|
984
|
+
z-index:-1;
|
985
|
+
filter:alpha(opacity=0);
|
986
|
+
width:100%;
|
987
|
+
height:100%;
|
988
|
+
}
|