makes the dropdown button of the menu points darker to make them more visible

This commit is contained in:
SimonGschnell
2024-09-25 09:26:08 +02:00
parent 7ed7ce1bb9
commit 3c050438b3
2 changed files with 7 additions and 13 deletions
+6
View File
@@ -67,6 +67,12 @@ html {
/* border-color: var(--fhc-cis-menu-lvl-1-border-hover); */
background-color: var(--fhc-cis-menu-lvl-1-bg-hover);
}
/* makes the dropdown button darker*/
#cis-header .btn-level-1+.btn:not(.btn-level-1){
background-color:var(--fhc-cis-menu-lvl-1-bg-hover) !important;
}
#cis-header .btn-level-2,
#cis-header .btn-level-2 + .btn,
#cis-nav .btn-level-2,
+1 -13
View File
@@ -148,19 +148,7 @@ export default {
</div>
<template v-else>
<template v-if="hasChilds">
<a v-if="link.substr(0, 1) == '#'"
@click.prevent="toggleCollapse"
:aria-expanded="entry.menu_open"
:href="link"
:class="{
'btn btn-default rounded-0 w-100 text-start dropdown-toggle': true,
['btn-level-' + level]: true,
collapsed: !entry.menu_open
}">
<span :class="{'text-decoration-underline':active}">{{ entry.titel }}</span>
</a>
<div v-else class="btn-group w-100">
<div class="btn-group w-100">
<a :href="link" :target="target"
:class="{
'btn btn-default rounded-0 text-start': true,