commit fd9efa10016c7b361dc1829f370e879aa08ffe45 Author: David Fifield david@bamsoftware.com Date: Tue Apr 17 17:21:46 2018 -0700
Fix text-shadow CSS.
The semicolons made it look like the end of a declaration. I got these errors in the Firefox console:
Expected declaration but found ‘1px’. Skipped to next declaration. 1 embed.html:29:17 Expected declaration but found ‘-1px’. Skipped to next declaration. 1 embed.html:30:17 --- proxy/static/embed.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/proxy/static/embed.html b/proxy/static/embed.html index d1d4e77..65303b5 100644 --- a/proxy/static/embed.html +++ b/proxy/static/embed.html @@ -25,8 +25,8 @@ font-variant: small-caps; text-shadow: 0 0 5px #fef, 0 1px 2px #fef, - 0 -1px 2px #fef; - 1px 0px 3px #fef; + 0 -1px 2px #fef, + 1px 0px 3px #fef, -1px 0px 3px #fef; } .active {
tor-commits@lists.torproject.org