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

Fix background colour for toggle switch in Polls settings. Fixes ()

This commit is contained in:
Magnus Walbeck 2022-09-12 23:53:38 +02:00 committed by GitHub
parent 930b800edb
commit 0eaf40fca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions
CHANGELOG.md
css/apps/thirdparty

View file

@ -2,6 +2,10 @@
## [Unreleased]
### Fixed
- [#309](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/309) Fix background colour for toggle switch in Polls settings
## 24.0.2 - 2022-07-26
### Fixed

View file

@ -96,3 +96,10 @@
border: 1px solid var(--color-border) !important;
box-shadow: none !important;
}
.app-settings .app-settings__content .checkbox-radio-switch:not(.checkbox-radio-switch--disabled) {
.checkbox-radio-switch__input:hover + .checkbox-radio-switch__label,
.checkbox-radio-switch__input:focus + .checkbox-radio-switch__label {
background-color: var(--color-background-hover);
}
}