Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Sep 10, 2024
1 parent 9d11489 commit cc4dd39
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions projects/core/styles/components/textfield.less
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ tui-textfield {

&::placeholder,
&._empty {
color: transparent;
color: transparent !important;
-webkit-text-fill-color: transparent !important;
}
}
}
Expand All @@ -162,7 +163,8 @@ tui-textfield {

&::placeholder,
&._empty {
color: transparent;
color: transparent !important;
-webkit-text-fill-color: transparent !important;
}
}
}
Expand Down Expand Up @@ -223,7 +225,8 @@ tui-textfield {
.appearance-focus({
&::placeholder,
&._empty {
color: var(--tui-text-tertiary);
color: transparent !important;
-webkit-text-fill-color: var(--tui-text-tertiary) !important;
}

& ~ label {
Expand All @@ -248,7 +251,8 @@ tui-textfield {
label:defined,
input:defined::placeholder,
select:defined._empty {
color: var(--tui-text-secondary);
color: transparent !important;
-webkit-text-fill-color: var(--tui-text-secondary) !important;
}

select:not([data-mode='readonly']) {
Expand Down

0 comments on commit cc4dd39

Please sign in to comment.