r1317 - in trunk: themes/default ui
Author: pazu2k@gmail.com
Date: Tue Dec 30 04:14:15 2008
New Revision: 1317
Modified:
trunk/themes/default/ui.datepicker.css
trunk/ui/ui.datepicker.js
Log:
datepicker: IE6 css fixes for default theme.
Modified: trunk/themes/default/ui.datepicker.css
==============================================================================
--- trunk/themes/default/ui.datepicker.css (original)
+++ trunk/themes/default/ui.datepicker.css Tue Dec 30 04:14:15 2008
@@ -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
Modified: trunk/ui/ui.datepicker.js
==============================================================================
--- trunk/ui/ui.datepicker.js (original)
+++ trunk/ui/ui.datepicker.js Tue Dec 30 04:14:15 2008
@@ -1407,7 +1407,7 @@
}
html += (!inst.inline ? buttonPanel : '') +
($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ?
- '<iframe src="javascript:false;"
class="ui-datepicker-cover"></iframe>' : '');
+ '<iframe src="javascript:false;" class="ui-datepicker-cover"
frameborder="0"></iframe>' : '');
inst._keyEvent = false;
return html;
},