X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fskins%2Foffice2003%2Fdialog.css;h=a901284ecb7857899c03f81665b26cf52c5a791c;hp=f9f7f9be773c02251f51aaa98a3264c398910609;hb=941b0a9ba4e673e292510d80a5a86806994b8ea6;hpb=ea7e3453c7b0f023b050aca6d9f83ab372860d91 diff --git a/_source/skins/office2003/dialog.css b/_source/skins/office2003/dialog.css index f9f7f9b..a901284 100644 --- a/_source/skins/office2003/dialog.css +++ b/_source/skins/office2003/dialog.css @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -9,14 +9,24 @@ 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; - position: relative; 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, @@ -32,6 +42,8 @@ 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; } .cke_skin_office2003 .cke_dialog_tl @@ -641,3 +653,10 @@ body .cke_dialog position: relative; top: 3px; } + +.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; +}