Use text-decoration instead of border for forwardlinks.

This commit is contained in:
Mayhem 2014-01-21 14:13:46 +01:00
parent 59fa428db5
commit ef3ac421ca

View File

@ -506,6 +506,15 @@ a.hide-announcement {
text-decoration: none;
border-bottom: 1px dashed;
}
@supports (text-decoration-style: dashed) or (-moz-text-decoration-style: dashed) {
.quotelink.forwardlink,
.backlink.forwardlink {
text-decoration: underline;
-moz-text-decoration-style: dashed;
text-decoration-style: dashed;
border-bottom: none;
}
}
.filtered {
text-decoration: underline line-through;
}