Commit 2594ac1a authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 452750: Make it easier to distinguish visited links in Dusk from normal text.

Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=pyrzak, a=mkanat
parent ac905a58
...@@ -45,8 +45,12 @@ body { ...@@ -45,8 +45,12 @@ body {
border: none; border: none;
} }
#header a { #header a, #footer a {
color: white; color: white;
text-decoration: none;
}
#header a:hover, #footer a:hover {
text-decoration: underline;
} }
/* body */ /* body */
...@@ -62,20 +66,11 @@ body { ...@@ -62,20 +66,11 @@ body {
-moz-border-radius: 5px; -moz-border-radius: 5px;
} }
a, a:hover { a {
color: #6169c0; color: #6070cf;
} }
a:visited {
color: #3d4a68;
}
a, a:visited {
text-decoration: none;
}
a:hover { a:hover {
text-decoration: underline; color: #8090ef;
} }
hr { hr {
...@@ -184,10 +179,6 @@ hr { ...@@ -184,10 +179,6 @@ hr {
-moz-border-radius: 5px; -moz-border-radius: 5px;
} }
#footer a {
color: white;
}
#footer #links-actions, #footer #links-actions,
#footer #links-edit, #footer #links-edit,
#footer #links-saved, #footer #links-saved,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment