1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fixing hover effect in inputs

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-06-22 09:28:52 +03:00
parent 90c67f9a16
commit 386c6a3a4d
2 changed files with 6 additions and 0 deletions

View File

@ -136,10 +136,15 @@
border-color: var(--inputControlBorder);
color: var(--textColorTertiary);
padding: $padding;
transition: border-color 0.1s;
&:hover {
border-color: var(--inputControlHoverBorder);
}
&:focus-within {
border-color: $colorInfo;
}
}
}
}

View File

@ -213,6 +213,7 @@ html {
:hover {
&.Select__control {
box-shadow: 0 0 0 1px var(--inputControlHoverBorder);
transition: box-shadow 0.1s;
}
}