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

Fix dark icons in navigation sidebar in Music and fix styling for music controls in Music ()

This commit is contained in:
Magnus Walbeck 2022-09-13 00:14:49 +02:00 committed by GitHub
parent 0eaf40fca2
commit 30e590ae95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 2 deletions
CHANGELOG.md
css/apps/thirdparty

View file

@ -5,6 +5,8 @@
### Fixed
- [#309](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/309) Fix background colour for toggle switch in Polls settings
- [#308](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/308) Fix dark icons in navigation sidebar in Music
- [#310](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/310) Fix styling for music controls in Music
## 24.0.2 - 2022-07-26

View file

@ -39,6 +39,7 @@
}
#controls {
background-color: var(--color-main-background);
border-bottom: 1px solid var(--color-border);
.progress,
@ -82,7 +83,7 @@
.buffer-bar {
background-color: var(--color-background-hover) !important;
opacity: 1;
opacity: 1 !important;
}
.play-bar {
@ -108,8 +109,22 @@
filter: invert(95%);
}
// play-pause button on hover in nav sidebar
#app-content .play-pause {
filter: invert(95%);
}
#app-navigation .play-pause {
filter: unset;
}
.icon-album,
.icon-folder-nav,
.icon-audiotrack,
.icon-library-music,
.icon-radio,
.icon-podcast,
.icon-play-big,
.icon-pause-big {
filter: invert(95%);
}
}