1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/* class "choice" is for all choices, enabled and disabled. This is for both * the <a> actions and <option> actions. * class "disabled" is for disabled choices. */ a.choice { color: navy; text-decoration: underline; cursor: pointer; } a.choice:hover, a.choice:active, a.choice:focus { color: blue; } a.disabled { color: black; text-decoration: none; cursor: auto; } |