N°2934 - Backoffice theme: Add variable for menu group background color

This commit is contained in:
acognet
2020-05-13 12:21:20 +02:00
parent 1a4ee0f977
commit 48c5698f08
2 changed files with 6 additions and 3 deletions

View File

@@ -118,6 +118,9 @@ $primary-text-color: #333333 !default;
$secondary-text-color: $grey-color !default;
$error-text-color: $white !default;
$highlight-text-color: #363636 !default;
$button-content-background-color: $gray-extra-light !default;
$button-header-background-color: $gray-extra-light !default;
$main-menu-background-color: $gray-extra-light !default;
$hover-background-color: #fde17c !default;
$border-highlight-color: $brand-primary-dark !default;
$highlight-item-color: $white !default;

View File

@@ -1024,7 +1024,7 @@ body {
}
.ui-state-default {
border: 1px solid #cccccc;
background: #f1f1f1;
background: $button-content-background-color;
font-weight: bold;
color: $secondary-text-color;
}
@@ -1092,7 +1092,7 @@ body {
}
.ui-state-default {
border: 1px solid #cccccc;
background: #f1f1f1;
background: $button-header-background-color;
font-weight: bold;
color: $secondary-text-color;
}
@@ -1152,7 +1152,7 @@ body {
}
.ui-state-default {
border: 1px solid #cccccc;
background: #f1f1f1;
background: $main-menu-background-color;
font-weight: bold;
color: $secondary-text-color;
a {