|
306 | 306 |
|
307 | 307 | /** General Hyperlinks ********************************************************/ |
308 | 308 |
|
309 | | - a:link, a:visited { /* We hyperlink a lot, so make it less intrusive */ |
| 309 | + /* We hyperlink a lot, so make it less intrusive */ |
| 310 | + a:link, a:visited { |
310 | 311 | color: inherit; |
311 | | - text-decoration: underline; |
312 | | - text-decoration-color: silver; |
| 312 | + text-decoration: none; |
| 313 | + border-bottom: 1px solid silver; |
313 | 314 | } |
314 | | - a:visited { |
315 | | - text-decoration-style: dotted; |
| 315 | + @supports (text-decoration-color: silver) { |
| 316 | + a:link, a:visited { |
| 317 | + text-decoration: underline; |
| 318 | + text-decoration-color: silver; |
| 319 | + } |
| 320 | + a:visited { |
| 321 | + text-decoration-style: dotted; |
| 322 | + } |
316 | 323 | } |
| 324 | + |
317 | 325 | a.logo:link, a.logo:visited { /* backout above styling for W3C logo */ |
318 | 326 | padding: 0; |
319 | | - border-style: none; |
| 327 | + border: none; |
| 328 | + text-decoration: none; |
320 | 329 | } |
321 | 330 |
|
322 | 331 | /** Self-Links ****************************************************************/ |
|
770 | 779 | ul.toc, ul.toc ul, ul.toc li { padding: 0; line-height: 1.3; } |
771 | 780 | ul.toc a { text-decoration: none; border-bottom-style: none; } |
772 | 781 | ul.toc a:hover, ul.toc a:focus { border-bottom-style: solid; } |
| 782 | + @supports (text-decoration-style: solid) { |
| 783 | + ul.toc a:hover, ul.toc a:focus { |
| 784 | + border-bottom-style: none; |
| 785 | + text-decoration-style: solid; |
| 786 | + } |
| 787 | + } |
773 | 788 | /* |
774 | 789 | ul.toc li li li, ul.toc li li li ul {margin-left: 0; display: inline} |
775 | 790 | ul.toc li li li ul, ul.toc li li li ul li {margin-left: 0; display: inline} |
|
0 commit comments