Opened 14 years ago

Closed 14 years ago

#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:
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.

Change History (2)

comment:1 Changed 14 years ago by GlowingRose

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

comment:2 Changed 14 years ago by Scott González

Component: [meta] ui.themerollerui.datepicker
Milestone: TBD1.6
Priority: majorcritical
Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.