优化音量条交互视觉效果

pull/96/head
lyswhut 2019-10-18 21:47:10 +08:00
parent ffe11c7015
commit 529be08420
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#### 优化
- 优化搜索框搜索体验
- 优化音量条交互视觉效果
#### 修复

View File

@ -565,6 +565,11 @@ export default {
display: flex;
align-items: center;
padding: 0 15px;
opacity: .5;
transition: opacity @transition-theme;
&:hover {
opacity: 1;
}
}
.volume {
@ -595,7 +600,6 @@ export default {
transition-duration: 0.2s;
background-color: @color-theme;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
opacity: .5;
}
.volume-mask {