X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fskins%2Fkama%2Fdialog.css;h=6e20cbab0ae023c668e9cd34637ae6d4edb91474;hb=2f22c0c38f17e75be5541089076885442aaa2377;hp=e6dfba3ba3bbf69b49c1a60865bf093b867ba60b;hpb=4e90e78dc97789709ee7404359a5517540c27553;p=ckeditor.git diff --git a/_source/skins/kama/dialog.css b/_source/skins/kama/dialog.css index e6dfba3..6e20cba 100644 --- a/_source/skins/kama/dialog.css +++ b/_source/skins/kama/dialog.css @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2011, 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 */ @@ -247,6 +247,8 @@ body .cke_dialog 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) */ @@ -319,6 +321,12 @@ body .cke_dialog cursor : default; } +/* RTL + IE6: Input overflows dialog element. (#7321) */ +.cke_skin_kama .cke_rtl .cke_dialog_ui_labeled_content +{ + _width: 95%; +} + .cke_skin_kama .cke_dialog_ui_hbox { width: 100%; @@ -710,6 +718,10 @@ body .cke_dialog border: none 1px; font-size: 1px; } +.cke_skin_kama .cke_dialog a.cke_btn_locked .cke_icon +{ + display:none; +} .cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_locked, .cke_skin_kama .cke_rtl .cke_dialog a.cke_btn_unlocked @@ -862,6 +874,7 @@ body .cke_dialog .cke_skin_kama .cke_hc .cke_dialog_body .cke_label { display: inline; + cursor: inherit; } .cke_skin_kama .cke_hc a.cke_btn_locked, @@ -872,6 +885,7 @@ body .cke_dialog float: left; width: auto; height: auto; + padding: 0 2px; } .cke_skin_kama .cke_rtl.cke_hc a.cke_btn_locked, @@ -880,6 +894,10 @@ body .cke_dialog { float: right; } +.cke_skin_kama .cke_hc a.cke_btn_locked .cke_icon +{ + display:inline; +} .cke_skin_kama a.cke_smile img { @@ -902,6 +920,11 @@ body .cke_dialog border: 1px solid white; } +.cke_skin_kama .cke_hc .ImagePreviewBox +{ + width: 260px; +} + /** * Styles specific to "cellProperties" dialog. */ @@ -918,3 +941,49 @@ body .cke_dialog { margin-right: 10px; } + +/* Compensate focus outline for some input elements. (#6200) */ +.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_checkbox_input:focus, +.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_radio_input:focus, +.cke_skin_kama .cke_browser_opera .cke_dialog_ui_checkbox_input:focus, +.cke_skin_kama .cke_browser_opera .cke_dialog_ui_radio_input:focus, +.cke_skin_kama .cke_browser_gecko .cke_dialog_ui_input_select:focus, +.cke_skin_kama .cke_browser_gecko .cke_btn_over, +.cke_skin_kama .cke_browser_opera .cke_btn_over, +.cke_skin_kama .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_kama .cke_browser_ie .cke_dialog_ui_checkbox_input, +.cke_skin_kama .cke_browser_ie .cke_dialog_ui_ratio_input, +.cke_skin_kama .cke_browser_ie .cke_btn_reset, +.cke_skin_kama .cke_browser_ie .cke_btn_locked, +.cke_skin_kama .cke_browser_ie .cke_btn_unlocked +{ + *border: 1px solid transparent !important; + /* Emulating border-color: transparent in IE6.*/ + -border: 1px solid red !important; + -filter: chroma(color=red); +} + +.cke_skin_kama .cke_browser_ie .cke_dialog_ui_focused, +.cke_skin_kama .cke_browser_ie .cke_btn_over +{ + *border: 1px dotted #696969 !important; +} + +.cke_skin_kama .cke_iframe_shim +{ + display:block; + position:absolute; + top:0; + left:0; + z-index:-1; + filter:alpha(opacity=0); + width:100%; + height:100%; +}