fix: [ui:sidebar] Correctly add activeSidebarLinkColor to parent element if child is selected
parent
b51cf2ed59
commit
c0d25578a0
|
@ -411,6 +411,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #595f64;
|
||||
color: #fff; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: var(--cerebrate-color); }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #60676c;
|
||||
color: #fff; }
|
||||
|
|
|
@ -411,6 +411,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #dbdbdb;
|
||||
color: #000; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: var(--cerebrate-color); }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #000; }
|
||||
|
|
|
@ -411,6 +411,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: #18bc9c; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #18bc9c; }
|
||||
|
|
|
@ -411,6 +411,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #dbdbdb;
|
||||
color: #18bc9c; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: #18bc9c; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #ebebeb;
|
||||
color: #18bc9c; }
|
||||
|
|
|
@ -403,6 +403,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #fff;
|
||||
color: #343a40; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: #e83283; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #fff;
|
||||
color: #343a40; }
|
||||
|
|
|
@ -407,6 +407,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #595f64;
|
||||
color: #fff; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: var(--cerebrate-color); }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #60676c;
|
||||
color: #fff; }
|
||||
|
|
|
@ -403,6 +403,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: #343a40;
|
||||
color: #3cf281; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: #6f42c1; }
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: #495057;
|
||||
color: #3cf281; }
|
||||
|
|
|
@ -132,6 +132,9 @@ header.top-navbar .header-breadcrumb .header-breadcrumb-item > a:hover {
|
|||
background-color: $sidebarActiveBgColor;
|
||||
color: $sidebarActiveColor;
|
||||
}
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link.have-active-child::after {
|
||||
background-color: $activeSidebarLinkColor;
|
||||
}
|
||||
|
||||
.sidebar ul.sidebar-elements li > a.sidebar-link:hover {
|
||||
background-color: $sidebarHoverColor;
|
||||
|
|
Loading…
Reference in New Issue