diff options
author | Ca-Phun Ung <pazu2k@gmail.com> | 2008-12-23 19:39:28 +0000 |
---|---|---|
committer | Ca-Phun Ung <pazu2k@gmail.com> | 2008-12-23 19:39:28 +0000 |
commit | 56e8aad838e9609730d087ce44c37e2388b54e59 (patch) | |
tree | ac3945f969b9982435e7a0c432c007f5423d01fd /themes | |
parent | b2c2240663aeb4139aca27288951ecc487a71348 (diff) | |
download | jquery-ui-56e8aad838e9609730d087ce44c37e2388b54e59.tar.gz jquery-ui-56e8aad838e9609730d087ce44c37e2388b54e59.zip |
Datepicker - fixes #3695 [multi-datepicker layout issue in IE]: IE doesn't seem to like dynamic widths so had no other choice but to hard code some width values (this needs a better fix).
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.datepicker.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/themes/base/ui.datepicker.css b/themes/base/ui.datepicker.css index dd0ab1cbd..d08a4af2c 100644 --- a/themes/base/ui.datepicker.css +++ b/themes/base/ui.datepicker.css @@ -44,4 +44,17 @@ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } .ui-datepicker-rtl .ui-datepicker-group { float:right; } .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } -.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
\ No newline at end of file +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } + +/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ +.ui-datepicker-cover { + display: none; /*sorry for IE5*/ + display/**/: block; /*sorry for IE5*/ + position: absolute; /*must have*/ + z-index: -1; /*must have*/ + filter: mask(); /*must have*/ + top: -4px; /*must have*/ + left: -4px; /*must have*/ + width: 200px; /*must have*/ + height: 200px; /*must have*/ +}
\ No newline at end of file |