Skip to content

Commit

Permalink
fix: 修复红色主题下播放器背景色错误
Browse files Browse the repository at this point in the history
  • Loading branch information
sl1673495 committed Aug 23, 2019
1 parent 4c58d94 commit 169238c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/player.vue
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ $img-outer-d: 300px;
left: 0;
right: 0;
padding: 0 36px;
background: var(--header-bgcolor);
background: var(--player-bgcolor);
z-index: $song-detail-z-index;
overflow: hidden;
overflow-y: auto;
Expand Down
3 changes: 3 additions & 0 deletions src/style/themes/variables-white.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export default {
['--menu-item-hover-bg']: '#e7e7e7',
['--menu-item-active-bg']: '#e2e2e2',

//player
['--player-bgcolor']: '#F9F9F9',

//playlist
['--playlist-bgcolor']: '#fff',
['--playlist-hover-bgcolor']: '#EFEFEF',
Expand Down
3 changes: 3 additions & 0 deletions src/style/themes/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export default {
['--menu-item-hover-bg']: '#1d1d1d',
['--menu-item-active-bg']: '#1b1b1b',

//player
['--player-bgcolor']: '#252525',

//playlist
['--playlist-bgcolor']: '#363636',
['--playlist-hover-bgcolor']: '#2e2e2e',
Expand Down

0 comments on commit 169238c

Please sign in to comment.