修复输入框字体不跟随设置的问题

pull/1094/head
lyswhut 2022-12-30 18:37:08 +08:00
parent 3a9dbbb577
commit 8bbc4a3c4a
5 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@
- 数据迁移,升级此版本时,会使用旧版本的我的列表、下载设置、快捷键设置、自定义源等数据会自动迁移到新的数据格式版本,旧的数据仍然会保留,但下载列表的数据不做迁移 - 数据迁移,升级此版本时,会使用旧版本的我的列表、下载设置、快捷键设置、自定义源等数据会自动迁移到新的数据格式版本,旧的数据仍然会保留,但下载列表的数据不做迁移
- 备份文件v2.0.0及以后版本导出的列表、配置不支持导入v2.0.0之前版本但v2.0.0之前版本导出的列表、配置支持导入v2.0.0以及以后版本移动端需v0.15.0起才支持导入PC端v2生成的备份数据 - 备份文件v2.0.0及以后版本导出的列表、配置不支持导入v2.0.0之前版本但v2.0.0之前版本导出的列表、配置支持导入v2.0.0以及以后版本移动端需v0.15.0起才支持导入PC端v2生成的备份数据
- 同步功能,由于计划对此功能进行调整所以该功能暂不可用入口已被屏蔽预计在移动端v1.0.0出来时再开放(目前开发工作已在进行中) - 同步功能,该功能不支持与移动端v1.0.0之前版本的使用需等待后面的新版移动端目前移动端v1的开发工作已在进行中
### 新增 ### 新增

View File

@ -19,6 +19,9 @@ time, mark, audio, video {
font-size: inherit; font-size: inherit;
vertical-align: baseline; vertical-align: baseline;
} }
input {
font-family: inherit;
}
html { html {
font-family: "Microsoft YaHei", "Microsoft Jhenghei", "PingFang SC", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans", "Noto Sans CJK Sc", sans-serif; font-family: "Microsoft YaHei", "Microsoft Jhenghei", "PingFang SC", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans", "Noto Sans CJK Sc", sans-serif;
} }

View File

@ -238,6 +238,7 @@ export default {
line-height: @height-toolbar * 0.52 + 5px; line-height: @height-toolbar * 0.52 + 5px;
&::placeholder { &::placeholder {
color: var(--color-button-font); color: var(--color-button-font);
font-size: .98em;
} }
} }
button { button {

View File

@ -266,6 +266,7 @@ export default {
line-height: @height-toolbar * 0.52 + 5px; line-height: @height-toolbar * 0.52 + 5px;
&::placeholder { &::placeholder {
color: var(--color-button-font); color: var(--color-button-font);
font-size: .98em;
} }
} }
button { button {

View File

@ -265,7 +265,7 @@ export default {
text-decoration: none; text-decoration: none;
} }
&::placeholder { &::placeholder {
color: rgba(197, 197, 197, 0.7)!important; color: var(--color-200) !important;
} }
} }
.hotKeyFailed { .hotKeyFailed {