summaryrefslogtreecommitdiff
path: root/_source/skins/office2003
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2012-06-10 19:03:48 +0100
committerlsces <lester@lsces.co.uk>2012-06-10 19:03:48 +0100
commitf3ce03a71d3dd1c7dcbe474197fb1588949735db (patch)
tree7c31cd62ef0e2790966f96498e553f22fa4e08d3 /_source/skins/office2003
parent23b8cf2a890c7de389616702fd23c9c465311a59 (diff)
downloadckeditor-f3ce03a71d3dd1c7dcbe474197fb1588949735db.tar.gz
ckeditor-f3ce03a71d3dd1c7dcbe474197fb1588949735db.tar.bz2
ckeditor-f3ce03a71d3dd1c7dcbe474197fb1588949735db.zip
Update to CKEditor version 3.6.3
Diffstat (limited to '_source/skins/office2003')
-rw-r--r--_source/skins/office2003/dialog.css1629
-rw-r--r--_source/skins/office2003/editor.css50
-rw-r--r--_source/skins/office2003/elementspath.css3
-rw-r--r--_source/skins/office2003/icons.css687
-rw-r--r--_source/skins/office2003/icons.pngbin4365 -> 5598 bytes
-rw-r--r--_source/skins/office2003/icons_rtl.pngbin0 -> 5600 bytes
-rw-r--r--_source/skins/office2003/mainui.css298
-rw-r--r--_source/skins/office2003/menu.css423
-rw-r--r--_source/skins/office2003/panel.css45
-rw-r--r--_source/skins/office2003/presets.css98
-rw-r--r--_source/skins/office2003/reset.css163
-rw-r--r--_source/skins/office2003/richcombo.css60
-rw-r--r--_source/skins/office2003/skin.js155
-rw-r--r--_source/skins/office2003/templates.css174
-rw-r--r--_source/skins/office2003/toolbar.css985
15 files changed, 2543 insertions, 2227 deletions
diff --git a/_source/skins/office2003/dialog.css b/_source/skins/office2003/dialog.css
index 7972f52..41e54f9 100644
--- a/_source/skins/office2003/dialog.css
+++ b/_source/skins/office2003/dialog.css
@@ -1,738 +1,891 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-/* Restore the dialog visibility */
-body .cke_dialog
-{
- visibility: visible;
-}
-
-/* Force Gecko to consider table as positioned */
-.cke_skin_office2003 table.cke_dialog.cke_browser_gecko
-{
- display:block;
-}
-
-.cke_skin_office2003 .cke_dialog_body
-{
- margin-left: 16px;
- margin-right: 16px;
- margin-top: 2px;
- margin-bottom: 20px;
- z-index: 1;
-
- /* 'cke_dialog' element has been fixed positioned in all but IE6, while we
- need it to be positioned to hold e.g. close button. */
- position: relative;
- _position: static;
-}
-
-.cke_skin_office2003 .cke_dialog_tl,
-.cke_skin_office2003 .cke_dialog_tr,
-.cke_skin_office2003 .cke_dialog_tc,
-.cke_skin_office2003 .cke_dialog_bl,
-.cke_skin_office2003 .cke_dialog_br,
-.cke_skin_office2003 .cke_dialog_bc
-{
- background-image: url(images/sprites.png);
- background-repeat: no-repeat;
- position: absolute;
-
- /* IE6 does not support full color transparent PNG. */
- _background-image: url(images/sprites_ie6.png);
- /* Dialog corner parts require a negative z-index to avoid covering dialog body. (#4954) */
- _z-index: -1;
-}
-
-.cke_skin_office2003 .cke_dialog_tl
-{
- background-position: -16px -16px;
- height: 16px;
- width: 16px;
- top: 0;
- left: 0;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_tl
-{
- background-position: -16px -397px;
-}
-
-.cke_skin_office2003 .cke_dialog_tr
-{
- background-position: -16px -76px;
- height: 16px;
- width: 16px;
- top: 0;
- right: 0;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_tr
-{
- background-position: -16px -457px;
-}
-
-.cke_skin_office2003 .cke_dialog_tc
-{
- background-position: 0 -136px;
- background-repeat: repeat-x;
- height: 16px;
- top: 0;
- left: 16px;
- right: 16px;
-}
-
-.cke_skin_office2003 .cke_dialog_bl
-{
- background-position: -16px -196px;
- height: 51px;
- width: 30px;
- bottom: 0;
- left: 0;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_bl
-{
- background-position: -16px -517px;
-}
-
-.cke_skin_office2003 .cke_dialog_br
-{
- background-position: -16px -263px;
- height: 51px;
- width: 30px;
- bottom: 0;
- right: 0;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_br
-{
- background-position: -16px -584px;
-}
-
-.cke_skin_office2003 .cke_dialog_bc
-{
- background-position: 0 -330px;
- background-repeat: repeat-x;
- height: 51px;
- bottom: 0;
- left: 30px;
- right: 30px;
-}
-
-.cke_skin_office2003 .cke_dialog_ml,
-.cke_skin_office2003 .cke_dialog_mr
-{
- background-image: url(images/dialog_sides.png);
- background-repeat: repeat-y;
- position: absolute;
- width: 16px;
- top: 16px;
- bottom: 51px;
-
- /* IE6 does not support full color transparent PNG. */
- _background-image: url(images/dialog_sides.gif);
-
- /* IE quirks gets confused when we have both top and bottom. */
- _top: auto;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_ml,
-.cke_skin_office2003 .cke_rtl .cke_dialog_mr
-{
- background-image: url(images/dialog_sides_rtl.png);
-
- /* IE6 does not support full color transparent PNG. */
- _background-image: url(images/dialog_sides.gif);
-}
-
-.cke_skin_office2003 .cke_dialog_ml
-{
- background-position: 0 0;
- left: 0;
-}
-
-.cke_skin_office2003 .cke_dialog_mr
-{
- background-position: -16px 0;
- right: 0;
-}
-
-.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,
-.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr
-{
- margin-top: 3px;
-}
-
-.cke_skin_office2003 .cke_dialog_title
-{
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 0 -678px;
- background-repeat: repeat-x;
- font-weight: bold;
- font-size: 14pt;
- color: #0E3460;
- background-color: #8db1ff;
- padding: 3px 10px 26px 10px;
- cursor: move;
- position: relative;
-}
-
-.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title
-{
- position: static !important;
- unicode-bidi: bidi-override;
-}
-
-.cke_skin_office2003 .cke_dialog_contents
-{
- background-color: #f7f8fd;
- border: #2b66c9 1px solid;
- overflow: auto;
- padding: 5px 10px;
-}
-
-.cke_skin_office2003 .cke_dialog_footer
-{
- background-color: #8db1ff;
- text-align: right;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_footer
-{
- text-align: left;
-}
-
-/* tabs */
-
-.cke_skin_office2003 .cke_dialog_tabs
-{
- height: 23px;
- background-color: #8db1ff;
- display: inline-block;
- margin-left:10px;
- margin-right:10px;
- margin-top:-23px;
- position: absolute;
- z-index: 2;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_tabs
-{
- right: 10px;
-}
-
-.cke_skin_office2003 a.cke_dialog_tab,
-.cke_skin_office2003 a:link.cke_dialog_tab,
-.cke_skin_office2003 a:active.cke_dialog_tab,
-.cke_skin_office2003 a:hover.cke_dialog_tab,
-.cke_skin_office2003 a:visited.cke_dialog_tab
-{
- color: #0E3460;
- border-left: 1px solid #2b66c9;
- border-right: 1px solid #2b66c9;
- border-top: 1px solid #2b66c9;
- height: 14px;
- padding: 4px 5px;
- display: inline-block;
- cursor: pointer;
-}
-
-/* Gecko 1.8 layout workaround. */
-.cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,
-.cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,
-.cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,
-.cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,
-.cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab
-{
- display: inline;
- position: relative;
- top: 6px;
-}
-
-.cke_skin_office2003 a:hover.cke_dialog_tab
-{
- background-color: #f7f8fd;
-}
-.cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab
-{
- padding: 2px 3px !important;
- border-width: 3px;
-}
-
-.cke_skin_office2003 a.cke_dialog_tab_selected,
-.cke_skin_office2003 a:link.cke_dialog_tab_selected,
-.cke_skin_office2003 a:active.cke_dialog_tab_selected,
-.cke_skin_office2003 a:hover.cke_dialog_tab_selected,
-.cke_skin_office2003 a:visited.cke_dialog_tab_selected
-{
- border-bottom: 1px solid #f7f8fd;
- background-color: #f7f8fd;
- font-weight: bold;
- cursor: default;
-}
-.cke_skin_office2003 .cke_hc a.cke_dialog_tab_selected,
-.cke_skin_office2003 .cke_hc a:link.cke_dialog_tab_selected,
-.cke_skin_office2003 .cke_hc a:active.cke_dialog_tab_selected,
-.cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab_selected,
-.cke_skin_office2003 .cke_hc a:visited.cke_dialog_tab_selected
-{
- padding: 2px 3px !important;
- border-width: 3px;
-}
-
-/* single_page */
-
-.cke_skin_office2003 .cke_single_page .cke_dialog_tabs
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_hc .cke_dialog_tabs a,
-.cke_skin_office2003 .cke_hc .cke_dialog_footer a
-{
- opacity: 1.0;
- filter: alpha(opacity=100);
- border: 1px solid white;
-}
-
-.cke_skin_office2003 .cke_single_page .cke_dialog_title
-{
- padding-bottom: 3px;
-}
-
-.cke_skin_office2003 .cke_dialog_ui_vbox table,
-.cke_skin_office2003 .cke_dialog_ui_hbox table
-{
- margin: auto;
-}
-
-.cke_skin_office2003 .cke_dialog_ui_vbox_child
-{
- padding: 5px 0px;
-}
-
-.cke_skin_office2003 input.cke_dialog_ui_input_text,
-.cke_skin_office2003 input.cke_dialog_ui_input_password
-{
- background-color: white;
- border: none;
- padding: 0px;
- width: 100%;
- height: 14px;
-}
-
-.cke_skin_office2003 div.cke_dialog_ui_input_text,
-.cke_skin_office2003 div.cke_dialog_ui_input_password
-{
- background-color: white;
- border: 1px solid #a0a0a0;
- padding: 1px 0px;
-}
-
-.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,
-.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password
-{
- border-width: 0px;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,
-.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password
-{
- border-width: 1px;
-}
-
-.cke_skin_office2003 textarea.cke_dialog_ui_input_textarea
-{
- background-color: white;
- border: none;
- padding: 0px;
- width: 100%;
- /*
- * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
- * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
- */
- _width: 99%;
- overflow: auto;
- resize: none;
-}
-
-.cke_skin_office2003 div.cke_dialog_ui_input_textarea
-{
- background-color: white;
- border: 1px solid #a0a0a0;
- padding: 1px 0px;
-}
-
-.cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *
-{
- background-color : #a0a0a0;
- cursor : default;
-}
-
-.cke_skin_office2003 .cke_dialog_ui_hbox
-{
- width: 100%;
-}
-
-.cke_skin_office2003 .cke_dialog_ui_hbox_first,
-.cke_skin_office2003 .cke_dialog_ui_hbox_child,
-.cke_skin_office2003 .cke_dialog_ui_hbox_last
-{
- vertical-align: top;
-}
-
-.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,
-.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child
-{
- padding-right: 10px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,
-.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child
-{
- padding-left: 10px;
-}
-
-/* button */
-
-.cke_skin_office2003 a.cke_dialog_ui_button
-{
- border-collapse: separate;
- cursor: default;
-}
-
-.cke_skin_office2003 span.cke_dialog_ui_button
-{
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 0 -678px;
- background-repeat: repeat-x;
- border: #0E3460 1px solid;
- padding: 2px 10px;
- text-align: center;
- color: #0E3460;
- background-color: #8db1ff;
- display: inline-block;
- cursor: default;
-}
-
-/* Gecko 1.8 does not support display: inline-block */
-.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
-{
- display: block;
-}
-
-.cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled
-{
- border: #898980 1px solid;
- color: #5e5e55;
- background-color: #c5c5b3;
-}
-
-.cke_skin_office2003 a:focus span.cke_dialog_ui_button,
-.cke_skin_office2003 a:active span.cke_dialog_ui_button
-{
- background-color: #8db1ff;
-}
-.cke_skin_office2003 .cke_hc a:focus span.cke_dialog_ui_button,
-.cke_skin_office2003 .cke_hc a:active span.cke_dialog_ui_button
-{
- border-width: 2px;
-}
-
-.cke_skin_office2003 .cke_dialog_footer_buttons
-{
- display: inline-table;
- margin-right: 12px;
- margin-left: 12px;
- width: auto;
- position: relative;
-}
-
-/* Gecko 1.8 does not support for display: inline-table */
-.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons
-{
- display: inline;
-}
-
-.cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button
-{
- width: 60px;
- margin: 7px 0;
-}
-
-.cke_skin_office2003 strong
-{
- font-weight: bold;
-}
-
-/* close_button */
-
-.cke_skin_office2003 a.cke_dialog_close_button,
-.cke_skin_office2003 a:hover.cke_dialog_close_button,
-.cke_skin_office2003 .cke_browser_ie6 a.cke_dialog_close_button,
-.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_dialog_close_button
-{
- background-image: url(images/sprites.png);
- background-repeat: no-repeat;
- background-position: -20px -655px;
- position: absolute;
- cursor: pointer;
- text-align: center;
- height: 21px;
- width: 21px;
- top: 4px;
-
- /* IE6 does not support full color transparent PNG. */
- _background-image: url(images/sprites_ie6.png);
-}
-
-.cke_skin_office2003 a.cke_dialog_close_button span
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_ltr a.cke_dialog_close_button
-{
- right: 10px;
- _right: 22px;
-}
-
-.cke_skin_office2003 .cke_rtl a.cke_dialog_close_button,
-.cke_skin_office2003 .cke_rtl a:hover.cke_dialog_close_button
-{
- left: 10px;
- _left: 16px;
- _top: 6px;
-}
-
-.cke_skin_office2003 .cke_browser_ie6.cke_rtl a.cke_dialog_close_button,
-.cke_skin_office2003 .cke_browser_ie6.cke_rtl a:hover.cke_dialog_close_button
-{
- position: relative;
- float: left;
- margin-top: -55px;
- margin-left: -7px;
-}
-
-.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a.cke_dialog_close_button,
-.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a:hover.cke_dialog_close_button
-{
- margin-top: -32px;
-}
-
-.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a.cke_dialog_close_button,
-.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a:hover.cke_dialog_close_button
-{
- margin-top: 0;
-}
-
-.cke_skin_office2003 .cke_dialog_ui_input_select
-{
- border: 1px solid #a0a0a0;
- background-color: white;
-}
-
-.cke_skin_office2003 iframe.cke_dialog_ui_input_file
-{
- width: 100%;
- height: 25px;
-}
-
-/*
- * Some utility CSS classes for dialog authors.
- */
-.cke_skin_office2003 .cke_dialog .cke_dark_background
-{
- background-color: #eaead1;
-}
-
-.cke_skin_office2003 .cke_dialog .cke_hand
-{
- cursor: pointer;
-}
-
-.cke_skin_office2003 .cke_dialog .cke_centered
-{
- text-align: center;
-}
-
-.cke_skin_office2003 .cke_dialog a.cke_btn_reset
-{
- float: right;
- background-position: 0 -32px;
- background-image: url(images/mini.gif);
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- border: 1px none;
- font-size: 1px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_reset
-{
- float: left;
-}
-
-.cke_skin_office2003 .cke_dialog a.cke_btn_locked,
-.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
-{
- float: left;
- background-position: 0 0;
- background-image: url(images/mini.gif);
- width: 16px;
- height: 16px;
- background-repeat: no-repeat;
- border: none 1px;
- font-size: 1px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_locked,
-.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_unlocked
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
-{
- background-position: 0 -16px;
- background-image: url(images/mini.gif);
-}
-
-.cke_skin_office2003 .cke_dialog .cke_btn_over
-{
- border: outset 1px;
- cursor: pointer;
- cursor: hand;
-}
-
-.cke_skin_office2003 .cke_dialog .ImagePreviewBox
-{
- border : 2px ridge black;
- overflow : scroll;
- height : 160px;
- width : 230px;
- padding : 2px;
- background-color : white;
-}
-
-.cke_skin_office2003 .cke_dialog .ImagePreviewBox table td {
- white-space: normal;
-}
-
-/* Fix iframedialog's height doesn't stretch to 100% #4863.*/
-.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_page_contents
-{
- _position: absolute;
-}
-
-.cke_skin_office2003 .cke_dialog .ImagePreviewLoader
-{
- position: absolute;
- white-space : normal;
- overflow : hidden;
- height : 160px;
- width : 230px;
- margin : 2px;
- padding : 2px;
- opacity : 0.9;
- filter : alpha(opacity=90);
-
- background-color : #e4e4e4;
-}
-
-.cke_skin_office2003 .cke_dialog .FlashPreviewBox
-{
- white-space : normal;
- border : 2px ridge black;
- overflow : auto;
- height : 160px;
- width : 390px;
- padding : 2px;
- background-color : white;
-}
-
-.cke_skin_office2003 .cke_dialog .cke_dark_background
-{
- text-align : center;
- background-color: #eaead1;
- font-size : 14px;
-}
-
-.cke_skin_office2003 .cke_dialog .cke_light_background
-{
- text-align : center;
- background-color: #ffffbe;
-}
-
-.cke_skin_office2003 .cke_dialog .cke_hand
-{
- cursor: pointer;
- cursor: hand;
-}
-
-.cke_skin_office2003 .cke_disabled
-{
- color: #a0a0a0;
-}
-
-/* High Contrast Mode */
-.cke_skin_office2003 .cke_hc .cke_dialog_title,
-.cke_skin_office2003 .cke_hc .cke_dialog_tabs,
-.cke_skin_office2003 .cke_hc .cke_dialog_contents,
-.cke_skin_office2003 .cke_hc .cke_dialog_footer
-{
- border-left: 1px solid;
- border-right: 1px solid;
-}
-
-.cke_skin_office2003 .cke_hc .cke_dialog_title
-{
- border-top: 1px solid;
-}
-
-.cke_skin_office2003 .cke_hc .cke_dialog_footer
-{
- border-bottom: 1px solid;
-}
-
-.cke_skin_office2003 .cke_hc .cke_dialog_close_button span
-{
- display: inline;
- cursor: pointer;
- cursor: hand;
- font-weight: bold;
- position: relative;
- top: 3px;
-}
-
-.cke_skin_office2003 .cke_dialog_body .cke_label
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label
-{
- display: inline;
-}
-
-.cke_skin_office2003 .cke_hc a.cke_btn_locked,
-.cke_skin_office2003 .cke_hc a.cke_btn_unlocked,
-.cke_skin_office2003 .cke_hc a.cke_btn_reset
-{
- border-style: solid;
- float: left;
- width: auto;
- height: auto;
-}
-
-.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_locked,
-.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_unlocked,
-.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_reset
-{
- float: right;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* Restore the dialog visibility */
+body .cke_dialog
+{
+ visibility: visible;
+}
+
+/* Force Gecko to consider table as positioned */
+.cke_skin_office2003 table.cke_dialog.cke_browser_gecko
+{
+ display:block;
+}
+
+.cke_skin_office2003 .cke_dialog_body
+{
+ margin-left: 16px;
+ margin-right: 16px;
+ margin-top: 2px;
+ margin-bottom: 20px;
+ z-index: 1;
+
+ /* 'cke_dialog' element has been fixed positioned in all but IE6, while we
+ need it to be positioned to hold e.g. close button. */
+ position: relative;
+ _position: static;
+}
+
+.cke_skin_office2003 .cke_dialog_tl,
+.cke_skin_office2003 .cke_dialog_tr,
+.cke_skin_office2003 .cke_dialog_tc,
+.cke_skin_office2003 .cke_dialog_bl,
+.cke_skin_office2003 .cke_dialog_br,
+.cke_skin_office2003 .cke_dialog_bc
+{
+ background-image: url(images/sprites.png);
+ background-repeat: no-repeat;
+ position: absolute;
+
+ /* IE6 does not support full color transparent PNG. */
+ _background-image: url(images/sprites_ie6.png);
+ /* Dialog corner parts require a negative z-index to avoid covering dialog body. (#4954) */
+ _z-index: -1;
+}
+
+.cke_skin_office2003 .cke_dialog_tl
+{
+ background-position: -16px -16px;
+ height: 16px;
+ width: 16px;
+ top: 0;
+ left: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tl
+{
+ background-position: -16px -397px;
+}
+
+.cke_skin_office2003 .cke_dialog_tr
+{
+ background-position: -16px -76px;
+ height: 16px;
+ width: 16px;
+ top: 0;
+ right: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tr
+{
+ background-position: -16px -457px;
+}
+
+.cke_skin_office2003 .cke_dialog_tc
+{
+ background-position: 0 -136px;
+ background-repeat: repeat-x;
+ height: 16px;
+ top: 0;
+ left: 16px;
+ right: 16px;
+}
+
+.cke_skin_office2003 .cke_dialog_bl
+{
+ background-position: -16px -196px;
+ height: 51px;
+ width: 30px;
+ bottom: 0;
+ left: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_bl
+{
+ background-position: -16px -517px;
+}
+
+.cke_skin_office2003 .cke_dialog_br
+{
+ background-position: -16px -263px;
+ height: 51px;
+ width: 30px;
+ bottom: 0;
+ right: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_br
+{
+ background-position: -16px -584px;
+}
+
+.cke_skin_office2003 .cke_dialog_bc
+{
+ background-position: 0 -330px;
+ background-repeat: repeat-x;
+ height: 51px;
+ bottom: 0;
+ left: 30px;
+ right: 30px;
+}
+
+.cke_skin_office2003 .cke_dialog_ml,
+.cke_skin_office2003 .cke_dialog_mr
+{
+ background-image: url(images/dialog_sides.png);
+ background-repeat: repeat-y;
+ position: absolute;
+ width: 16px;
+ top: 16px;
+ bottom: 51px;
+
+ /* IE6 does not support full color transparent PNG. */
+ _background-image: url(images/dialog_sides.gif);
+
+ /* IE quirks gets confused when we have both top and bottom. */
+ _top: auto;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_ml,
+.cke_skin_office2003 .cke_rtl .cke_dialog_mr
+{
+ background-image: url(images/dialog_sides_rtl.png);
+
+ /* IE6 does not support full color transparent PNG. */
+ _background-image: url(images/dialog_sides.gif);
+}
+
+.cke_skin_office2003 .cke_dialog_ml
+{
+ background-position: 0 0;
+ left: 0;
+}
+
+.cke_skin_office2003 .cke_dialog_mr
+{
+ background-position: -16px 0;
+ right: 0;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,
+.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr
+{
+ margin-top: 3px;
+}
+
+.cke_skin_office2003 .cke_dialog_title
+{
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 0 -678px;
+ background-repeat: repeat-x;
+ font-weight: bold;
+ font-size: 14pt;
+ color: #0E3460;
+ background-color: #8db1ff;
+ padding: 3px 10px 26px 10px;
+ cursor: move;
+ position: relative;
+}
+
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title
+{
+ position: static;
+}
+
+.cke_skin_office2003 .cke_dialog_contents
+{
+ background-color: #f7f8fd;
+ border: #2b66c9 1px solid;
+ overflow: auto;
+ padding: 5px 10px;
+}
+
+.cke_skin_office2003 .cke_dialog_footer
+{
+ background-color: #8db1ff;
+ text-align: right;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_footer
+{
+ text-align: left;
+}
+
+.cke_skin_office2003 .cke_dialog_footer .cke_resizer {
+ margin-top: 21px;
+}
+
+/* tabs */
+
+.cke_skin_office2003 .cke_dialog_tabs
+{
+ height: 23px;
+ background-color: #8db1ff;
+ display: inline-block;
+ margin-left:10px;
+ margin-right:10px;
+ margin-top:-23px;
+ position: absolute;
+ z-index: 2;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tabs
+{
+ right: 10px;
+}
+
+.cke_skin_office2003 a.cke_dialog_tab,
+.cke_skin_office2003 a:link.cke_dialog_tab,
+.cke_skin_office2003 a:active.cke_dialog_tab,
+.cke_skin_office2003 a:hover.cke_dialog_tab,
+.cke_skin_office2003 a:visited.cke_dialog_tab
+{
+ color: #0E3460;
+ border-left: 1px solid #2b66c9;
+ border-right: 1px solid #2b66c9;
+ border-top: 1px solid #2b66c9;
+ height: 14px;
+ padding: 4px 5px;
+ display: inline-block;
+ cursor: pointer;
+}
+
+/* Gecko 1.8 layout workaround. */
+.cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab
+{
+ display: inline;
+ position: relative;
+ top: 6px;
+}
+
+.cke_skin_office2003 a:hover.cke_dialog_tab
+{
+ background-color: #f7f8fd;
+}
+.cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab
+{
+ padding: 2px 3px !important;
+ border-width: 3px;
+}
+
+.cke_skin_office2003 a.cke_dialog_tab_selected,
+.cke_skin_office2003 a:link.cke_dialog_tab_selected,
+.cke_skin_office2003 a:active.cke_dialog_tab_selected,
+.cke_skin_office2003 a:hover.cke_dialog_tab_selected,
+.cke_skin_office2003 a:visited.cke_dialog_tab_selected
+{
+ border-bottom: 1px solid #f7f8fd;
+ background-color: #f7f8fd;
+ font-weight: bold;
+ cursor: default;
+}
+.cke_skin_office2003 .cke_hc a.cke_dialog_tab_selected,
+.cke_skin_office2003 .cke_hc a:link.cke_dialog_tab_selected,
+.cke_skin_office2003 .cke_hc a:active.cke_dialog_tab_selected,
+.cke_skin_office2003 .cke_hc a:hover.cke_dialog_tab_selected,
+.cke_skin_office2003 .cke_hc a:visited.cke_dialog_tab_selected
+{
+ padding: 2px 3px !important;
+ border-width: 3px;
+}
+
+/* single_page */
+
+.cke_skin_office2003 .cke_single_page .cke_dialog_tabs
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_tabs a,
+.cke_skin_office2003 .cke_hc .cke_dialog_footer a
+{
+ opacity: 1.0;
+ filter: alpha(opacity=100);
+ border: 1px solid white;
+}
+
+.cke_skin_office2003 .cke_single_page .cke_dialog_title
+{
+ padding-bottom: 3px;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_vbox table,
+.cke_skin_office2003 .cke_dialog_ui_hbox table
+{
+ margin: auto;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_vbox_child
+{
+ padding: 5px 0px;
+}
+
+.cke_skin_office2003 input.cke_dialog_ui_input_text,
+.cke_skin_office2003 input.cke_dialog_ui_input_password
+{
+ background-color: white;
+ border: none;
+ padding: 0px;
+ width: 100%;
+ height: 14px;
+}
+
+.cke_skin_office2003 div.cke_dialog_ui_input_text,
+.cke_skin_office2003 div.cke_dialog_ui_input_password
+{
+ background-color: white;
+ border: 1px solid #a0a0a0;
+ padding: 1px 0px;
+ /* IE6/Quirks - make sure the content does not overflow (#7321) */
+ _width: 99.9%;
+}
+
+/* Opera/IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
+.cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_ie.cke_rtl input.cke_dialog_ui_input_password,
+.cke_skin_office2003 .cke_browser_opera.cke_rtl input.cke_dialog_ui_input_password
+{
+ padding-right: 2px
+}
+
+/* Compensate the padding added above on container. */
+.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_password,
+.cke_skin_office2003 .cke_browser_opera.cke_rtl div.cke_dialog_ui_input_password
+{
+ padding-left: 2px;
+}
+
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_vbox_child,
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_child,
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_ui_hbox_last
+{
+ padding-right: 2px !important;
+}
+
+.cke_skin_office2003 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text {
+ padding-right: 1px;
+}
+
+.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_gecko.cke_hc div.cke_dialog_ui_input_password
+{
+ border-width: 0px;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_text,
+.cke_skin_office2003 .cke_browser_gecko18.cke_hc div.cke_dialog_ui_input_password
+{
+ border-width: 1px;
+}
+
+.cke_skin_office2003 textarea.cke_dialog_ui_input_textarea
+{
+ background-color: white;
+ border: none;
+ padding: 0px;
+ width: 100%;
+ /*
+ * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
+ * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
+ */
+ _width: 99%;
+ overflow: auto;
+ resize: none;
+}
+
+.cke_skin_office2003 div.cke_dialog_ui_input_textarea
+{
+ background-color: white;
+ border: 1px solid #a0a0a0;
+ padding: 1px 0px;
+}
+
+/* RTL + IE6: Input overflows dialog element. (#7321) */
+.cke_skin_office2003 .cke_rtl .cke_dialog_ui_labeled_content
+{
+ _width: 95%;
+}
+
+.cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *
+{
+ background-color : #a0a0a0;
+ cursor : default;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_hbox
+{
+ width: 100%;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_dialog_ui_hbox_child,
+.cke_skin_office2003 .cke_dialog_ui_hbox_last
+{
+ vertical-align: top;
+}
+
+.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child
+{
+ padding-right: 10px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child
+{
+ padding-left: 10px;
+}
+
+/* button */
+
+.cke_skin_office2003 a.cke_dialog_ui_button
+{
+ border-collapse: separate;
+ cursor: default;
+}
+
+.cke_skin_office2003 a.cke_dialog_ui_button_ok span,
+.cke_skin_office2003 a.cke_dialog_ui_button_cancel span
+{
+ width:60px;
+}
+
+.cke_skin_office2003 span.cke_dialog_ui_button
+{
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 0 -678px;
+ background-repeat: repeat-x;
+ border: #0E3460 1px solid;
+ padding: 2px 10px;
+ text-align: center;
+ color: #0E3460;
+ background-color: #8db1ff;
+ display: inline-block;
+ cursor: default;
+}
+
+/* Gecko 1.8 does not support display: inline-block */
+.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+ display: block;
+}
+
+.cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled
+{
+ border: #898980 1px solid;
+ color: #5e5e55;
+ background-color: #c5c5b3;
+}
+
+.cke_skin_office2003 a:focus span.cke_dialog_ui_button,
+.cke_skin_office2003 a:active span.cke_dialog_ui_button
+{
+ background-color: #8db1ff;
+}
+.cke_skin_office2003 .cke_hc a:focus span.cke_dialog_ui_button,
+.cke_skin_office2003 .cke_hc a:active span.cke_dialog_ui_button
+{
+ border-width: 2px;
+}
+
+.cke_skin_office2003 .cke_dialog_footer_buttons
+{
+ display: inline-table;
+ margin-right: 12px;
+ margin-left: 12px;
+ width: auto;
+ position: relative;
+}
+
+/* Gecko 1.8 does not support for display: inline-table */
+.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons
+{
+ display: inline;
+}
+
+.cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+ margin: 7px 0;
+}
+
+.cke_skin_office2003 .cke_browser_ie7 .cke_dialog_footer_buttons
+{
+ position: static;
+}
+
+.cke_skin_office2003 strong
+{
+ font-weight: bold;
+}
+
+/* close_button */
+
+.cke_skin_office2003 a.cke_dialog_close_button,
+.cke_skin_office2003 a:hover.cke_dialog_close_button,
+.cke_skin_office2003 .cke_browser_ie6 a.cke_dialog_close_button,
+.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_dialog_close_button
+{
+ background-image: url(images/sprites.png);
+ background-repeat: no-repeat;
+ background-position: -20px -655px;
+ position: absolute;
+ cursor: pointer;
+ text-align: center;
+ height: 21px;
+ width: 21px;
+ top: 4px;
+
+ /* IE6 does not support full color transparent PNG. */
+ _background-image: url(images/sprites_ie6.png);
+}
+
+.cke_skin_office2003 a.cke_dialog_close_button span
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_ltr a.cke_dialog_close_button
+{
+ right: 10px;
+ _right: 22px;
+}
+
+.cke_skin_office2003 .cke_rtl a.cke_dialog_close_button,
+.cke_skin_office2003 .cke_rtl a:hover.cke_dialog_close_button
+{
+ left: 10px;
+ _left: 16px;
+ _top: 6px;
+}
+
+.cke_skin_office2003 .cke_browser_ie6.cke_rtl a.cke_dialog_close_button,
+.cke_skin_office2003 .cke_browser_ie6.cke_rtl a:hover.cke_dialog_close_button
+{
+ position: relative;
+ float: left;
+ margin-top: -55px;
+ margin-left: -7px;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a.cke_dialog_close_button,
+.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page a:hover.cke_dialog_close_button
+{
+ margin-top: -32px;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a.cke_dialog_close_button,
+.cke_skin_office2003 .cke_browser_iequirks.cke_ltr a:hover.cke_dialog_close_button
+{
+ margin-top: 0;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_input_select
+{
+ border: 1px solid #a0a0a0;
+ background-color: white;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_input_file
+{
+ width: 100%;
+ height: 25px;
+}
+
+/*
+ * Some utility CSS classes for dialog authors.
+ */
+.cke_skin_office2003 .cke_dialog .cke_dark_background
+{
+ background-color: #eaead1;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_hand
+{
+ cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_centered
+{
+ text-align: center;
+}
+
+.cke_skin_office2003 .cke_dialog a.cke_btn_reset
+{
+ float: right;
+ background-position: 0 -32px;
+ background-image: url(images/mini.gif);
+ width: 16px;
+ height: 16px;
+ background-repeat: no-repeat;
+ border: 1px none;
+ font-size: 1px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_reset
+{
+ float: left;
+}
+
+.cke_skin_office2003 .cke_dialog a.cke_btn_locked,
+.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
+{
+ float: left;
+ background-position: 0 0;
+ background-image: url(images/mini.gif);
+ width: 16px;
+ height: 16px;
+ background-repeat: no-repeat;
+ border: none 1px;
+ font-size: 1px;
+}
+.cke_skin_office2003 .cke_dialog a.cke_btn_locked .cke_icon
+{
+ display:none;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_locked,
+.cke_skin_office2003 .cke_rtl .cke_dialog a.cke_btn_unlocked
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_dialog a.cke_btn_unlocked
+{
+ background-position: 0 -16px;
+ background-image: url(images/mini.gif);
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_over
+{
+ border: outset 1px;
+ cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_dialog .ImagePreviewBox
+{
+ border : 2px ridge black;
+ overflow : scroll;
+ height : 210px;
+ width : 230px;
+ padding : 2px;
+ background-color : white;
+}
+
+.cke_skin_office2003 .cke_dialog .ImagePreviewBox table td {
+ white-space: normal;
+}
+
+/* Fix iframedialog's height doesn't stretch to 100% #4863.*/
+.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_page_contents
+{
+ _position: absolute;
+}
+
+.cke_skin_office2003 .cke_dialog .ImagePreviewLoader
+{
+ position: absolute;
+ white-space : normal;
+ overflow : hidden;
+ height : 160px;
+ width : 230px;
+ margin : 2px;
+ padding : 2px;
+ opacity : 0.9;
+ filter : alpha(opacity=90);
+
+ background-color : #e4e4e4;
+}
+
+.cke_skin_office2003 .cke_dialog .FlashPreviewBox
+{
+ white-space : normal;
+ border : 2px ridge black;
+ overflow : auto;
+ height : 160px;
+ width : 390px;
+ padding : 2px;
+ background-color : white;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_pastetext
+{
+ width: 346px;
+ height: 170px;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_pastetext textarea
+{
+ width: 340px;
+ height: 170px;
+ resize: none;
+}
+
+.cke_skin_office2003 .cke_dialog iframe.cke_pasteframe
+{
+ width: 346px;
+ height: 130px;
+ background-color: white;
+ border: 1px solid black;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_dark_background
+{
+ text-align : center;
+ background-color: #eaead1;
+ font-size : 14px;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_light_background
+{
+ text-align : center;
+ background-color: #ffffbe;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_hand
+{
+ cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_disabled
+{
+ color: #a0a0a0;
+}
+
+/* High Contrast Mode */
+.cke_skin_office2003 .cke_hc .cke_dialog_title,
+.cke_skin_office2003 .cke_hc .cke_dialog_tabs,
+.cke_skin_office2003 .cke_hc .cke_dialog_contents,
+.cke_skin_office2003 .cke_hc .cke_dialog_footer
+{
+ border-left: 1px solid;
+ border-right: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_title
+{
+ border-top: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_footer
+{
+ border-bottom: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_close_button span
+{
+ display: inline;
+ cursor: pointer;
+ font-weight: bold;
+ position: relative;
+ top: 3px;
+}
+
+.cke_skin_office2003 .cke_dialog_body .cke_label
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_dialog_body label.cke_required
+{
+ font-weight: bold;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label
+{
+ display: inline;
+ cursor: inherit;
+}
+
+.cke_skin_office2003 .cke_hc a.cke_btn_locked,
+.cke_skin_office2003 .cke_hc a.cke_btn_unlocked,
+.cke_skin_office2003 .cke_hc a.cke_btn_reset
+{
+ border-style: solid;
+ float: left;
+ width: auto;
+ height: auto;
+ padding: 0 2px;
+}
+.cke_skin_office2003 .cke_hc a.cke_btn_locked .cke_icon
+{
+ display:inline;
+}
+
+.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_locked,
+.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_unlocked,
+.cke_skin_office2003 .cke_rtl.cke_hc a.cke_btn_reset
+{
+ float: right;
+}
+
+/**
+ * Styles specific to "cellProperties" dialog.
+ */
+
+.cke_skin_office2003 .cke_dialog_contents a.colorChooser
+{
+ display:block;
+ margin-top:12px;
+ margin-left: 10px;
+ width: 40px;
+}
+
+.cke_skin_office2003 .cke_dialog_contents a.colorChooser .cke_dialog_ui_button
+{
+ width:100%;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_contents a.colorChooser
+{
+ margin-right: 10px;
+}
+
+/* Compensate focus outline for some input elements. (#6200) */
+.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus,
+.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_radio_input:focus,
+.cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_checkbox_input:focus,
+.cke_skin_office2003 .cke_browser_opera .cke_dialog_ui_radio_input:focus,
+.cke_skin_office2003 .cke_browser_gecko .cke_dialog_ui_input_select:focus,
+.cke_skin_office2003 .cke_browser_gecko .cke_btn_over,
+.cke_skin_office2003 .cke_browser_opera .cke_btn_over,
+.cke_skin_office2003 .cke_browser_ie .cke_btn_over
+{
+ outline: 1px dotted #696969;
+}
+
+/* IE<8 instead doesn't support CSS outline property, emulated with dotted border. */
+
+/* Predefined border to avoid visual size change impact. */
+.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_checkbox_input,
+.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_ratio_input,
+.cke_skin_office2003 .cke_browser_ie .cke_btn_reset,
+.cke_skin_office2003 .cke_browser_ie .cke_btn_locked,
+.cke_skin_office2003 .cke_browser_ie .cke_btn_unlocked
+{
+ *border: 1px solid transparent !important;
+ /* Emulating border-color: transparent in IE6.*/
+ /* Emulating border-color: transparent in IE6.*/
+ -border: 1px solid red !important;
+ -filter: chroma(color=red);
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_dialog_ui_focused,
+.cke_skin_office2003 .cke_browser_ie .cke_btn_over
+{
+ *border: 1px dotted #696969 !important;
+}
+
+.cke_skin_office2003 .cke_iframe_shim
+{
+ display:block;
+ position:absolute;
+ top:0;
+ left:0;
+ z-index:-1;
+ filter:alpha(opacity=0);
+ width:100%;
+ height:100%;
+}
diff --git a/_source/skins/office2003/editor.css b/_source/skins/office2003/editor.css
index 3807668..52aa1c3 100644
--- a/_source/skins/office2003/editor.css
+++ b/_source/skins/office2003/editor.css
@@ -1,25 +1,25 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-@import url("reset.css");
-@import url("mainui.css");
-@import url("panel.css");
-@import url("toolbar.css");
-@import url("menu.css");
-@import url("richcombo.css");
-@import url("elementspath.css");
-@import url("icons.css");
-@import url("presets.css");
-
-/* Restore the container visibility */
-html .cke_skin_office2003
-{
- visibility: inherit;
-}
-
-html.cke_skin_office2003_container
-{
- visibility: visible;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@import url("reset.css");
+@import url("mainui.css");
+@import url("panel.css");
+@import url("toolbar.css");
+@import url("menu.css");
+@import url("richcombo.css");
+@import url("elementspath.css");
+@import url("icons.css");
+@import url("presets.css");
+
+/* Restore the container visibility */
+html .cke_skin_office2003
+{
+ visibility: inherit;
+}
+
+html.cke_skin_office2003_container
+{
+ visibility: visible;
+}
diff --git a/_source/skins/office2003/elementspath.css b/_source/skins/office2003/elementspath.css
index 78dd48a..3cd228b 100644
--- a/_source/skins/office2003/elementspath.css
+++ b/_source/skins/office2003/elementspath.css
@@ -1,5 +1,5 @@
/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
@@ -35,6 +35,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
padding-left: 4px;
padding-right: 4px;
margin-bottom : 3px;
+ cursor: default;
}
.cke_skin_office2003 .cke_path .cke_empty
diff --git a/_source/skins/office2003/icons.css b/_source/skins/office2003/icons.css
index bf3c855..d1f6c4b 100644
--- a/_source/skins/office2003/icons.css
+++ b/_source/skins/office2003/icons.css
@@ -1,324 +1,363 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-.cke_skin_office2003 .cke_button_source .cke_icon
-{
- background-position: 0 0;
-}
-
-.cke_skin_office2003 .cke_button_newpage .cke_icon
-{
- background-position: 0 -48px;
-}
-
-.cke_skin_office2003 .cke_button_preview .cke_icon
-{
- background-position: 0 -64px;
-}
-
-.cke_skin_office2003 .cke_button_cut .cke_icon
-{
- background-position: 0 -96px;
-}
-
-.cke_skin_office2003 .cke_button_copy .cke_icon
-{
- background-position: 0 -112px;
-}
-
-.cke_skin_office2003 .cke_button_paste .cke_icon
-{
- background-position: 0 -128px;
-}
-
-.cke_skin_office2003 .cke_button_pastetext .cke_icon
-{
- background-position: 0 -144px;
-}
-
-.cke_skin_office2003 .cke_button_find .cke_icon
-{
- background-position: 0 -240px;
-}
-
-.cke_skin_office2003 .cke_button_replace .cke_icon
-{
- background-position: 0 -256px;
-}
-
-.cke_skin_office2003 .cke_button_selectAll .cke_icon
-{
- background-position: 0 -272px;
-}
-
-.cke_skin_office2003 .cke_button_removeFormat .cke_icon
-{
- background-position: 0 -288px;
-}
-
-.cke_skin_office2003 .cke_button_bold .cke_icon
-{
- background-position: 0 -304px;
-}
-
-.cke_skin_office2003 .cke_button_italic .cke_icon
-{
- background-position: 0 -320px;
-}
-
-.cke_skin_office2003 .cke_button_underline .cke_icon
-{
- background-position: 0 -336px;
-}
-
-.cke_skin_office2003 .cke_button_strike .cke_icon
-{
- background-position: 0 -352px;
-}
-
-.cke_skin_office2003 .cke_button_subscript .cke_icon
-{
- background-position: 0 -368px;
-}
-
-.cke_skin_office2003 .cke_button_superscript .cke_icon
-{
- background-position: 0 -384px;
-}
-
-.cke_skin_office2003 .cke_button_table .cke_icon
-{
- background-position: 0 -608px;
-}
-
-.cke_skin_office2003 .cke_button_horizontalrule .cke_icon
-{
- background-position: 0 -624px;
-}
-
-.cke_skin_office2003 .cke_button_smiley .cke_icon
-{
- background-position: 0 -640px;
-}
-
-.cke_skin_office2003 .cke_button_link .cke_icon
-{
- background-position: 0 -528px;
-}
-
-.cke_skin_office2003 .cke_button_unlink .cke_icon
-{
- background-position: 0 -544px;
-}
-
-.cke_skin_office2003 .cke_button_anchor .cke_icon
-{
- background-position: 0 -560px;
-}
-
-.cke_skin_office2003 .cke_button_image .cke_icon
-{
- background-position: 0 -576px;
-}
-
-.cke_skin_office2003 .cke_button_flash .cke_icon
-{
- background-position: 0 -592px;
-}
-
-.cke_skin_office2003 .cke_button_specialchar .cke_icon
-{
- background-position: 0 -656px;
-}
-
-.cke_skin_office2003 .cke_button_pagebreak .cke_icon
-{
- background-position: 0 -672px;
-}
-
-.cke_skin_office2003 .cke_button_print .cke_icon
-{
- background-position: 0 -176px;
-}
-
-.cke_skin_office2003 .cke_button_checkspell .cke_icon,
-.cke_skin_office2003 .cke_button_scayt .cke_icon
-{
- background-position: 0 -192px;
-}
-
-.cke_skin_office2003 .cke_button_pagebreak .cke_icon
-{
- background-position: 0 -672px;
-}
-
-.cke_skin_office2003 .cke_button_textcolor .cke_icon
-{
- background-position: 0 -704px;
-}
-
-.cke_skin_office2003 .cke_button_bgcolor .cke_icon
-{
- background-position: 0 -720px;
-}
-
-.cke_skin_office2003 .cke_button_form .cke_icon
-{
- background-position: 0 -752px;
-}
-
-.cke_skin_office2003 .cke_button_checkbox .cke_icon
-{
- background-position: 0 -768px;
-}
-
-.cke_skin_office2003 .cke_button_radio .cke_icon
-{
- background-position: 0 -784px;
-}
-
-.cke_skin_office2003 .cke_button_textfield .cke_icon
-{
- background-position: 0 -800px;
-}
-
-.cke_skin_office2003 .cke_button_textarea .cke_icon
-{
- background-position: 0 -816px;
-}
-.cke_skin_office2003 .cke_button_showblocks .cke_icon
-{
- background-position: 0 -1136px;
-}
-
-.cke_skin_office2003 .cke_button_select .cke_icon
-{
- background-position: 0 -832px;
-}
-
-.cke_skin_office2003 .cke_button_button .cke_icon
-{
- background-position: 0 -848px;
-}
-
-.cke_skin_office2003 .cke_button_imagebutton .cke_icon
-{
- background-position: 0 -864px;
-}
-
-.cke_skin_office2003 .cke_button_hiddenfield .cke_icon
-{
- background-position: 0 -880px;
-}
-
-.cke_skin_office2003 .cke_button_undo .cke_icon
-{
- background-position: 0 -208px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_button_undo .cke_icon
-{
- background-position: 0 -224px;
-}
-
-.cke_skin_office2003 .cke_button_redo .cke_icon
-{
- background-position: 0 -224px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_button_redo .cke_icon
-{
- background-position: 0 -208px;
-}
-
-.cke_skin_office2003 .cke_button_templates .cke_icon
-{
- background-position: 0 -80px;
-}
-
-.cke_skin_office2003 .cke_button_numberedlist .cke_icon
-{
- background-position: 0 -400px;
-}
-
-.cke_skin_office2003 .cke_button_bulletedlist .cke_icon
-{
- background-position: 0 -416px;
-}
-
-.cke_skin_office2003 .cke_button_outdent .cke_icon
-{
- background-position: 0 -432px;
-}
-
-.cke_skin_office2003 .cke_button_indent .cke_icon
-{
- background-position: 0 -448px;
-}
-
-.cke_skin_office2003 .cke_button_justifyleft .cke_icon
-{
- background-position: 0 -464px;
-}
-
-.cke_skin_office2003 .cke_button_justifycenter .cke_icon
-{
- background-position: 0 -480px;
-}
-
-.cke_skin_office2003 .cke_button_justifyright .cke_icon
-{
- background-position: 0 -496px;
-}
-
-.cke_skin_office2003 .cke_button_justifyblock .cke_icon
-{
- background-position: 0 -512px;
-}
-
-.cke_skin_office2003 .cke_button_blockquote .cke_icon
-{
- background-position: 0 -1152px;
-}
-
-.cke_skin_office2003 .cke_button_flash .cke_icon
-{
- background-position: 0 -592px;
-}
-
-.cke_skin_office2003 .cke_button_pastefromword .cke_icon
-{
- background-position: 0 -160px;
-}
-
-.cke_skin_office2003 .cke_button_save .cke_icon
-{
- background-position: 0 -32px;
-}
-
-.cke_skin_office2003 .cke_button_about .cke_icon
-{
- background-position: 0 -736px;
-}
-
-.cke_skin_office2003 .cke_button_maximize .cke_icon
-{
- background-position: 0 -1040px;
-}
-
-.cke_skin_office2003 .cke_button_creatediv .cke_icon
-{
- background-position: 0 -1168px;
-}
-
-.cke_skin_office2003 .cke_button_editdiv .cke_icon
-{
- background-position: 0 -1184px;
-}
-
-.cke_skin_office2003 .cke_button_removediv .cke_icon
-{
- background-position: 0 -1200px;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_button_source .cke_icon
+{
+ background-position: 0 0;
+}
+
+.cke_skin_office2003 .cke_button_docProps .cke_icon
+{
+ background-position: 0 -16px;
+}
+
+.cke_skin_office2003 .cke_button_newpage .cke_icon
+{
+ background-position: 0 -48px;
+}
+
+.cke_skin_office2003 .cke_button_preview .cke_icon
+{
+ background-position: 0 -64px;
+}
+
+.cke_skin_office2003 .cke_button_cut .cke_icon
+{
+ background-position: 0 -96px;
+}
+
+.cke_skin_office2003 .cke_button_copy .cke_icon
+{
+ background-position: 0 -112px;
+}
+
+.cke_skin_office2003 .cke_button_paste .cke_icon
+{
+ background-position: 0 -128px;
+}
+
+.cke_skin_office2003 .cke_button_pastetext .cke_icon
+{
+ background-position: 0 -144px;
+}
+
+.cke_skin_office2003 .cke_button_find .cke_icon
+{
+ background-position: 0 -240px;
+}
+
+.cke_skin_office2003 .cke_button_replace .cke_icon
+{
+ background-position: 0 -256px;
+}
+
+.cke_skin_office2003 .cke_button_selectAll .cke_icon
+{
+ background-position: 0 -272px;
+}
+
+.cke_skin_office2003 .cke_button_removeFormat .cke_icon
+{
+ background-position: 0 -288px;
+}
+
+.cke_skin_office2003 .cke_button_bold .cke_icon
+{
+ background-position: 0 -304px;
+}
+
+.cke_skin_office2003 .cke_button_italic .cke_icon
+{
+ background-position: 0 -320px;
+}
+
+.cke_skin_office2003 .cke_button_underline .cke_icon
+{
+ background-position: 0 -336px;
+}
+
+.cke_skin_office2003 .cke_button_strike .cke_icon
+{
+ background-position: 0 -352px;
+}
+
+.cke_skin_office2003 .cke_button_subscript .cke_icon
+{
+ background-position: 0 -368px;
+}
+
+.cke_skin_office2003 .cke_button_superscript .cke_icon
+{
+ background-position: 0 -384px;
+}
+
+.cke_skin_office2003 .cke_button_table .cke_icon
+{
+ background-position: 0 -608px;
+}
+
+.cke_skin_office2003 .cke_button_horizontalrule .cke_icon
+{
+ background-position: 0 -624px;
+}
+
+.cke_skin_office2003 .cke_button_smiley .cke_icon
+{
+ background-position: 0 -640px;
+}
+
+.cke_skin_office2003 .cke_button_link .cke_icon
+{
+ background-position: 0 -528px;
+}
+
+.cke_skin_office2003 .cke_button_unlink .cke_icon
+{
+ background-position: 0 -544px;
+}
+
+.cke_skin_office2003 .cke_button_anchor .cke_icon
+{
+ background-position: 0 -560px;
+}
+
+.cke_skin_office2003 .cke_button_image .cke_icon
+{
+ background-position: 0 -576px;
+}
+
+.cke_skin_office2003 .cke_button_flash .cke_icon
+{
+ background-position: 0 -592px;
+}
+
+.cke_skin_office2003 .cke_button_specialchar .cke_icon
+{
+ background-position: 0 -656px;
+}
+
+.cke_skin_office2003 .cke_button_pagebreak .cke_icon
+{
+ background-position: 0 -672px;
+}
+
+.cke_skin_office2003 .cke_button_print .cke_icon
+{
+ background-position: 0 -176px;
+}
+
+.cke_skin_office2003 .cke_button_checkspell .cke_icon,
+.cke_skin_office2003 .cke_button_scayt .cke_icon
+{
+ background-position: 0 -192px;
+}
+
+.cke_skin_office2003 .cke_button_pagebreak .cke_icon
+{
+ background-position: 0 -672px;
+}
+
+.cke_skin_office2003 .cke_button_textcolor .cke_icon
+{
+ background-position: 0 -704px;
+}
+
+.cke_skin_office2003 .cke_button_bgcolor .cke_icon
+{
+ background-position: 0 -720px;
+}
+
+.cke_skin_office2003 .cke_button_form .cke_icon
+{
+ background-position: 0 -752px;
+}
+
+.cke_skin_office2003 .cke_button_checkbox .cke_icon
+{
+ background-position: 0 -768px;
+}
+
+.cke_skin_office2003 .cke_button_radio .cke_icon
+{
+ background-position: 0 -784px;
+}
+
+.cke_skin_office2003 .cke_button_textfield .cke_icon
+{
+ background-position: 0 -800px;
+}
+
+.cke_skin_office2003 .cke_button_textarea .cke_icon
+{
+ background-position: 0 -816px;
+}
+.cke_skin_office2003 .cke_button_showblocks .cke_icon
+{
+ background-position: 0 -1136px;
+}
+
+.cke_skin_office2003 .cke_button_select .cke_icon
+{
+ background-position: 0 -832px;
+}
+
+.cke_skin_office2003 .cke_button_button .cke_icon
+{
+ background-position: 0 -848px;
+}
+
+.cke_skin_office2003 .cke_button_imagebutton .cke_icon
+{
+ background-position: 0 -864px;
+}
+
+.cke_skin_office2003 .cke_button_hiddenfield .cke_icon
+{
+ background-position: 0 -880px;
+}
+
+.cke_skin_office2003 .cke_button_undo .cke_icon
+{
+ background-position: 0 -208px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button_undo .cke_icon
+{
+ background-position: 0 -224px;
+}
+
+.cke_skin_office2003 .cke_button_redo .cke_icon
+{
+ background-position: 0 -224px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button_redo .cke_icon
+{
+ background-position: 0 -208px;
+}
+
+.cke_skin_office2003 .cke_button_templates .cke_icon
+{
+ background-position: 0 -80px;
+}
+
+.cke_skin_office2003 .cke_button_numberedlist .cke_icon
+{
+ background-position: 0 -400px;
+}
+
+.cke_skin_office2003 .cke_button_bulletedlist .cke_icon
+{
+ background-position: 0 -416px;
+}
+
+.cke_skin_office2003 .cke_mixed_dir_content .cke_button_numberedlist .cke_icon
+{
+ background-position: 0 -1217px;
+}
+
+.cke_skin_office2003 .cke_mixed_dir_content .cke_button_bulletedlist .cke_icon
+{
+ background-position: 0 -1233px;
+}
+
+.cke_skin_office2003 .cke_button_outdent .cke_icon
+{
+ background-position: 0 -432px;
+}
+
+.cke_skin_office2003 .cke_button_indent .cke_icon
+{
+ background-position: 0 -448px;
+}
+
+.cke_skin_office2003 .cke_mixed_dir_content .cke_button_indent .cke_icon
+{
+ background-position: 0 -1265px;
+}
+
+.cke_skin_office2003 .cke_mixed_dir_content .cke_button_outdent .cke_icon
+{
+ background-position: 0 -1249px;
+}
+
+.cke_skin_office2003 .cke_button_justifyleft .cke_icon
+{
+ background-position: 0 -464px;
+}
+
+.cke_skin_office2003 .cke_button_justifycenter .cke_icon
+{
+ background-position: 0 -480px;
+}
+
+.cke_skin_office2003 .cke_button_justifyright .cke_icon
+{
+ background-position: 0 -496px;
+}
+
+.cke_skin_office2003 .cke_button_justifyblock .cke_icon
+{
+ background-position: 0 -512px;
+}
+
+.cke_skin_office2003 .cke_button_blockquote .cke_icon
+{
+ background-position: 0 -1152px;
+}
+
+.cke_skin_office2003 .cke_button_flash .cke_icon
+{
+ background-position: 0 -592px;
+}
+
+.cke_skin_office2003 .cke_button_pastefromword .cke_icon
+{
+ background-position: 0 -160px;
+}
+
+.cke_skin_office2003 .cke_button_save .cke_icon
+{
+ background-position: 0 -32px;
+}
+
+.cke_skin_office2003 .cke_button_about .cke_icon
+{
+ background-position: 0 -736px;
+}
+
+.cke_skin_office2003 .cke_button_maximize .cke_icon
+{
+ background-position: 0 -1040px;
+}
+
+.cke_skin_office2003 .cke_button_creatediv .cke_icon
+{
+ background-position: 0 -1168px;
+}
+
+.cke_skin_office2003 .cke_button_editdiv .cke_icon
+{
+ background-position: 0 -1184px;
+}
+
+.cke_skin_office2003 .cke_button_removediv .cke_icon
+{
+ background-position: 0 -1200px;
+}
+
+.cke_skin_office2003 .cke_button_bidirtl .cke_icon
+{
+ background-position: 0 -1072px;
+}
+
+.cke_skin_office2003 .cke_button_bidiltr .cke_icon
+{
+ background-position: 0 -1056px;
+}
+.cke_skin_office2003 .cke_button_iframe .cke_icon
+{
+ background-position: 0 -1279px;
+}
diff --git a/_source/skins/office2003/icons.png b/_source/skins/office2003/icons.png
index 394ce89..7c3bf19 100644
--- a/_source/skins/office2003/icons.png
+++ b/_source/skins/office2003/icons.png
Binary files differ
diff --git a/_source/skins/office2003/icons_rtl.png b/_source/skins/office2003/icons_rtl.png
new file mode 100644
index 0000000..83eee28
--- /dev/null
+++ b/_source/skins/office2003/icons_rtl.png
Binary files differ
diff --git a/_source/skins/office2003/mainui.css b/_source/skins/office2003/mainui.css
index d2cda0b..f266b49 100644
--- a/_source/skins/office2003/mainui.css
+++ b/_source/skins/office2003/mainui.css
@@ -1,145 +1,153 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-.cke_skin_office2003 .cke_editor
-{
-/*
- border: solid 1px #dcdcdc;
-*/
- display: inline-table;
- width: 100%;
-}
-
-.cke_skin_office2003 span.cke_browser_webkit,
-.cke_skin_office2003 span.cke_browser_gecko18
-{
- display: block;
-}
-
-.cke_skin_office2003,
-.cke_skin_office2003 .cke_wrapper
-{
- display: block;
-}
-
-.cke_skin_office2003 .cke_top,
-.cke_skin_office2003 .cke_bottom,
- .cke_shared .cke_skin_office2003
-{
- background-color: #f7f8fd;
-}
-
-.cke_skin_office2003 .cke_top
-{
- border-top: solid 1px #fafaf5;
- border-left: solid 1px #fafaf5;
- border-right: solid 1px #696969;
- border-bottom: solid 2px #696969;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_top
-{
- border-left: solid 1px #696969;
- border-right: solid 1px #fafaf5;
-}
-
-.cke_skin_office2003 .cke_bottom
-{
- border-left: solid 1px #696969;
- border-right: solid 1px #696969;
- border-bottom: solid 1px #696969;
-}
-
-.cke_skin_office2003 .cke_contents
-{
- border: solid 1px #696969;
- /* Prevent background content from penetrate through when switching between editing modes. (#4918) */
- background-color: white;
-}
-
-.cke_skin_office2003 .cke_focus
-{
- outline: auto 5px -webkit-focus-ring-color;
-}
-
-.cke_skin_office2003 textarea.cke_source
-{
- font-family: 'Courier New' , Monospace;
- font-size: small;
- white-space: pre;
- background-color: #fff;
-}
-
-.cke_skin_office2003 .cke_browser_iequirks textarea.cke_source
-{
- /* For IE6+Quirks only */
- _white-space: normal;
-}
-
-.cke_skin_office2003 .cke_resizer
-{
- width: 12px;
- height: 12px;
- margin-top: 16px;
- display: block;
- float: right;
- /* resizer.gif*/
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 0 -1088px;
- background-repeat: no-repeat;
- cursor: se-resize;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_resizer
-{
- cursor: sw-resize;
- /* resizer_rtl.gif*/
- background-position: 0 -1115px;
- float: left;
-}
-
-.cke_skin_office2003 .cke_resizer_horizontal,
-.cke_skin_office2003 .cke_rtl .cke_resizer_horizontal
-{
- cursor: e-resize;
-}
-
-.cke_skin_office2003 .cke_resizer_vertical,
-.cke_skin_office2003 .cke_rtl .cke_resizer_vertical
-{
- cursor: n-resize;
-}
-
-.cke_skin_office2003 .cke_maximized .cke_resizer
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,
-.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea
-{
- position: absolute;
-}
-
-/* All voice labels are not displayed. */
-.cke_skin_office2003 .cke_voice_label
-{
- display: none;
-}
-
-.cke_skin_office2003 legend.cke_voice_label
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_browser_ie legend.cke_voice_label
-{
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- overflow: hidden;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_editor
+{
+ display: inline-table;
+ width: 100%;
+}
+.cke_skin_office2003 .cke_browser_webkit .cke_editor
+{
+ display: table; /* #6684 */
+}
+
+.cke_skin_office2003 span.cke_browser_webkit,
+.cke_skin_office2003 span.cke_browser_gecko18
+{
+ display: block;
+}
+
+.cke_skin_office2003,
+.cke_skin_office2003 .cke_wrapper
+{
+ display: block;
+}
+
+.cke_skin_office2003 .cke_top,
+.cke_skin_office2003 .cke_bottom,
+ .cke_shared .cke_skin_office2003
+{
+ background-color: #f7f8fd;
+}
+
+.cke_skin_office2003 .cke_top
+{
+ border-top: solid 1px #fafaf5;
+ border-left: solid 1px #fafaf5;
+ border-right: solid 1px #696969;
+ border-bottom: solid 2px #696969;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_top
+{
+ border-left: solid 1px #696969;
+ border-right: solid 1px #fafaf5;
+}
+
+.cke_skin_office2003 .cke_bottom
+{
+ border-left: solid 1px #696969;
+ border-right: solid 1px #696969;
+ border-bottom: solid 1px #696969;
+}
+
+.cke_skin_office2003 .cke_contents
+{
+ border: solid 1px #696969;
+ /* Prevent background content from penetrate through when switching between editing modes. (#4918) */
+ background-color: white;
+}
+
+.cke_skin_office2003 .cke_focus
+{
+ outline: auto 5px -webkit-focus-ring-color;
+}
+
+.cke_skin_office2003 textarea.cke_source
+{
+ font-family: 'Courier New' , Monospace;
+ font-size: small;
+ white-space: pre;
+ background-color: #fff;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks textarea.cke_source
+{
+ /* For IE6+Quirks only */
+ _white-space: normal;
+}
+
+.cke_skin_office2003 .cke_resizer
+{
+ width: 12px;
+ height: 12px;
+ margin-top: 16px;
+ display: block;
+ float: right;
+ /* resizer.gif*/
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 0 -1088px;
+ background-repeat: no-repeat;
+ cursor: se-resize;
+}
+
+/* Adobe AIR doesn't support *-resize cursor shape. */
+.cke_skin_office2003 .cke_browser_air .cke_resizer,
+.cke_skin_office2003 .cke_browser_air .cke_rtl .cke_resizer
+{
+ cursor: move;
+}
+
+.cke_skin_office2003 .cke_resizer_rtl
+{
+ cursor: sw-resize;
+ /* resizer_rtl.gif*/
+ background-position: 0 -1115px;
+ float: left;
+}
+
+.cke_skin_office2003 .cke_resizer_horizontal,
+.cke_skin_office2003 .cke_rtl .cke_resizer_horizontal
+{
+ cursor: e-resize;
+}
+
+.cke_skin_office2003 .cke_resizer_vertical,
+.cke_skin_office2003 .cke_rtl .cke_resizer_vertical
+{
+ cursor: n-resize;
+}
+
+.cke_skin_office2003 .cke_maximized .cke_resizer
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,
+.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea
+{
+ position: absolute;
+}
+
+/* All voice labels are not displayed. */
+.cke_skin_office2003 .cke_voice_label
+{
+ display: none;
+}
+
+.cke_skin_office2003 legend.cke_voice_label
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_browser_ie legend.cke_voice_label
+{
+ position: absolute;
+ display: block;
+ width: 0;
+ height: 0;
+ overflow: hidden;
+}
diff --git a/_source/skins/office2003/menu.css b/_source/skins/office2003/menu.css
index b19a748..859b870 100644
--- a/_source/skins/office2003/menu.css
+++ b/_source/skins/office2003/menu.css
@@ -1,194 +1,229 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-.cke_skin_office2003 .cke_contextmenu
-{
- padding: 2px;
-}
-
-.cke_skin_office2003 .cke_menuitem a
-{
- display:block;
-}
-
-.cke_skin_office2003 .cke_menuitem span
-{
- cursor: default;
-}
-
-.cke_skin_office2003 .cke_menuitem a:hover,
-.cke_skin_office2003 .cke_menuitem a:focus,
-.cke_skin_office2003 .cke_menuitem a:active
-{
- background-color: #8db1ff;
- display:block;
-}
-
-.cke_hc .cke_menuitem a:hover,
-.cke_hc .cke_menuitem a:focus,
-.cke_hc .cke_menuitem a:active
-{
- border: 2px solid;
-}
-
-.cke_skin_office2003 .cke_menuitem .cke_icon
-{
- background-image: url(icons.png);
- background-position: 100px;
- background-repeat:no-repeat;
- background-color: transparent;
- width: 16px;
- height: 16px;
- float: left;
-}
-
-.cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon
-{
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
-}
-
-.cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
-{
- background-color: #f7f8fd;
- border: solid 4px #f7f8fd;
- width: 16px;
- height: 16px;
- float: left;
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
- clear: both;
-}
-
-.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_menuitem a:hover .cke_icon_wrapper,
-.cke_skin_office2003 .cke_menuitem a:focus .cke_icon_wrapper,
-.cke_skin_office2003 .cke_menuitem a:active .cke_icon_wrapper
-{
- background-color: #9d9d9d;
- border: solid 4px #9d9d9d;
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
-}
-
-.cke_skin_office2003 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
-.cke_skin_office2003 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
-.cke_skin_office2003 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
-{
- background-color: #f7f8fd;
- border: solid 4px #f7f8fd;
-}
-
-.cke_skin_office2003 .cke_menuitem .cke_label
-{
- display:block;
- padding-right: 3px;
- padding-top: 5px;
- padding-left: 4px;
- height:19px;
- margin-left: 24px;
- background-color: #fff;
-}
-/* Set these after the document has been loaded and we know the dimensions*/
-.cke_skin_office2003 .cke_frameLoaded .cke_menuitem .cke_label
-{
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
-}
-
-.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_label
-{
- padding-right: 0;
- margin-left: 0;
- padding-left: 3px;
- margin-right: 28px;
-}
-
-.cke_skin_office2003 .cke_menuitem a.cke_disabled .cke_label
-{
- filter: alpha(opacity=30); /* IE */
- opacity: 0.30; /* Safari, Opera and Mozilla */
-}
-
-.cke_skin_office2003 .cke_menuitem a:hover .cke_label,
-.cke_skin_office2003 .cke_menuitem a:focus .cke_label,
-.cke_skin_office2003 .cke_menuitem a:active .cke_label
-{
- background-color: #8db1ff;
-}
-
-.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover .cke_label,
-.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus .cke_label,
-.cke_skin_office2003 .cke_menuitem a.cke_disabled:active .cke_label
-{
- background-color: transparent;
-}
-
-.cke_skin_office2003 .cke_menuseparator
-{
- background-color: #f7f8fd;
- height: 2px;
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
-
- _font-size: 0;
-}
-
-.cke_skin_office2003 .cke_menuarrow
-{
- /* arrowright.gif*/
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 0 -1071px;
- background-repeat: no-repeat;
- height: 5px;
- width: 3px;
- float: right;
- margin-right: 2px;
- margin-top: 3px;
-}
-
-.cke_rtl .cke_skin_office2003 .cke_menuarrow
-{
- float: left;
- margin-right: 0;
- margin-left: 2px;
- /* arrowleft.gif*/
- background-position: 0 -1050px;
-}
-
-.cke_skin_office2003 .cke_menuarrow span
-{
- display: none;
-}
-
-.cke_hc .cke_skin_office2003 .cke_menuarrow
-{
- width: auto;
- margin-top: 0;
-}
-
-.cke_hc .cke_skin_office2003 .cke_menuarrow span
-{
- display: inline;
-}
-
-/* #3766 In the context menu, long labels with second level menu get wrapped */
-.cke_browser_ie.cke_ltr .cke_skin_office2003 .cke_menuarrow
-{
- position: absolute;
- right: 2px;
-}
-
-.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuarrow
-{
- position: absolute;
- left: 2px;
-}
-/* END #3766 */
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_contextmenu
+{
+ padding: 2px;
+}
+
+.cke_skin_office2003 .cke_menuitem a
+{
+ display:block;
+}
+
+.cke_skin_office2003 .cke_menuitem span
+{
+ cursor: default;
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover,
+.cke_skin_office2003 .cke_menuitem a:focus,
+.cke_skin_office2003 .cke_menuitem a:active
+{
+ background-color: #8db1ff;
+ display:block;
+}
+
+.cke_hc .cke_menuitem a:hover,
+.cke_hc .cke_menuitem a:focus,
+.cke_hc .cke_menuitem a:active
+{
+ border: 2px solid;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_icon
+{
+ background-image: url(icons.png);
+ background-position: 100px;
+ background-repeat:no-repeat;
+ background-color: transparent;
+ width: 16px;
+ height: 16px;
+ float: left;
+}
+
+.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon
+{
+ background-image: url(icons_rtl.png);
+}
+
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_browser_ie .cke_skin_office2003 .cke_menuitem .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_browser_ie6 .cke_skin_office2003 .cke_menuitem .cke_icon,
+.cke_browser_ie .cke_skin_office2003 .cke_menuitem.cke_noalphafix .cke_icon
+{
+ filter: ;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon
+{
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_browser_ie .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_browser_ie6 .cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon,
+.cke_browser_ie .cke_skin_office2003 .cke_menuitem.cke_noalphafix .cke_disabled .cke_icon
+{
+ filter: ;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
+{
+ background-color: #f7f8fd;
+ border: solid 4px #f7f8fd;
+ width: 16px;
+ height: 16px;
+ float: left;
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+ clear: both;
+}
+
+.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:focus .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:active .cke_icon_wrapper
+{
+ background-color: #9d9d9d;
+ border: solid 4px #9d9d9d;
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
+{
+ background-color: #f7f8fd;
+ border: solid 4px #f7f8fd;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_label
+{
+ display:block;
+ padding-right: 3px;
+ padding-top: 5px;
+ padding-left: 4px;
+ height:19px;
+ margin-left: 24px;
+ background-color: #fff;
+}
+/* Set these after the document has been loaded and we know the dimensions*/
+.cke_skin_office2003 .cke_frameLoaded .cke_menuitem .cke_label
+{
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_label
+{
+ padding-right: 0;
+ margin-left: 0;
+ padding-left: 3px;
+ margin-right: 28px;
+}
+
+.cke_skin_office2003 .cke_menuitem a.cke_disabled .cke_label
+{
+ filter: alpha(opacity=30); /* IE */
+ opacity: 0.30; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover .cke_label,
+.cke_skin_office2003 .cke_menuitem a:focus .cke_label,
+.cke_skin_office2003 .cke_menuitem a:active .cke_label
+{
+ background-color: #8db1ff;
+}
+
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover .cke_label,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus .cke_label,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:active .cke_label
+{
+ background-color: transparent;
+}
+
+.cke_skin_office2003 .cke_menuseparator
+{
+ background-color: #f7f8fd;
+ height: 2px;
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+
+ _font-size: 0;
+}
+
+.cke_skin_office2003 .cke_menuarrow
+{
+ /* arrowright.gif*/
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 0 -1071px;
+ background-repeat: no-repeat;
+ height: 5px;
+ width: 3px;
+ float: right;
+ margin-right: 2px;
+ margin-top: 3px;
+}
+
+.cke_rtl .cke_skin_office2003 .cke_menuarrow
+{
+ float: left;
+ margin-right: 0;
+ margin-left: 2px;
+ /* arrowleft.gif*/
+ background-position: 0 -1050px;
+}
+
+.cke_skin_office2003 .cke_menuarrow span
+{
+ display: none;
+}
+
+.cke_hc .cke_skin_office2003 .cke_menuarrow
+{
+ width: auto;
+ margin-top: 0;
+}
+
+.cke_hc .cke_skin_office2003 .cke_menuarrow span
+{
+ display: inline;
+}
+
+/* #3766 In the context menu, long labels with second level menu get wrapped */
+.cke_browser_ie.cke_ltr .cke_skin_office2003 .cke_menuarrow
+{
+ position: absolute;
+ right: 2px;
+}
+
+.cke_browser_ie.cke_rtl .cke_skin_office2003 .cke_menuarrow
+{
+ position: absolute;
+ left: 2px;
+}
+/* END #3766 */
diff --git a/_source/skins/office2003/panel.css b/_source/skins/office2003/panel.css
index 30ec416..a1bef49 100644
--- a/_source/skins/office2003/panel.css
+++ b/_source/skins/office2003/panel.css
@@ -1,11 +1,11 @@
/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
.cke_skin_office2003 .cke_panel
{
- border: 1px solid #8f8f73;
+ border: 1px solid #8f8f73;
background-color: #fff;
width: 120px;
@@ -54,7 +54,7 @@ ul.cke_panel_list
list-style-type: none;
margin: 3px;
padding: 0px;
- white-space: nowrap;
+ white-space: nowrap;
}
li.cke_panel_listItem
@@ -67,10 +67,10 @@ li.cke_panel_listItem
padding: 2px;
display: block;
border: 1px solid #fff;
- color: inherit;
+ color: inherit !important;
text-decoration: none;
overflow: hidden;
- text-overflow: ellipsis;
+ text-overflow: ellipsis;
}
/* IE6 */
@@ -114,10 +114,10 @@ li.cke_panel_listItem
.cke_panel_grouptitle
{
- font-size: 11px;
- font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+ font-size: 11px;
+ font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
font-weight: bold;
- white-space: nowrap;
+ white-space: nowrap;
background-color: #dcdcdc;
color: #000;
margin:0px;
@@ -147,8 +147,8 @@ li.cke_panel_listItem
.cke_colorblock
{
padding: 3px;
- font-size: 11px;
- font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
+ font-size: 11px;
+ font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
}
.cke_colorblock,
@@ -162,7 +162,7 @@ span.cke_colorbox
{
width: 10px;
height: 10px;
- border: #808080 1px solid;
+ border: #808080 1px solid;
float: left;
}
@@ -173,30 +173,31 @@ span.cke_colorbox
a.cke_colorbox
{
- border: #fff 1px solid;
- padding: 2px;
- float: left;
+ border: #fff 1px solid;
+ padding: 2px;
+ float: left;
}
.cke_rtl a.cke_colorbox
{
- float: right;
+ float: right;
}
a:hover.cke_colorbox,
a:focus.cke_colorbox,
a:active.cke_colorbox
{
- border: #316ac5 1px solid;
- background-color: #dff1ff;
+ border: #316ac5 1px solid;
+ background-color: #dff1ff;
}
a.cke_colorauto,
a.cke_colormore
{
- border: #fff 1px solid;
- padding: 2px;
- display: block;
+ border: #fff 1px solid;
+ padding: 2px;
+ display: block;
+ cursor: pointer;
}
a:hover.cke_colorauto,
@@ -206,6 +207,6 @@ a:focus.cke_colormore,
a:active.cke_colorauto,
a:active.cke_colormore
{
- border: #316ac5 1px solid;
- background-color: #dff1ff;
+ border: #316ac5 1px solid;
+ background-color: #dff1ff;
}
diff --git a/_source/skins/office2003/presets.css b/_source/skins/office2003/presets.css
index cd66a19..31a10c4 100644
--- a/_source/skins/office2003/presets.css
+++ b/_source/skins/office2003/presets.css
@@ -1,49 +1,49 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-/* "Source" button label */
-.cke_skin_office2003 .cke_button_source .cke_label
-{
- display: inline;
-}
-
-/* "Styles" panel size */
-.cke_skin_office2003 .cke_styles_panel
-{
- width: 150px;
- height: 170px;
-}
-
-/* "Format" panel size */
-.cke_skin_office2003 .cke_format_panel
-{
- width: 150px;
- height: 170px;
-}
-
-/* "Font" panel size */
-.cke_skin_office2003 .cke_font_panel
-{
- width: 150px;
- height: 170px;
-}
-
-/* "Font Size" panel size */
-.cke_skin_office2003 .cke_fontSize_panel
-{
- height: 170px;
-}
-
-/* "Font Size" combo width */
-.cke_skin_office2003 .cke_fontSize .cke_text
-{
- width: 20px;
-}
-
-/* "Font Size" combo width (IE Quirks) */
-.cke_skin_office2003 .cke_browser_iequirks .cke_fontSize .cke_text
-{
- width: 32px;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* "Source" button label */
+.cke_skin_office2003 .cke_button_source .cke_label
+{
+ display: inline;
+}
+
+/* "Styles" panel size */
+.cke_skin_office2003 .cke_styles_panel
+{
+ width: 150px;
+ height: 170px;
+}
+
+/* "Format" panel size */
+.cke_skin_office2003 .cke_format_panel
+{
+ width: 150px;
+ height: 170px;
+}
+
+/* "Font" panel size */
+.cke_skin_office2003 .cke_font_panel
+{
+ width: 150px;
+ height: 170px;
+}
+
+/* "Font Size" panel size */
+.cke_skin_office2003 .cke_fontSize_panel
+{
+ height: 170px;
+}
+
+/* "Font Size" combo width */
+.cke_skin_office2003 .cke_fontSize .cke_text
+{
+ width: 20px;
+}
+
+/* "Font Size" combo width (IE Quirks) */
+.cke_skin_office2003 .cke_browser_iequirks .cke_fontSize .cke_text
+{
+ width: 32px;
+}
diff --git a/_source/skins/office2003/reset.css b/_source/skins/office2003/reset.css
index c405511..ae1d355 100644
--- a/_source/skins/office2003/reset.css
+++ b/_source/skins/office2003/reset.css
@@ -1,78 +1,85 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-/**
- * Reset and Default Values
- */
-.cke_skin_office2003 *,
-.cke_skin_office2003 a:hover,
-.cke_skin_office2003 a:link,
-.cke_skin_office2003 a:visited,
-.cke_skin_office2003 a:active
-{
- margin: 0;
- padding: 0;
- border: 0;
- background: transparent;
- text-decoration: none;
- font: normal normal normal 100% Sans-Serif;
- width: auto;
- height: auto;
- border-collapse: collapse;
- text-align: left;
- vertical-align: baseline;
- white-space: nowrap;
- cursor: auto;
- color: #000;
-
- font-size: 11px;
- font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
-}
-
-.cke_skin_office2003 .cke_rtl *,
-.cke_skin_office2003 .cke_rtl a:hover,
-.cke_skin_office2003 .cke_rtl a:link,
-.cke_skin_office2003 .cke_rtl a:visited,
-.cke_skin_office2003 .cke_rtl a:active,
-.cke_rtl .cke_skin_office2003 *,
-.cke_rtl .cke_skin_office2003 a:hover,
-.cke_rtl .cke_skin_office2003 a:link,
-.cke_rtl .cke_skin_office2003 a:visited,
-.cke_rtl .cke_skin_office2003 a:active
-{
- text-align: right;
-}
-
-.cke_skin_office2003 iframe
-{
- vertical-align: inherit; /** For IE */
-}
-
-.cke_skin_office2003 textarea
-{
- white-space: pre;
-}
-
-.cke_skin_office2003 .cke_browser_gecko textarea
-{
- cursor: text;
-}
-
-.cke_skin_office2003 .cke_browser_gecko textarea[disabled]
-{
- cursor: default;
-}
-
-.cke_skin_office2003 input[type="text"],
-.cke_skin_office2003 input[type="password"]
-{
- cursor: text;
-}
-
-.cke_skin_office2003 input[type="text"][disabled],
-.cke_skin_office2003 input[type="password"][disabled]
-{
- cursor: default;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Reset and Default Values
+ */
+.cke_skin_office2003 *,
+.cke_skin_office2003 a:hover,
+.cke_skin_office2003 a:link,
+.cke_skin_office2003 a:visited,
+.cke_skin_office2003 a:active
+{
+ margin: 0;
+ padding: 0;
+ border: 0;
+ background: transparent;
+ text-decoration: none;
+ font: normal normal normal 100% Sans-Serif;
+ width: auto;
+ height: auto;
+ border-collapse: collapse;
+ text-align: left;
+ vertical-align: baseline;
+ white-space: nowrap;
+ cursor: auto;
+ color: #000;
+ float: none;
+
+ font-size: 11px;
+ font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_skin_office2003 .cke_rtl *,
+.cke_skin_office2003 .cke_rtl a:hover,
+.cke_skin_office2003 .cke_rtl a:link,
+.cke_skin_office2003 .cke_rtl a:visited,
+.cke_skin_office2003 .cke_rtl a:active,
+.cke_rtl .cke_skin_office2003 *,
+.cke_rtl .cke_skin_office2003 a:hover,
+.cke_rtl .cke_skin_office2003 a:link,
+.cke_rtl .cke_skin_office2003 a:visited,
+.cke_rtl .cke_skin_office2003 a:active
+{
+ text-align: right;
+}
+
+.cke_skin_office2003 iframe
+{
+ vertical-align: inherit; /** For IE */
+}
+
+.cke_skin_office2003 textarea
+{
+ white-space: pre;
+}
+
+.cke_skin_office2003 .cke_browser_gecko textarea
+{
+ cursor: text;
+}
+
+.cke_skin_office2003 .cke_browser_gecko textarea[disabled]
+{
+ cursor: default;
+}
+
+.cke_skin_office2003 input[type="text"],
+.cke_skin_office2003 input[type="password"]
+{
+ cursor: text;
+}
+
+.cke_skin_office2003 input[type="text"][disabled],
+.cke_skin_office2003 input[type="password"][disabled]
+{
+ cursor: default;
+}
+
+.cke_skin_office2003 fieldset
+{
+ padding: 10px;
+ border: 2px groove #E0DFE3;
+}
diff --git a/_source/skins/office2003/richcombo.css b/_source/skins/office2003/richcombo.css
index dfe97c4..9d63314 100644
--- a/_source/skins/office2003/richcombo.css
+++ b/_source/skins/office2003/richcombo.css
@@ -7,25 +7,13 @@
margin-right: 2px;
margin-top: 2px;
vertical-align: top;
- float: left;
}
.cke_skin_office2003 .cke_browser_ie .cke_rcombo
{
- #float: none;
#display: inline;
}
-.cke_skin_office2003 .cke_rtl .cke_rcombo
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_rcombo
-{
- #float: none;
-}
-
.cke_skin_office2003 .cke_rcombopanel
{
border: 1px solid #316ac5;
@@ -60,6 +48,7 @@
{
display: inline-block;
float: left;
+ cursor: default;
line-height: 24px;
height: 24px;
@@ -108,6 +97,7 @@
overflow: hidden;
display: inline-block;
vertical-align: top;
+ cursor: default;
}
.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_text
@@ -139,26 +129,39 @@
.cke_skin_office2003 .cke_rcombo .cke_openbutton
{
display: inline-block;
+ border-top: 1px solid #8f8f73;
+ border-bottom: 1px solid #8f8f73;
+}
+.cke_skin_office2003 .cke_rcombo .cke_openbutton .cke_icon
+{
+ display: inline-block;
background-position: 5px -1002px;
background-image: url(images/sprites.png);
- background-image: url(images/sprites_ie6.png);
+ _background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
-
- border-top: 1px solid #8f8f73;
- border-bottom: 1px solid #8f8f73;
width: 14px;
height: 22px;
}
-.cke_skin_office2003 .cke_rcombo .cke_openbutton span
+.cke_skin_office2003 .cke_browser_iequirks .cke_rcombo .cke_openbutton .cke_icon
{
- display: none;
+ height: 20px;
}
-.cke_skin_office2003 .cke_hc .cke_rcombo .cke_openbutton span
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_skin_office2003 .cke_browser_ie .cke_rcombo .cke_openbutton .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_skin_office2003 .cke_browser_ie6 .cke_rcombo .cke_openbutton .cke_icon
{
- display : inline;
+ filter: ;
+}
+.cke_skin_office2003 .cke_hc .cke_rcombo .cke_openbutton .cke_icon
+{
+ background: none;
+ filter: ;
}
.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_openbutton
@@ -242,6 +245,16 @@
opacity: 0.5; /* Safari, Opera and Mozilla */
}
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_skin_office2003 .cke_browser_ie .cke_rcombo .cke_disabled .cke_openbutton
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=50);
+}
+.cke_skin_office2003 .cke_browser_ie6 .cke_rcombo .cke_disabled .cke_openbutton
+{
+ filter: alpha(opacity=50);
+}
+
.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_text,
.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_openbutton
{
@@ -249,6 +262,7 @@
opacity: 0.8;
}
+
.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_text
{
color: #fff;
@@ -287,3 +301,9 @@
{
float: none;
}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_font .cke_text,
+.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_fontSize .cke_text
+{
+ direction: ltr;
+}
diff --git a/_source/skins/office2003/skin.js b/_source/skins/office2003/skin.js
index b357cfc..43eb314 100644
--- a/_source/skins/office2003/skin.js
+++ b/_source/skins/office2003/skin.js
@@ -1,81 +1,74 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-CKEDITOR.skins.add( 'office2003', (function()
-{
- var preload = [];
-
- if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
- {
- // For IE6, we need to preload some images, otherwhise they will be
- // downloaded several times (CSS background bug).
- preload.push( 'icons.png', 'images/sprites_ie6.png', 'images/dialog_sides.gif' );
- }
-
- return {
- preload : preload,
- editor : { css : [ 'editor.css' ] },
- dialog : { css : [ 'dialog.css' ] },
- templates : { css : [ 'templates.css' ] },
- margins : [ 0, 14, 18, 14 ]
- };
-})() );
-
-(function()
-{
- CKEDITOR.dialog ? dialogSetup() : CKEDITOR.on( 'dialogPluginReady', dialogSetup );
-
- function dialogSetup()
- {
- CKEDITOR.dialog.on( 'resize', function( evt )
- {
- var data = evt.data,
- width = data.width,
- height = data.height,
- dialog = data.dialog,
- contents = dialog.parts.contents;
-
- if ( data.skin != 'office2003' )
- return;
-
- contents.setStyles(
- {
- width : width + 'px',
- height : height + 'px'
- });
-
- if ( !CKEDITOR.env.ie )
- return;
-
- // Fix the size of the elements which have flexible lengths.
- var fixSize = function()
- {
- var innerDialog = dialog.parts.dialog.getChild( [ 0, 0, 0 ] ),
- body = innerDialog.getChild( 0 );
-
- // tc
- var el = innerDialog.getChild( 2 );
- el.setStyle( 'width', ( body.$.offsetWidth ) + 'px' );
-
- // bc
- el = innerDialog.getChild( 7 );
- el.setStyle( 'width', ( body.$.offsetWidth - 28 ) + 'px' );
-
- // ml
- el = innerDialog.getChild( 4 );
- el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
-
- // mr
- el = innerDialog.getChild( 5 );
- el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
- };
- setTimeout( fixSize, 100 );
-
- // Ensure size is correct for RTL mode. (#4003)
- if ( evt.editor.lang.dir == 'rtl' )
- setTimeout( fixSize, 1000 );
- });
- }
-})();
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.skins.add( 'office2003', (function()
+{
+ return {
+ editor : { css : [ 'editor.css' ] },
+ dialog : { css : [ 'dialog.css' ] },
+ separator : { canGroup: false },
+ templates : { css : [ 'templates.css' ] },
+ margins : [ 0, 14, 18, 14 ]
+ };
+})() );
+
+(function()
+{
+ CKEDITOR.dialog ? dialogSetup() : CKEDITOR.on( 'dialogPluginReady', dialogSetup );
+
+ function dialogSetup()
+ {
+ CKEDITOR.dialog.on( 'resize', function( evt )
+ {
+ var data = evt.data,
+ width = data.width,
+ height = data.height,
+ dialog = data.dialog,
+ contents = dialog.parts.contents;
+
+ if ( data.skin != 'office2003' )
+ return;
+
+ contents.setStyles(
+ {
+ width : width + 'px',
+ height : height + 'px'
+ });
+
+ if ( !CKEDITOR.env.ie || CKEDITOR.env.ie9Compat )
+ return;
+
+ // Fix the size of the elements which have flexible lengths.
+ var fixSize = function()
+ {
+ var innerDialog = dialog.parts.dialog.getChild( [ 0, 0, 0 ] ),
+ body = innerDialog.getChild( 0 ),
+ bodyWidth = body.getSize( 'width' );
+ height += body.getChild( 0 ).getSize( 'height' ) + 1;
+
+ // tc
+ var el = innerDialog.getChild( 2 );
+ el.setSize( 'width', bodyWidth );
+
+ // bc
+ el = innerDialog.getChild( 7 );
+ el.setSize( 'width', bodyWidth - 28 );
+
+ // ml
+ el = innerDialog.getChild( 4 );
+ el.setSize( 'height', height );
+
+ // mr
+ el = innerDialog.getChild( 5 );
+ el.setSize( 'height', height );
+ };
+ setTimeout( fixSize, 100 );
+
+ // Ensure size is correct for RTL mode. (#4003)
+ if ( evt.editor.lang.dir == 'rtl' )
+ setTimeout( fixSize, 1000 );
+ });
+ }
+})();
diff --git a/_source/skins/office2003/templates.css b/_source/skins/office2003/templates.css
index dc3ce62..8754d3c 100644
--- a/_source/skins/office2003/templates.css
+++ b/_source/skins/office2003/templates.css
@@ -1,87 +1,87 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-/**
- * Styles for the "templates" plugin.
- */
-
-.cke_skin_office2003 .cke_tpl_list
-{
- border: #dcdcdc 2px solid;
- background-color: #ffffff;
- overflow: auto;
- width: 100%;
- height: 220px;
-}
-
-.cke_skin_office2003 .cke_tpl_item
-{
- margin: 5px;
- padding: 7px;
- border: #eeeeee 1px solid;
- *width: 88%;
-}
-
-.cke_skin_office2003 .cke_tpl_preview
-{
- border-collapse: separate;
- text-indent:0;
- width: 100%;
-}
-.cke_skin_office2003 .cke_tpl_preview td
-{
- padding: 2px;
- vertical-align: middle;
-}
-.cke_skin_office2003 .cke_tpl_preview .cke_tpl_preview_img
-{
- width: 100px;
-}
-.cke_skin_office2003 .cke_tpl_preview span
-{
- white-space: normal;
-}
-
-.cke_skin_office2003 .cke_tpl_title
-{
- font-weight: bold;
-}
-
-.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,
-.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,
-.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item
-{
- border: #ff9933 1px solid !important;
- background-color: #fffacd !important;
-}
-
-.cke_skin_office2003 .cke_tpl_list a:active *,
-.cke_skin_office2003 .cke_tpl_list a:hover *,
-.cke_skin_office2003 .cke_tpl_list a:focus *
-{
- cursor: pointer;
-}
-
-/* IE6 contextual selectors childs won't get :hover transition until,
- the hover style of the link itself contains certain CSS declarations.*/
-.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:active,
-.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:hover,
-.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:focus
-{
- background-position: 0 0;
-}
-
-.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,
-.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,
-.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item
-{
- border-width: 3px;
-}
-
-.cke_skin_office2003 .cke_tpl_empty, .cke_tpl_loading
-{
- text-align: center;
- padding: 5px;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Styles for the "templates" plugin.
+ */
+
+.cke_skin_office2003 .cke_tpl_list
+{
+ border: #dcdcdc 2px solid;
+ background-color: #ffffff;
+ overflow: auto;
+ width: 100%;
+ height: 220px;
+}
+
+.cke_skin_office2003 .cke_tpl_item
+{
+ margin: 5px;
+ padding: 7px;
+ border: #eeeeee 1px solid;
+ *width: 88%;
+}
+
+.cke_skin_office2003 .cke_tpl_preview
+{
+ border-collapse: separate;
+ text-indent:0;
+ width: 100%;
+}
+.cke_skin_office2003 .cke_tpl_preview td
+{
+ padding: 2px;
+ vertical-align: middle;
+}
+.cke_skin_office2003 .cke_tpl_preview .cke_tpl_preview_img
+{
+ width: 100px;
+}
+.cke_skin_office2003 .cke_tpl_preview span
+{
+ white-space: normal;
+}
+
+.cke_skin_office2003 .cke_tpl_title
+{
+ font-weight: bold;
+}
+
+.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,
+.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,
+.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item
+{
+ border: #ff9933 1px solid !important;
+ background-color: #fffacd !important;
+}
+
+.cke_skin_office2003 .cke_tpl_list a:active *,
+.cke_skin_office2003 .cke_tpl_list a:hover *,
+.cke_skin_office2003 .cke_tpl_list a:focus *
+{
+ cursor: pointer;
+}
+
+/* IE6 contextual selectors childs won't get :hover transition until,
+ the hover style of the link itself contains certain CSS declarations.*/
+.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:active,
+.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:hover,
+.cke_skin_office2003 .cke_browser_ie6 .cke_tpl_list a:focus
+{
+ background-position: 0 0;
+}
+
+.cke_skin_office2003 .cke_tpl_list a:active .cke_tpl_item,
+.cke_skin_office2003 .cke_tpl_list a:hover .cke_tpl_item,
+.cke_skin_office2003 .cke_tpl_list a:focus .cke_tpl_item
+{
+ border-width: 3px;
+}
+
+.cke_skin_office2003 .cke_tpl_empty, .cke_tpl_loading
+{
+ text-align: center;
+ padding: 5px;
+}
diff --git a/_source/skins/office2003/toolbar.css b/_source/skins/office2003/toolbar.css
index fd40da2..2941c7f 100644
--- a/_source/skins/office2003/toolbar.css
+++ b/_source/skins/office2003/toolbar.css
@@ -1,463 +1,522 @@
-/*
-Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-@media print
-{
- .cke_skin_office2003 .cke_toolbox
- {
- display: none;
- }
-}
-
-.cke_skin_office2003 .cke_browser_webkit .cke_toolbox,
-.cke_skin_office2003 .cke_browser_webkit .cke_toolbox > span
-{
- white-space: normal;
-}
-
-.cke_skin_office2003 .cke_toolbox
-{
- clear: both;
- /* Define the padding-bottom otherwise the collapser button will not be clickable #4932*/
- padding-bottom: 1px;
-}
-
-.cke_skin_office2003 a.cke_toolbox_collapser,
-.cke_skin_office2003 a:hover.cke_toolbox_collapser
-{
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 3px -1026px; /* +3px +4px */
- background-repeat: no-repeat;
- width: 11px;
- height: 11px;
- float: right;
- border: outset 1px;
- margin: 11px 2px 2px;
- cursor: pointer;
-}
-
-.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,
-.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser
-{
- float: left;
-}
-
-.cke_skin_office2003 a.cke_toolbox_collapser span
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_hc a.cke_toolbox_collapser span
-{
- font-size: 10px;
- font-weight: bold;
- font-family: Arial;
- display: inline;
-}
-
-.cke_skin_office2003 a.cke_toolbox_collapser_min,
-.cke_skin_office2003 a:hover.cke_toolbox_collapser_min
-{
- /* arrowleft.gif*/
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 4px -1047px; /* +4px +3px */
- background-repeat: no-repeat;
- margin: 2px;
-}
-
-.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,
-.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min
-{
- /* arrowright.gif*/
- background-position: 4px -1068px; /* +2px +3px */
-}
-
-.cke_skin_office2003 .cke_toolbar
-{
- background-color: #d6dff7;
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-position: 0 -962px;
- background-repeat: repeat-x;
- display: inline-block;
- float: left;
- !height: 28px;
- !line-height: 28px;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_toolbar
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_toolgroup
-{
- display: inline-block;
- float: left;
- height: 28px;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_toolgroup
-{
- #float: none;
- #display: inline;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_toolgroup
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup
-{
- #float: none;
-}
-
-.cke_skin_office2003 .cke_separator
-{
- display: inline-block;
- float: left;
- border-left: solid 1px #B2CBFF;
- margin: 6px 2px;
- height: 16px;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_separator
-{
- #float: none;
- #display: inline;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_separator
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator
-{
- #float: none;
-}
-
-.cke_skin_office2003 .cke_break
-{
- clear: left;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_break
-{
- clear: right;
-}
-
-.cke_skin_office2003 .cke_toolbar_start
-{
- display: inline-block;
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-repeat: no-repeat;
- background-position: -27px -765px;
- width: 10px;
- height: 28px;
- float: left;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_toolbar_start
-{
- #float: none;
- #display: inline;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_toolbar_start
-{
- background-position: -27px -816px;
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start
-{
- #float: none;
-}
-
-.cke_skin_office2003 .cke_toolbar_end
-{
- display: inline-block;
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-repeat: no-repeat;
- background-position: -29px -861px;
- width: 4px;
- height: 28px;
- float: left;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_toolbar_end
-{
- #float: none;
- #display: inline;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_toolbar_end
-{
- background-position: -29px -907px;
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end
-{
- #float: none;
-}
-
-.cke_skin_office2003 .cke_button a,
-.cke_skin_office2003 .cke_button a:hover,
-.cke_skin_office2003 .cke_button a:focus,
-.cke_skin_office2003 .cke_button a:active,
-.cke_skin_office2003 .cke_button a.cke_off
-{
- border: solid 1px transparent;
- border-radius: 3px;
- outline: none;
- padding-top: 2px;
- padding-left: 4px;
- padding-right: 4px;
- padding-bottom: 2px;
- margin-top: 2px;
- height: 18px;
- vertical-align: top;
-
- _border: none;
- _margin: 3px 1px 1px 1px;
- cursor: default;
- display: inline-block;
-}
-
-.cke_skin_office2003 .cke_button a,
-.cke_skin_office2003 .cke_button a.cke_off
-{
- filter: alpha(opacity=70); /* IE */
- opacity: 0.70; /* Safari, Opera and Mozilla */
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
-}
-
-.cke_skin_office2003 .cke_hc .cke_button a,
-.cke_skin_office2003 .cke_hc .cke_button a.cke_off
-{
- opacity: 1.0;
- filter: alpha(opacity=100);
- _border: 1px solid transparent;
-}
-
-.cke_skin_office2003 .cke_button a.cke_on
-{
- border: solid 1px #316ac5;
- background-color: #c1d2ee;
- filter: alpha(opacity=100); /* IE */
- opacity: 1; /* Safari, Opera and Mozilla */
-
- _margin: 2px 0 0 0;
-}
-
-.cke_skin_office2003 .cke_hc .cke_button a:hover,
-.cke_skin_office2003 .cke_hc .cke_button a:focus,
-.cke_skin_office2003 .cke_hc .cke_button a:active /* IE */
-{
- padding: 0 2px !important;
- border-width: 3px;
-}
-
-.cke_skin_office2003 .cke_button a.cke_disabled *,
-.cke_skin_office2003 .cke_browser_ie a:hover.cke_button .cke_disabled *
-{
- filter: alpha(opacity=30); /* IE */
- opacity: 0.3; /* Safari, Opera and Mozilla */
-}
-
-.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled *,
-.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled *
-{
- filter: alpha(opacity=60);
- opacity: 0.6;
-}
-
-.cke_skin_office2003 .cke_button a:hover,
-.cke_skin_office2003 .cke_button a:focus,
-.cke_skin_office2003 .cke_button a:active /* IE */
-{
- border: solid 1px #316ac5;
- background-color: #dff1ff;
- filter: alpha(opacity=100); /* IE */
- opacity: 1; /* Safari, Opera and Mozilla */
- vertical-align: top;
-
- _margin: 2px 0 0 0;
- padding: 2px 4px;
-}
-
-.cke_skin_office2003 .cke_button .cke_icon
-{
- background-image: url(icons.png);
- background-position: 100px;
- background-repeat:no-repeat;
- margin-top:1px;
- width: 16px;
- height: 16px;
- display: inline-block;
-}
-
-.cke_skin_office2003 .cke_button .cke_label
-{
- display: none;
- padding-left: 3px;
- cursor: default;
- vertical-align:middle;
- _background-image: url(images/sprites_ie6.png);
- _background-position: 0 -970px;
- _background-repeat: repeat-x;
-}
-
-.cke_skin_office2003 .cke_button a:hover .cke_label
-{
- _background-color: #dff1ff;
- _background-image: none;
-}
-
-.cke_skin_office2003 .cke_button a.cke_on .cke_label
-{
- _background-color: #c1d2ee;
- _background-image: none;
-}
-
-.cke_skin_office2003 .cke_hc .cke_button .cke_label
-{
- padding: 0;
- display: inline-block;
-}
-
-.cke_skin_office2003 .cke_hc .cke_button .cke_icon
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_accessibility
-{
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- overflow: hidden;
-}
-
-.cke_skin_office2003 .cke_button .cke_buttonarrow
-{
- display: inline-block;
- height: 18px;
- width: 8px;
- background-position: 2px -1004px;
- background-image: url(images/sprites.png);
- _background-image: url(images/sprites_ie6.png);
- background-repeat: no-repeat;
-}
-
-.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow
-{
- background-position: 0 -1004px;
-}
-
-/*** Firefox 2 ***/
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end
-{
- display: block;
- float: left;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon
-{
- display: none;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_break
-{
- float: left;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
-.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break
-{
- float: right;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_separator
-{
- margin-top: 4px;
-}
-
-.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label
-{
- padding-top: 3px;
-}
-
-/*** IE6 ***/
-
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,
-.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end
-{
- float: none;
-}
-
-/*** IE8 ***/
-
-.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,
-.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup
-{
- vertical-align: top;
-}
-
-.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
-.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup
-{
- /* revert previous */
- vertical-align: baseline;
-}
-
-/* Separator + Combo penetrate toolbar in IE quirks. (#4461) */
-.cke_skin_office2003 .cke_browser_iequirks .cke_separator
-{
- vertical-align: text-bottom;
-}
-/* Fix cursor shape consistency on toolbar combos (#4031) */
-.cke_skin_office2003 .cke_browser_ie .cke_rcombo,
-.cke_skin_office2003 .cke_browser_ie .cke_rcombo *
-{
- cursor: default;
-}
+/*
+Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+ .cke_skin_office2003 .cke_toolbox
+ {
+ display: none;
+ }
+}
+
+.cke_skin_office2003 .cke_browser_webkit .cke_toolbox,
+.cke_skin_office2003 .cke_browser_webkit .cke_toolbox > span
+{
+ white-space: normal;
+}
+
+.cke_skin_office2003 .cke_toolbox
+{
+ clear: both;
+ /* Define the padding-bottom otherwise the collapser button will not be clickable #4932*/
+ padding-bottom: 1px;
+}
+
+.cke_skin_office2003 a.cke_toolbox_collapser,
+.cke_skin_office2003 a:hover.cke_toolbox_collapser
+{
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 3px -1026px; /* +3px +4px */
+ background-repeat: no-repeat;
+ width: 11px;
+ height: 11px;
+ float: right;
+ border: outset 1px;
+ margin: 11px 2px 2px;
+ cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,
+.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser
+{
+ float: left;
+}
+
+.cke_skin_office2003 a.cke_toolbox_collapser span
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_hc a.cke_toolbox_collapser span
+{
+ font-size: 10px;
+ font-weight: bold;
+ font-family: Arial;
+ display: inline;
+}
+
+.cke_skin_office2003 a.cke_toolbox_collapser_min,
+.cke_skin_office2003 a:hover.cke_toolbox_collapser_min
+{
+ /* arrowleft.gif*/
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 4px -1047px; /* +4px +3px */
+ background-repeat: no-repeat;
+ margin: 2px;
+}
+
+.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,
+.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min
+{
+ /* arrowright.gif*/
+ background-position: 4px -1068px; /* +2px +3px */
+}
+
+.cke_skin_office2003 .cke_toolbar
+{
+ background-color: #d6dff7;
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-position: 0 -962px;
+ background-repeat: repeat-x;
+ display: inline-block;
+ float: left;
+ !height: 28px;
+ !line-height: 28px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_toolgroup
+{
+ display: inline-block;
+ float: left;
+ height: 28px;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_toolgroup
+{
+ #float: none;
+ #display: inline;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolgroup
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup
+{
+ #float: none;
+}
+
+.cke_skin_office2003 .cke_separator
+{
+ display: inline-block;
+ float: left;
+ border-left: solid 1px #B2CBFF;
+ margin: 6px 2px;
+ height: 16px;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_separator
+{
+ #float: none;
+ #display: inline;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_separator
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator
+{
+ #float: none;
+}
+
+.cke_skin_office2003 .cke_break
+{
+ clear: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_break
+{
+ clear: right;
+}
+
+.cke_skin_office2003 .cke_toolbar_start
+{
+ display: inline-block;
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-repeat: no-repeat;
+ background-position: -27px -765px;
+ width: 10px;
+ height: 28px;
+ float: left;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_toolbar_start
+{
+ #float: none;
+ #display: inline;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar_start
+{
+ background-position: -27px -816px;
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start
+{
+ #float: none;
+}
+
+.cke_skin_office2003 .cke_toolbar_end
+{
+ display: inline-block;
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-repeat: no-repeat;
+ background-position: -29px -861px;
+ width: 4px;
+ height: 28px;
+ float: left;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_toolbar_end
+{
+ #float: none;
+ #display: inline;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar_end
+{
+ background-position: -29px -907px;
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end
+{
+ #float: none;
+}
+
+/*#7181*/
+.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_separator,
+.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_end
+{
+ vertical-align:middle;
+}
+
+.cke_skin_office2003 .cke_button a,
+.cke_skin_office2003 .cke_button a:hover,
+.cke_skin_office2003 .cke_button a:focus,
+.cke_skin_office2003 .cke_button a:active,
+.cke_skin_office2003 .cke_button a.cke_off
+{
+ border: solid 1px transparent;
+ border-radius: 3px;
+ outline: none;
+ padding-top: 2px;
+ padding-left: 4px;
+ padding-right: 4px;
+ padding-bottom: 2px;
+ margin-top: 2px;
+ height: 18px;
+ vertical-align: top;
+
+ _border: none;
+ _margin: 3px 1px 1px 1px;
+ cursor: default;
+ display: inline-block;
+}
+
+.cke_skin_office2003 .cke_button a,
+.cke_skin_office2003 .cke_button a.cke_off
+{
+ filter: alpha(opacity=70); /* IE */
+ opacity: 0.70; /* Safari, Opera and Mozilla */
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a,
+.cke_skin_office2003 .cke_hc .cke_button a.cke_off
+{
+ opacity: 1.0;
+ filter: alpha(opacity=100);
+ _border: 1px solid transparent;
+}
+
+.cke_skin_office2003 .cke_button a.cke_on
+{
+ border: solid 1px #316ac5;
+ background-color: #c1d2ee;
+ filter: alpha(opacity=100); /* IE */
+ opacity: 1; /* Safari, Opera and Mozilla */
+
+ _margin: 2px 0 0 0;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a:hover,
+.cke_skin_office2003 .cke_hc .cke_button a:focus,
+.cke_skin_office2003 .cke_hc .cke_button a:active /* IE */
+{
+ padding: 0 2px !important;
+ border-width: 3px;
+}
+
+.cke_skin_office2003 .cke_button a.cke_disabled *
+{
+ filter: alpha(opacity=30); /* IE */
+ opacity: 0.3; /* Safari, Opera and Mozilla */
+}
+
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_skin_office2003 .cke_browser_ie .cke_button a.cke_disabled *,
+.cke_skin_office2003 .cke_browser_ie a:hover.cke_button .cke_disabled *
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
+}
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled *
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
+}
+.cke_skin_office2003 .cke_browser_ie6 .cke_button a.cke_disabled *,
+.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_button .cke_disabled *,
+.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled *
+{
+ filter: alpha(opacity=30);
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled *,
+.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled *
+{
+ filter: alpha(opacity=60);
+ opacity: 0.6;
+}
+
+.cke_skin_office2003 .cke_button a:hover,
+.cke_skin_office2003 .cke_button a:focus,
+.cke_skin_office2003 .cke_button a:active /* IE */
+{
+ border: solid 1px #316ac5;
+ background-color: #dff1ff;
+ filter: alpha(opacity=100); /* IE */
+ opacity: 1; /* Safari, Opera and Mozilla */
+ vertical-align: top;
+
+ _margin: 2px 0 0 0;
+ padding: 2px 4px;
+}
+
+.cke_skin_office2003 .cke_button .cke_icon
+{
+ background-image: url(icons.png);
+ background-position: 100px;
+ background-repeat:no-repeat;
+ margin-top:1px;
+ width: 16px;
+ height: 16px;
+ display: inline-block;
+ cursor: default;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button .cke_icon
+{
+ background-image: url(icons_rtl.png);
+}
+
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_skin_office2003 .cke_browser_ie .cke_button .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button .cke_icon
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon
+{
+ filter: ;
+}
+
+.cke_skin_office2003 .cke_button .cke_label
+{
+ display: none;
+ padding-left: 3px;
+ cursor: default;
+ vertical-align:middle;
+ _background-image: url(images/sprites_ie6.png);
+ _background-position: 0 -970px;
+ _background-repeat: repeat-x;
+}
+
+.cke_skin_office2003 .cke_button a:hover .cke_label
+{
+ _background-color: #dff1ff;
+ _background-image: none;
+}
+
+.cke_skin_office2003 .cke_button a.cke_on .cke_label
+{
+ _background-color: #c1d2ee;
+ _background-image: none;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button .cke_label
+{
+ padding: 0;
+ display: inline-block;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button .cke_icon
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_accessibility
+{
+ position: absolute;
+ display: block;
+ width: 0;
+ height: 0;
+ overflow: hidden;
+}
+
+.cke_skin_office2003 .cke_button .cke_buttonarrow
+{
+ display: inline-block;
+ height: 18px;
+ width: 8px;
+ background-position: 2px -1004px;
+ background-image: url(images/sprites.png);
+ _background-image: url(images/sprites_ie6.png);
+ background-repeat: no-repeat;
+ cursor: default;
+}
+
+/* IE with zoom != 100% will distort the icons otherwise #4821 */
+.cke_skin_office2003 .cke_browser_ie .cke_button .cke_buttonarrow
+{
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
+}
+.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_buttonarrow
+{
+ filter: ;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow
+{
+ background-position: 0 -1004px;
+}
+
+/*** Firefox 2 ***/
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end
+{
+ display: block;
+ float: left;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon
+{
+ display: none;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_break
+{
+ float: left;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break
+{
+ float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_separator
+{
+ margin-top: 4px;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label
+{
+ padding-top: 3px;
+}
+
+/*** IE6 ***/
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end
+{
+ float: none;
+}
+
+/*** IE8 ***/
+
+.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup
+{
+ vertical-align: top;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup
+{
+ /* revert previous */
+ vertical-align: baseline;
+}
+
+/* Separator + Combo penetrate toolbar in IE quirks. (#4461) */
+.cke_skin_office2003 .cke_browser_iequirks .cke_separator
+{
+ vertical-align: text-bottom;
+}
+/* Fix cursor shape consistency on toolbar combos (#4031) */
+.cke_skin_office2003 .cke_browser_ie .cke_rcombo,
+.cke_skin_office2003 .cke_browser_ie .cke_rcombo *
+{
+ cursor: default;
+}