moves the news titel to the component and adds css classes for darker dropdown buttons for the different menu levels

This commit is contained in:
SimonGschnell
2024-09-26 12:05:44 +02:00
parent b174818ed2
commit bc6bc930fe
3 changed files with 31 additions and 8 deletions
+17 -1
View File
@@ -68,10 +68,26 @@ html {
background-color: var(--fhc-cis-menu-lvl-1-bg-hover);
}
/* makes the dropdown button darker*/
/* makes the dropdown button darker for level1*/
#cis-header .btn-level-1+.btn:not(.btn-level-1){
background-color:var(--fhc-cis-menu-lvl-1-bg-hover) !important;
}
/* makes the dropdown button darker for level2*/
#cis-header .btn-level-2+.btn:not(.btn-level-2){
background-color: var(--fhc-cis-menu-lvl-2-bg-hover) !important;
}
/* makes the dropdown button darker for level3*/
#cis-header .btn-level-3+.btn:not(.btn-level-3){
background-color: var(--fhc-cis-menu-lvl-3-bg-hover) !important;
}
/* makes the dropdown button darker for level4*/
#cis-header .btn-level-4+.btn:not(.btn-level-4){
background-color: var(--fhc-cis-menu-lvl-4-bg-hover) !important;
}
/* makes the dropdown button darker for level5*/
#cis-header .btn-level-5+.btn:not(.btn-level-5){
background-color: var(--fhc-cis-menu-lvl-5-bg-hover) !important;
}
#cis-header .btn-level-2,
#cis-header .btn-level-2 + .btn,