[MTELERIXA-29] use var for the actual var for toplink-color instead of hard coded hex color

This commit is contained in:
Daniel Muyshond 2022-03-08 16:48:02 +01:00
parent b082b4332e
commit b29561eb36
2 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ $header-logo-size: None !default;
$header-logo-text-color: #484248 !default;
$toplinks-border: 1px solid $primary-color !default;
$toplinks-background-color: white !default;
$toplinks-color: #666 !default;
$toplinks-color: #333 !default;
$toplinks-radius: 0 0 1em 1em !default;
$toplinks-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16),
0px 2px 10px 0px rgba(0, 0, 0, 0.12) !default;
@ -98,7 +98,7 @@ h1#logo {
}
#toplinks span.connected-user {
padding-right: 0;
color: #333333;
color: $toplinks-color;
}
#toplinks a {
text-decoration: none;
@ -122,7 +122,7 @@ h1#logo {
display: none;
}
#toplinks a:hover {
border-bottom: 1px solid $toplinks-color;
border-bottom: 1px solid darken($toplinks-color, 15%);
}
/* hide toplinks separator */
#toplinks span.login span.sep {

View File

@ -9,6 +9,7 @@ $button-color: white;
$cell-entry-hover-effect: left-to-right;
$theme2019: true;
$link-color: $primary-color;
$toplinks-color: #333;
$font-family: "Din"; //!\\ : il faut bien importer la font (voir les imports en bas de la page)!
$border-radius: 3px;