#theme: fix links in nav and menu on hover #577

This commit is contained in:
Sören Weber 2023-06-28 23:45:00 +02:00
parent 82ef4ff5c5
commit 914c2a9da4
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 13 additions and 6 deletions

View file

@ -55,12 +55,6 @@ a {
background: transparent;
text-decoration: none; }
a:hover,
a:focus,
a:active {
outline: 0;
text-decoration: underline; }
abbr[title] {
border-bottom: 1px dotted; }

View file

@ -355,6 +355,19 @@ dd {
}
}
.links a:hover,
.links a:active,
.links a:focus,
.links a:hover *,
.links a:active *,
.links a:focus *,
#body-inner a:hover,
#body-inner a:active,
#body-inner a:focus {
outline: none;
text-decoration: underline;
}
#body-inner:focus-visible{
/* remove focus indicator for programatically set focus */
outline: none;