X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fskins%2Foffice2003%2Fdialog.css;h=f28644a51879f9b1e37af56a86842536f005f60b;hp=41e54f918862c57835820afa9db084dded2d0c5f;hb=6e682412d5cc0dfaedb376482e585bf2989c6863;hpb=2f22c0c38f17e75be5541089076885442aaa2377 diff --git a/_source/skins/office2003/dialog.css b/_source/skins/office2003/dialog.css index 41e54f9..f28644a 100644 --- a/_source/skins/office2003/dialog.css +++ b/_source/skins/office2003/dialog.css @@ -25,7 +25,6 @@ body .cke_dialog /* '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; } @@ -43,7 +42,7 @@ body .cke_dialog /* 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; + z-index: -1; } .cke_skin_office2003 .cke_dialog_tl @@ -338,6 +337,19 @@ body .cke_dialog _width: 99.9%; } +/* The absolute position is required for IE7 on text inputs not to stretch dialog horizontally. (#8971)*/ +.cke_skin_office2003 .cke_browser_ie7 input.cke_dialog_ui_input_text, +.cke_skin_office2003 .cke_browser_ie7 input.cke_dialog_ui_input_password +{ + position: absolute; +} +.cke_skin_office2003 .cke_browser_ie7 div.cke_dialog_ui_input_text, +.cke_skin_office2003 .cke_browser_ie7 div.cke_dialog_ui_input_password +{ + height:14px; + position: relative; +} + /* 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, @@ -549,15 +561,13 @@ body .cke_dialog .cke_skin_office2003 .cke_ltr a.cke_dialog_close_button { - right: 10px; - _right: 22px; + 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; + left: 16px; _top: 6px; } @@ -889,3 +899,10 @@ body .cke_dialog width:100%; height:100%; } + +.cke_dialog label +{ + display: inline; + margin-bottom: auto; + cursor: default; +}