Mercurial > p > roundup > code
changeset 3703:b0b333957d91
active input elements highlighting (via CSS; not for buttons)
| author | Tobias Herp <tobias-herp@users.sourceforge.net> |
|---|---|
| date | Sun, 17 Sep 2006 23:22:29 +0000 |
| parents | 06d7816976bc |
| children | 18def94e5150 |
| files | templates/classic/html/style.css |
| diffstat | 1 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/classic/html/style.css Sat Sep 09 05:50:17 2006 +0000 +++ b/templates/classic/html/style.css Sun Sep 17 23:22:29 2006 +0000 @@ -127,7 +127,7 @@ /* style for search forms */ ul.search-checkboxes { display: inline; - padding: none; + padding: 0; list-style: none; } ul.search-checkboxes > li { @@ -421,3 +421,13 @@ font-weight: bold; text-align: left; } +input[type="text"]:focus, +input[type="checkbox"]:focus, +input[type="radio"]:focus, +input[type="password"]:focus, +textarea:focus, select:focus { + background-color: #ffffc0; +} + +/* vim: ts=2 sw=2 et +*/
