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

Merge branch 'improve-hyperlink-visibility' into 'master'

Improve hyperlink visibility

See merge request spraksamlingane/beta.ordbok.uib.no!69
parents 8f6e18fb 47ccf59d
No related branches found
No related tags found
No related merge requests found
...@@ -184,5 +184,24 @@ footer > div.sm > div { ...@@ -184,5 +184,24 @@ footer > div.sm > div {
height: 60px; 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> </style>
...@@ -217,22 +217,6 @@ ul li.definition { ...@@ -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 { .choose {
color: var(--v-primary-base) !important; 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