Browse Source
fix:fix password input icon visual bug in certain browser (#7521)
Co-authored-by: nick8799981325 <zc1078134211@163.com>
pull/7519/head
tikitoki
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
11 additions and
0 deletions
-
packages/@core/ui-kit/shadcn-ui/src/ui/input/Input.vue
|
|
|
@ -33,5 +33,16 @@ const modelValue = useVModel(props, 'modelValue', emits, { |
|
|
|
<style lang="scss" scoped> |
|
|
|
input { |
|
|
|
--ring: var(--primary); |
|
|
|
|
|
|
|
&::-ms-reveal, |
|
|
|
&::-ms-clear { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
&::-webkit-credentials-auto-fill-button, |
|
|
|
&::-webkit-inner-spin-button, |
|
|
|
&::-webkit-outer-spin-button { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
|