修复更新弹窗底部文字颜色适配问题

pull/166/head
lyswhut 2019-12-17 12:56:25 +08:00
parent e93052f0cb
commit 2b263cae87
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,3 @@
### 修复 ### 修复
- 修复全局更新弹窗无法遮盖搜索框的问题 - 修复更新弹窗底部文字颜色没有适配当前主题颜色的问题
### 其他
- 由于electron 7.1.3 - 7.1.5 的自动更新功能存在Bug现降级到7.1.2

View File

@ -261,7 +261,7 @@ export default {
p { p {
font-size: 12px; font-size: 12px;
color: @color-theme; color: @color-theme;
line-height: 1.2; line-height: 1.25;
} }
} }
} }
@ -281,6 +281,9 @@ each(@themes, {
.footer { .footer {
.desc { .desc {
color: ~'@{color-@{value}-theme}'; color: ~'@{color-@{value}-theme}';
p {
color: ~'@{color-@{value}-theme}';
}
} }
} }
} }