<style lang="scss" scoped> /* 修复input 背景不协调 和光标变色 */ /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */ //去掉type=number 带上下箭头的问题 input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type="number"] { -moz-appearance: textfield; } //历史 input:-webkit-autofill { color: #ffffff!important; -webkit-text-fill-color: rgba(0,0,0,0); box-shadow: 0 0 0 1000px red inset; } ::v-deep .el-input__inner { background-color:#00132c!important; border:none; color: #fff; } </style>
原文:https://www.cnblogs.com/fkcqwq/p/13324687.html