diff options
author | Keith Wood <kbwood.au@gmail.com> | 2008-07-23 12:50:54 +0000 |
---|---|---|
committer | Keith Wood <kbwood.au@gmail.com> | 2008-07-23 12:50:54 +0000 |
commit | 531970d4ac851acd1b81d424b6703c19175e6e9f (patch) | |
tree | 9083132195e4a329f9bae235d5c21ad89d23db9c /themes/default | |
parent | d165e454b4a06d99f83bfb2f86546a1e3b4470c9 (diff) | |
download | jquery-ui-531970d4ac851acd1b81d424b6703c19175e6e9f.tar.gz jquery-ui-531970d4ac851acd1b81d424b6703c19175e6e9f.zip |
Disable inline datepickers
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/ui.datepicker.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/themes/default/ui.datepicker.css b/themes/default/ui.datepicker.css index 6719b162c..d485bc76b 100644 --- a/themes/default/ui.datepicker.css +++ b/themes/default/ui.datepicker.css @@ -10,7 +10,7 @@ #ui-datepicker-div {
display: none;
border: 1px solid #777;
- z-index: 9999; /*must have*/
+ z-index: 100; /*must have*/
}
.ui-datepicker-inline {
float: left;
@@ -24,6 +24,12 @@ padding: 5px !important;
border: 4px ridge #ddd !important;
}
+.ui-datepicker-disabled {
+ position: absolute;
+ z-index: 100;
+ background-color: white;
+ opacity: 0.5;
+}
button.ui-datepicker-trigger {
width: 25px;
}
|