1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-04-08 15:00:11 +00:00

Fix hover background on vue-checkboxes in Talk settings

This commit is contained in:
Magnus Walbeck 2021-11-28 14:01:05 +01:00
parent 9ef2a2ba0c
commit 6a6c0fcf82
Signed by: mwalbeck
GPG key ID: CCB78CFF3F950769

View file

@ -168,3 +168,14 @@
.vue-treeselect--single .vue-treeselect__option--selected {
background-color: var(--color-primary) !important;
}
/* vue-checkboxes ----------------------------------------------------------- */
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__input:hover
+ .checkbox-radio-switch__label[data-v-5cec6b50],
.checkbox-radio-switch:not(.checkbox-radio-switch--disabled)
.checkbox-radio-switch__input:focus
+ .checkbox-radio-switch__label[data-v-5cec6b50] {
background-color: var(--color-background-hover) !important;
}