From 7d6800ae651dbedc7f8df33a9dd8c5f8cf0c9db6 Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:51:48 +1300 Subject: [PATCH] do not have underlines on icons --- app/static/styles.css | 4 ++++ app/static/styles.scss | 3 +++ 2 files changed, 7 insertions(+) diff --git a/app/static/styles.css b/app/static/styles.css index 4bf04547..bd86eadf 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -409,6 +409,10 @@ a { #outer_container a:not(.btn):hover, footer a:not(.btn):hover { text-decoration: underline; } +#outer_container a:not(.btn):has(span.fe):hover, footer a:not(.btn):has(span.fe):hover { + /* do not have underlines on icons */ + text-decoration: none; +} #outer_container a:not(.btn):active, footer a:not(.btn):active { border: dotted 2px #0A5CA0; } diff --git a/app/static/styles.scss b/app/static/styles.scss index 423bedf1..76a84639 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -17,6 +17,9 @@ a { a:not(.btn):hover { text-decoration: underline; } + a:not(.btn):has(span.fe):hover { /* do not have underlines on icons */ + text-decoration: none; + } a:not(.btn):active { border: dotted 2px #0A5CA0;