From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EE1DE1F45F; Sat, 11 May 2019 09:37:47 +0000 (UTC) Date: Sat, 11 May 2019 09:37:47 +0000 From: Eric Wong To: olddoc-public@80x24.org Subject: [PATCH 2/1] dark216: disable text decoration on tags for light users, too Message-ID: <20190511093747.anujfb3nybrm6iib@dcvr> References: <20190429012609.21242-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190429012609.21242-1-e@80x24.org> List-Id: For consistency with the dark scheme. --- lib/dark216.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} } -- EW