Skip to content

Commit 93ef01b

Browse files
committed
Removed the bottom border from links: It looked like an underline that was in the wrong location. It also interfered with user style sheets. Replaced by a normal underline. Made the underline for visited links different (dotted), because those links aren't otherwise distinguished from unvisited ones.
1 parent c4c6038 commit 93ef01b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

default.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,12 @@
304304
/** General Hyperlinks ********************************************************/
305305

306306
a:link, a:visited { /* We hyperlink a lot, so make it less intrusive */
307-
border-bottom: 1px solid silver;
308307
color: inherit;
309-
text-decoration: none;
308+
text-decoration: underline;
309+
text-decoration-color: silver;
310+
}
311+
a:visited {
312+
text-decoration-style: dotted;
310313
}
311314
a.logo:link, a.logo:visited { /* backout above styling for W3C logo */
312315
padding: 0;

0 commit comments

Comments
 (0)