Mercurial > p > roundup > code
diff roundup/templates/classic/html/style.css @ 1197:7d1b69122133
cleanups to classic templates
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Sep 2002 02:00:39 +0000 |
| parents | 36ec30d286ea |
| children | b862bbf2067a |
line wrap: on
line diff
--- a/roundup/templates/classic/html/style.css Tue Sep 24 02:00:09 2002 +0000 +++ b/roundup/templates/classic/html/style.css Tue Sep 24 02:00:39 2002 +0000 @@ -3,10 +3,22 @@ font-family: sans-serif, Arial, Helvetica; color: #333333; } -a:hover { text-decoration: underline; } -a:link { text-decoration: none; } -a { text-decoration: none; } +/* generic hyperlink style */ +a[href]:hover { + text-decoration: underline; + color: blue; +} +a[href]:link { + text-decoration: none; + color: blue; +} +a[href] { + text-decoration: none; + color: blue; +} + +/* main page body container */ table.body { border: 0; padding: 0; @@ -49,6 +61,7 @@ padding: 1px; } +/* feedback - ok and error messages */ p.ok-message { background-color: #22bb22; padding: 5 5 5 5;
