Skip to content

Commit

Permalink
Support Breeze Dark theme #553
Browse files Browse the repository at this point in the history
  • Loading branch information
Rello committed Mar 24, 2022
1 parent dada2f9 commit 1cecfb2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to the Audio Player project will be documented in this file.
### Changed
- getID3 1.9.21-202202220815
- migrated drag and drop from jquery to vanilla js
- Support Breeze Dark theme #553

### Fixed
- Scan freeze and PHP fread() error #571
Expand Down
12 changes: 9 additions & 3 deletions css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ i#scanAudiosFirst {
}

#category_selector {
background: var(--color-main-background);
width: 100%;
margin: 0;
}
Expand Down Expand Up @@ -557,7 +556,7 @@ i#scanAudiosFirst {
float: left;
display: block;
height: auto;

padding-bottom: 250px;
}

.margin-bottom {
Expand Down Expand Up @@ -610,7 +609,7 @@ i#scanAudiosFirst {
position: relative;
width: 100%;
float: left;
color: var(--color-text-lighter);;
color: var(--color-text-lighter);
font-size: 12px;
font-style: italic;
text-overflow: ellipsis;
Expand Down Expand Up @@ -817,6 +816,13 @@ input[type=range].volume-slider {
background: var(--color-main-background);
}

.volume-slider::-webkit-slider-progress,
.volume-slider::-moz-range-progress {
background-color: var(--color-background-hover);
padding: 2px;
border-radius: 5px;
}

input[type=range].volume-slider:focus {
outline: none;
}
Expand Down

0 comments on commit 1cecfb2

Please sign in to comment.