fix: list hover background in dark mode

This commit is contained in:
kolaente 2022-05-06 22:16:54 +02:00
parent ce3f285224
commit 2dba9e6e57
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 1 deletions

View File

@ -370,6 +370,10 @@ $vikunja-nav-selected-width: 0.4rem;
&:hover .favorite {
opacity: 1;
}
&:hover {
background: transparent;
}
}
.menu-label {
@ -573,6 +577,6 @@ $vikunja-nav-selected-width: 0.4rem;
}
a.dropdown-item:hover {
background: var(--dropdown-item-hover-background-color) !important;
background: var(--dropdown-item-hover-background-color) !important;
}
</style>