theme: fix underline color for links #175

This commit is contained in:
Sören Weber 2022-02-15 09:11:10 +01:00
parent 691f9a9334
commit b4582aed91
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589
2 changed files with 5 additions and 1 deletions

View file

@ -1216,7 +1216,7 @@ option {
} }
#body a.highlight:after { #body a.highlight:after {
background-color: #0082a7; /*#CE3B2F*/ background-color: #486ac9; /* var(--MAIN-LINK-color) */
content: ""; content: "";
display: block; display: block;
height: 1px; height: 1px;

View file

@ -139,6 +139,10 @@ pre .copy-to-clipboard:hover {
color: var(--MENU-HOME-LINK-HOVER-color, var(--MENU-HOME-LINK-HOVERED-color, #808080)); color: var(--MENU-HOME-LINK-HOVER-color, var(--MENU-HOME-LINK-HOVERED-color, #808080));
} }
#body a.highlight:after {
background-color: var(--MAIN-LINK-color);
}
.anchor { .anchor {
color: var(--MAIN-ANCHOR-color); color: var(--MAIN-ANCHOR-color);
} }