From 60fbadfa36f9b99a536fe29482960b7f48838bd1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Tue, 15 Dec 2020 09:10:39 +0100 Subject: [PATCH] luci-theme-openwrt-2020: add styling of hyperlinks MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Currently it's not possible to distinguish between normal text and hyperlink. Signed-off-by: Petr Å tetiar --- .../htdocs/luci-static/openwrt2020/cascade.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css index e251df5127..cf320e4aed 100644 --- a/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css +++ b/themes/luci-theme-openwrt-2020/htdocs/luci-static/openwrt2020/cascade.css @@ -632,6 +632,10 @@ ul > li { list-style: disc; } +p > a { + text-decoration: underline; +} + /* * widgets */ -- 2.30.2