Bug 1119472 - Unify text-link colors and hover behavior. r=gijs

This commit is contained in:
Jared Wein 2015-01-26 10:38:00 -05:00
parent f2ea262107
commit 6e88a3fc23

View File

@ -383,23 +383,23 @@ xul|textbox[disabled="true"] {
/* Links */
html|a,
xul|*.text-link,
xul|*.inline-link {
.text-link,
.inline-link {
line-height: 22px;
color: #0095dd;
text-decoration: none;
}
html|a:hover,
xul|*.text-link:hover,
xul|*.inline-link:hover {
color: #4cb1ff;
text-decoration: none;
.text-link:hover,
.inline-link:hover {
color: #178ce5;
text-decoration: underline;
}
html|a:hover:active,
xul|*.text-link:hover:active,
xul|*.inline-link:hover:active {
.text-link:hover:active,
.inline-link:hover:active {
color: #ff9500;
text-decoration: none;
}