theme: fix link underlines #256

This commit is contained in:
Sören Weber 2022-05-29 00:26:52 +02:00
parent 6bddf821db
commit ea919b4045
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589
2 changed files with 16 additions and 0 deletions

View file

@ -259,6 +259,14 @@
color: #808080 /* var(--MENU-HOME-LINK-HOVER-color) */; color: #808080 /* var(--MENU-HOME-LINK-HOVER-color) */;
} }
#body a.highlight:after {
background-color: #486ac9; /* var(--MAIN-LINK-color) */
}
#body a.highlight:hover:after {
background-color: #202891; /* var(--MAIN-LINK-HOVER-color) */
}
.progress { .progress {
background-color: #ffffff; /* var(--MAIN-BG-color) */ background-color: #ffffff; /* var(--MAIN-BG-color) */
} }

View file

@ -368,6 +368,14 @@ pre .copy-to-clipboard-button:hover {
color: var(--INTERNAL-MENU-HOME-LINK-HOVER-color); color: var(--INTERNAL-MENU-HOME-LINK-HOVER-color);
} }
#body a.highlight:after {
background-color: var(--INTERNAL-MAIN-LINK-color);
}
#body a.highlight:hover:after {
background-color: var(--INTERNAL-MAIN-LINK-HOVER-color);
}
.progress { .progress {
background-color: var(--INTERNAL-MAIN-BG-color); background-color: var(--INTERNAL-MAIN-BG-color);
} }