Search and Top Navigation
#3506 closed bug (fixed)
Opened October 24, 2008 03:58AM UTC
Closed January 04, 2009 04:42AM UTC
Themeroller for datepicker doesn't highlight today or selected days
| Reported by: | kbwood | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.7 |
| Component: | ui.datepicker | Version: | 1.6rc2 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
There is no visual cue to indicate which day is today, nor which date(s) have been selected by the user.
It's missing the __table.ui-datepicker td.ui-datepicker-today a__ and __''table.ui-datepicker td a:active'', table.ui-datepicker td.ui-datepicker-current-day a__ blocks.
--- css.4 2008-11-08 21:24:38.000000000 -0600 +++ css.3 2008-11-08 21:24:34.000000000 -0600 @@ -81,12 +81,16 @@ color: #555555; cursor: pointer; border: 1px solid #ffffff; + text-decoration: none; } table.ui-datepicker td a:hover { border: 1px solid #999999; color: #212121; } -table.ui-datepicker td a:active { +table.ui-datepicker td.ui-datepicker-today a { + border: 1px solid #d3d3d3; +} +table.ui-datepicker td a:active, table.ui-datepicker td.ui-datepicker-current-day a { border: 1px solid #dddddd; color: #222222; }