Skip to content

Commit

Permalink
Fix dark icons in navigation sidebar in Music and fix styling for mus…
Browse files Browse the repository at this point in the history
…ic controls in Music (#316)
  • Loading branch information
mwalbeck authored Sep 12, 2022
1 parent 0eaf40f commit 30e590a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
19 changes: 17 additions & 2 deletions css/apps/thirdparty/_music.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
}

#controls {
background-color: var(--color-main-background);
border-bottom: 1px solid var(--color-border);

.progress,
Expand Down Expand Up @@ -82,7 +83,7 @@

.buffer-bar {
background-color: var(--color-background-hover) !important;
opacity: 1;
opacity: 1 !important;
}

.play-bar {
Expand All @@ -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%);
}
}
Expand Down

0 comments on commit 30e590a

Please sign in to comment.