Skip to content

Commit 4e5212d

Browse files
committed
fix(input/textarea): fix indigo search hover and textarea caret color
1 parent 3f02631 commit 4e5212d

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/components/input/themes/shared/input.indigo.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,12 @@ $transition-duration: .25s;
179179
}
180180
}
181181

182+
&:hover {
183+
[part^='container'] {
184+
background: var-get($theme, 'box-background-hover');
185+
}
186+
}
187+
182188
&:focus-within,
183189
&:focus-within:hover {
184190
[part^='container'] {

src/components/textarea/themes/shared/textarea.common.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ textarea {
5757
}
5858
}
5959

60+
:host(:focus-within) {
61+
[part~='container'] {
62+
caret-color: var-get($theme, 'focused-text-color');
63+
}
64+
}
65+
6066
:host([readonly]) {
6167
[part='prefix'],
6268
[part='suffix'] {

0 commit comments

Comments
 (0)