Ticket #3506 (closed bug: fixed)
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: | ||
| Blocking: | Blocked by: |
Description
There is no visual cue to indicate which day is today, nor which date(s) have been selected by the user.
Change History
Note: See
TracTickets for help on using
tickets.


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; }