From 0b499c2f2c77ae573e9c0a0a98bc31801890fd15 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Wed, 22 Apr 2020 18:09:54 -0400 Subject: [PATCH] templates: Break out text decoration shorthand since some browsers are pickier than I thought. --- templates/mark1/assets/css/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/mark1/assets/css/style.css b/templates/mark1/assets/css/style.css index 93b16be6..bc538d4f 100644 --- a/templates/mark1/assets/css/style.css +++ b/templates/mark1/assets/css/style.css @@ -462,7 +462,9 @@ article.docs td { article.docs td > code { padding: 0 .2em; - text-decoration: underline dotted steelblue; + text-decoration: underline; + text-decoration-style: dotted; + text-decoration-color: steelblue; text-decoration-thickness: .1em; }