diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-10 16:20:15 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-10 17:41:40 +0200 |
commit | a177e730835e097c4b9ff536c86396a1ca0944b8 (patch) | |
tree | a00b4e22ee1e57a6eb08225491f4e663c770be74 /userContent/static | |
parent | b2113e819c8a390bc553c9bd21ed8d4eb7e607b9 (diff) | |
download | jenkins.debian.net-a177e730835e097c4b9ff536c86396a1ca0944b8.tar.xz |
reproducible: mark packages and notes using CSS classes
Diffstat (limited to 'userContent/static')
-rw-r--r-- | userContent/static/style.css | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/userContent/static/style.css b/userContent/static/style.css index 95f546bc..e493f55c 100644 --- a/userContent/static/style.css +++ b/userContent/static/style.css @@ -22,17 +22,32 @@ img { vertical-align: middle; } -a { +.beta { + color:#555555; + font-size:0.8em; +} + +a, a.package { color:#0088cc; text-decoration:none; } -a:hover, a:focus { +a.noted { + color:#0088cc; + text-decoration:underline; +} + +a:hover, a:focus, a.package:hover, a.package:focus { color:#005580; text-decoration:underline; } -a:visited { +a.noted:hover, a.noted:focus { + color:#005580; + text-decoration:none; +} + +a.package:visited, a.noted:visited { color:green; } |