Browse Source

修复结算页面夜间模式输入框样式未生效问题

1. 为.form-input类添加深色模式样式
2. 使用!important确保样式优先级
3. 修复夜间模式下输入框仍然为白色背景和黑色文字的问题
pull/3/head
徐飞洋 2 months ago
parent
commit
e807ae78d7
  1. 11
      pages/settlement/index.wxss

11
pages/settlement/index.wxss

@ -185,6 +185,17 @@ input, textarea {
input::placeholder, textarea::placeholder { input::placeholder, textarea::placeholder {
color: #8e8e93 !important; color: #8e8e93 !important;
} }
/* 确保.form-input类在深色模式下也生效 */
.form-input {
background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%) !important;
color: #fff !important;
border-color: #48484a !important;
}
.form-input::placeholder {
color: #8e8e93 !important;
}
} }
/* 按钮全局优化 */ /* 按钮全局优化 */

Loading…
Cancel
Save