Skip to content
Snippets Groups Projects
Commit 3ee5a243 authored by Claas Kazzer's avatar Claas Kazzer :speech_balloon: Committed by Dorian Merz
Browse files

refs #20155 [adlr: visited links]

* changes visited-links colors back
parent 4f9fa4c3
Branches
Tags
No related merge requests found
......@@ -363,6 +363,8 @@ $get-it-link-offset-left: 10px;
//$sidebar-item-hover-bg: transparentize($brand-secondary, .9) !default;
//$sidebar-item-active-hover-bg: transparentize($brand-primary, .1) !default;
$a-visited-color: initial !default;
//// ELEMENT COLORS - END
// COLORS - END
......
......@@ -261,7 +261,8 @@ textarea {
//border-radius: 5px;
}
form input:invalid, form textarea:invalid {
form input:invalid,
form textarea:invalid {
margin-right: 0;
}
......@@ -271,11 +272,13 @@ form input:invalid, form textarea:invalid {
display: none !important;
}
}
.hidden-sm-lg {
@media (min-width: $screen-sm-min) and (max-width: $screen-lg-max) {
display: none !important;
}
}
.hidden-xl {
@media (min-width: $screen-xl-min) {
display: none !important;
......@@ -286,8 +289,6 @@ form input:invalid, form textarea:invalid {
margin-bottom: 85px;
}
// FORMS - END
// IMAGES
// img {}
// IMAGES - END
......@@ -475,7 +476,8 @@ a.exclude {
display: inline-block;
}
&.SID76, &.collection-UBL-FID-EBC {
&.SID76,
&.collection-UBL-FID-EBC {
// #16177 adapt the path to get the "adlr ebooks" logo
// FIXME set correct logo
background: $midnight-light;
......@@ -609,7 +611,7 @@ header,
}
// overwrite finc changes of #17720
#searchForm input{
#searchForm input {
float: left;
}
}
......@@ -2052,7 +2054,7 @@ input.searchForm_lookfor {
&:active,
&:focus,
&:visited {
color: $black;
color: $black ;
}
}
......@@ -2814,17 +2816,22 @@ footer {
background-size: cover;
color: $white;
a:hover,
a:link,
a:active,
a:focus,
a:visited {
color: $white;
}
a {
&:active,
&:focus,
&:hover,
&:link {
color: $white;
}
a:hover,
a:focus {
text-decoration: underline;
&:visited {
color: $white !important;
}
&:hover,
&:focus {
text-decoration: underline;
}
}
#footer-links {
......
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