templates: Break out text decoration shorthand since some browsers are pickier than I thought.

This commit is contained in:
Bradley Sepos 2020-04-22 18:09:54 -04:00
parent 679ba4d562
commit 0b499c2f2c
No known key found for this signature in database
GPG Key ID: DEADE2F57D42D9C7

View File

@ -462,7 +462,9 @@ article.docs td {
article.docs td > code { article.docs td > code {
padding: 0 .2em; padding: 0 .2em;
text-decoration: underline dotted steelblue; text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: steelblue;
text-decoration-thickness: .1em; text-decoration-thickness: .1em;
} }