about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-11 09:33:09 +0000
committerEric Wong <e@80x24.org>2019-05-11 09:34:12 +0000
commitc5c9c15d435bbff8dfe495807f31a4fa5987271b (patch)
tree1dba75382a80a6c0b557fd221e033012191677af
parent935fcc9ca5a814298402a71b5827c82ebc3c5734 (diff)
downloadolddoc-c5c9c15d435bbff8dfe495807f31a4fa5987271b.tar.gz
dark216: disable text decoration on <a> tags for light users, too
For consistency with the dark scheme.
-rw-r--r--lib/dark216.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dark216.rb b/lib/dark216.rb
index 2a20fe1..c0e90ae 100644
--- a/lib/dark216.rb
+++ b/lib/dark216.rb
@@ -28,7 +28,7 @@ class Dark216 < Oldweb
 }
 @media screen AND (prefers-color-scheme:light) {
   *{background:#fff;color:#333}
-  a{color:#00f}
+  a{color:#00f;text-decoration:none}
   a:visited{color:#808}
 }