diff options
author | wurblzap%gmail.com <> | 2007-09-10 05:41:09 +0200 |
---|---|---|
committer | wurblzap%gmail.com <> | 2007-09-10 05:41:09 +0200 |
commit | 419f1be5151bd8d19a5bb82c5b4b1d668045a41b (patch) | |
tree | 6ead2c602aaaab6dfb17fc70501cf78c23a2c5cc /skins/contrib/Dusk | |
parent | b8ac9412f27f4d9967b3e38213c08cad01e84e00 (diff) | |
download | bugzilla-419f1be5151bd8d19a5bb82c5b4b1d668045a41b.tar.gz bugzilla-419f1be5151bd8d19a5bb82c5b4b1d668045a41b.tar.xz |
Bug 395413 â With the Dusk skin, text enclosed in <a name=""></a> is displayed in blue.
Patch by Marc Schumann <wurblzap@gmail.com>;
r=LpSolit; a=LpSolit
Diffstat (limited to 'skins/contrib/Dusk')
-rw-r--r-- | skins/contrib/Dusk/global.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/skins/contrib/Dusk/global.css b/skins/contrib/Dusk/global.css index 957da1933..e13743a19 100644 --- a/skins/contrib/Dusk/global.css +++ b/skins/contrib/Dusk/global.css @@ -59,17 +59,22 @@ body { -moz-border-radius: 5px; } -a, -a:link { +a:link, +a:link:hover { color: #6169c0; - text-decoration: none; } a:visited { color: #3d4a68; } -a:hover { +a:link, +a:visited { + text-decoration: none; +} + +a:link:hover, +a:visited:hover { text-decoration: underline; } |