Skip to content
Snippets Groups Projects
Commit 47ccf59d authored by Henrik Askjer's avatar Henrik Askjer
Browse files

Improve hyperlink visibility

parent 8f6e18fb
No related branches found
Tags release_2021-11-18_2
No related merge requests found
......@@ -184,5 +184,24 @@ footer > div.sm > div {
height: 60px;
}
/*
Hyperlink style in about page and article content
*/
@media (hover: none) {
article a:not(.choose):not(.return_to_results a), .about a {
text-decoration: underline;
}
}
@media (hover: hover) {
article a, .about a {
text-decoration: none;
}
article a:hover:not(.choose):not(.return_to_results a), .about a:hover {
text-decoration: underline;
}
}
</style>
......@@ -217,22 +217,6 @@ ul li.definition {
}
@media (hover: none) {
article a:not(.choose):not(.return_to_results a) {
text-decoration: underline;
}
}
@media (hover: hover) {
article a {
text-decoration: none;
}
article a:hover:not(.choose):not(.return_to_results a) {
text-decoration: underline;
}
}
.choose {
color: var(--v-primary-base) !important;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment