X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=_source%2Fskins%2Fv2%2Fdialog.css;h=05be5ea5a8651715795b1d17a76e45f6fccb294d;hb=6e682412d5cc0dfaedb376482e585bf2989c6863;hp=fbe4e4fa49421dac8d6494a76f5adefb96f976cf;hpb=e73319a12b56100b29ef456fd74114fe5519e01c;p=ckeditor.git diff --git a/_source/skins/v2/dialog.css b/_source/skins/v2/dialog.css index fbe4e4f..05be5ea 100644 --- a/_source/skins/v2/dialog.css +++ b/_source/skins/v2/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 */ @@ -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; } @@ -44,7 +43,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_v2 .cke_dialog_tl @@ -375,6 +374,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_v2 .cke_browser_ie7 input.cke_dialog_ui_input_text, +.cke_skin_v2 .cke_browser_ie7 input.cke_dialog_ui_input_password +{ + position: absolute; +} +.cke_skin_v2 .cke_browser_ie7 div.cke_dialog_ui_input_text, +.cke_skin_v2 .cke_browser_ie7 div.cke_dialog_ui_input_password +{ + height:14px; + position: relative; +} + .cke_skin_v2 .cke_browser_ie.cke_rtl div.cke_dialog_ui_input_text { padding-right: 1px; } @@ -551,15 +563,13 @@ body .cke_dialog .cke_skin_v2 .cke_ltr a.cke_dialog_close_button, .cke_skin_v2 .cke_ltr a:hover.cke_dialog_close_button { - right: 10px; - _right: 22px; + right: 22px; } .cke_skin_v2 .cke_rtl a.cke_dialog_close_button, .cke_skin_v2 .cke_rtl a:hover.cke_dialog_close_button { - left: 10px; - _left: 16px; + left: 16px; _top: 7px; } @@ -905,3 +915,10 @@ body .cke_dialog width:100%; height:100%; } + +.cke_dialog label +{ + display: inline; + margin-bottom: auto; + cursor: default; +}