The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 0876539e authored by Claas Kazzer's avatar Claas Kazzer Committed by Robert Lange
Browse files

refs #18316 [finc] sets visited links color

* introduces scss variable for visited links, use steel (gray) as default
* intoduces a:visited definition using that variable

co-authored by: Alexander Purr <purr@ub.uni-leipzig.de>
* add description
parent 84fc925c
No related merge requests found
......@@ -59,6 +59,8 @@ $modal-close-color-hover: $brand-danger !default;
//// Anchor/Link text decoration
$textdecoration-anchor: none !default;
// needs to be overriden in catalogues if visited color does not fit - AP
$a-visited-color: $steel !default;
//// FORM FEEDBACK states colors and, by default, alerts colors (i.e. alerts are
//// defined like so '$alert-success-bg: $state-success-bg;')
......
......@@ -566,6 +566,11 @@ select {
// LINKS // ANCHORS
a {
text-decoration: $textdecoration-anchor;
// set different color for links already visited
&:visited {
color: $a-visited-color;
}
}
// LINKS - END
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment