do not have underlines on icons

This commit is contained in:
rimu 2024-01-26 09:51:48 +13:00
parent 8e93ff9f51
commit 7d6800ae65
2 changed files with 7 additions and 0 deletions

View file

@ -409,6 +409,10 @@ a {
#outer_container a:not(.btn):hover, footer a:not(.btn):hover { #outer_container a:not(.btn):hover, footer a:not(.btn):hover {
text-decoration: underline; 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 { #outer_container a:not(.btn):active, footer a:not(.btn):active {
border: dotted 2px #0A5CA0; border: dotted 2px #0A5CA0;
} }

View file

@ -17,6 +17,9 @@ a {
a:not(.btn):hover { a:not(.btn):hover {
text-decoration: underline; text-decoration: underline;
} }
a:not(.btn):has(span.fe):hover { /* do not have underlines on icons */
text-decoration: none;
}
a:not(.btn):active { a:not(.btn):active {
border: dotted 2px #0A5CA0; border: dotted 2px #0A5CA0;