Skip to content

Commit 3741092

Browse files
committed
Replay changes to default.css onto default-TR.css: 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.
Original change was: # User Bert Bos <bert@w3.org> # Date 1408625856 -7200 # Thu Aug 21 14:57:36 2014 +0200 # Node ID 203e3eeac0986d9fb2cd82b63f3b5c0041b751b0 # Parent a21f79c72902f3bac347798a510425df110b48b8 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 f500f78 commit 3741092

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

default-TR.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,12 @@
308308
/* removed to get past webmaster fondness for blue links
309309
310310
a:link, a:visited { We hyperlink a lot, so make it less intrusive
311-
border-bottom: 1px solid silver;
312311
color: inherit;
313-
text-decoration: none;
312+
text-decoration: underline;
313+
text-decoration-color: silver;
314+
}
315+
a:visited {
316+
text-decoration-style: dotted;
314317
}
315318
a.logo:link, a.logo:visited { backout above styling for W3C logo
316319
padding: 0;

0 commit comments

Comments
 (0)