fix(theme-chalk): [input-tag] correct input-tag placeholder color (#19386)

fix(components): [input-tag] correct input-tag placeholder color
This commit is contained in:
DDDDD12138
2024-12-25 21:10:55 +08:00
committed by GitHub
parent 515359004b
commit 79c43db20e
2 changed files with 5 additions and 0 deletions

View File

@@ -924,6 +924,7 @@ $input-tag: () !default;
$input-tag: map.merge(
(
'border-color-hover': getCssVar('border-color-hover'),
'placeholder-color': getCssVar('text-color-placeholder'),
'disabled-color': getCssVar('disabled-text-color'),
'disabled-border': getCssVar('disabled-border-color'),
'font-size': getCssVar('font-size-base'),

View File

@@ -169,6 +169,10 @@
appearance: none;
width: 100%;
background-color: transparent;
&::placeholder {
color: getCssVar('input-tag-placeholder-color');
}
}
@include e(input-calculator) {