修改播放详情页的歌曲图片的显示效果
parent
8eb71495a1
commit
a25ef6e2a0
|
@ -1,3 +1,4 @@
|
||||||
### 修复
|
### 优化
|
||||||
|
|
||||||
|
- 修改播放详情页的歌曲图片的显示效果
|
||||||
|
|
||||||
- 降级 Electron 到 9.x.x 版本修复 Linux 版桌面歌词窗口变白的问题
|
|
||||||
|
|
|
@ -472,7 +472,10 @@ export default {
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
border: 5px solid @color-theme-hover;
|
box-shadow: 0 0 4px @color-theme-hover;
|
||||||
|
border-radius: 6px;
|
||||||
|
opacity: .8;
|
||||||
|
// border: 5px solid @color-theme-hover;
|
||||||
// border-radius: @radius-border;
|
// border-radius: @radius-border;
|
||||||
// border: 5px solid #fff;
|
// border: 5px solid #fff;
|
||||||
}
|
}
|
||||||
|
@ -687,7 +690,8 @@ each(@themes, {
|
||||||
}
|
}
|
||||||
.img {
|
.img {
|
||||||
img {
|
img {
|
||||||
border-color: ~'@{color-@{value}-theme-hover}';
|
box-shadow: 0 0 4px ~'@{color-@{value}-theme-hover}';
|
||||||
|
// border-color: ~'@{color-@{value}-theme-hover}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.lrc-active {
|
.lrc-active {
|
||||||
|
|
Loading…
Reference in New Issue