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-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 B437F1F4B4 for ; Wed, 9 Sep 2020 20:24:55 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] contrib/css: limit coloring to links, only Date: Wed, 9 Sep 2020 20:24:55 +0000 Message-Id: <20200909202455.9326-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We don't want tags without href= attributes to be colored, since the `' tag in the HTML footer is intended as an anchor destination for `' link at the top. --- contrib/css/216dark.css | 2 +- contrib/css/216light.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/css/216dark.css b/contrib/css/216dark.css index 6fc6cfe7..02804cbd 100644 --- a/contrib/css/216dark.css +++ b/contrib/css/216dark.css @@ -11,7 +11,7 @@ * Underlined links add visual noise which make them hard-to-read. * Use colors to make them stand out, instead. */ -a { color:#69f; text-decoration:none } +a:link { color:#69f; text-decoration:none } a:visited { color:#96f } /* quoted text in emails gets a different color */ diff --git a/contrib/css/216light.css b/contrib/css/216light.css index 559a6b74..c66cfdfe 100644 --- a/contrib/css/216light.css +++ b/contrib/css/216light.css @@ -10,7 +10,7 @@ * Underlined links add visual noise which make them hard-to-read. * Use colors to make them stand out, instead. */ -a { color:#00f; text-decoration:none } +a:link { color:#00f; text-decoration:none } a:visited { color:#808 } /* quoted text gets a different color */