Quasar Framework 中自动填充 q 输入颜色

问题描述 投票:0回答:1

Auto-filled input fields have a different background color

问题是,当 q-input 自动填充时,它还会显示不同的背景颜色样式,看起来很奇怪。

我尝试升级Quasar版本并搜索不同的解决方案来解决这个问题。

forms input autocomplete autofill quasar
1个回答
0
投票

我能够通过添加此样式来解决问题:

<style>
 input {
  background-clip: text !important;
  -webkit-background-clip: text !important;
}
</style>

Input fields with regular background color after auto-fill

© www.soinside.com 2019 - 2024. All rights reserved.