Fleet UI: Add hover/focus state to icon and border of label filter search (#13299)
This commit is contained in:
+1
-1
@@ -61,7 +61,6 @@ const CustomLabelGroupHeading = (
|
||||
</div>
|
||||
</div>
|
||||
<div className={`${baseClass}__field`}>
|
||||
<Icon name="search" />
|
||||
<input
|
||||
className={`${baseClass}__input`}
|
||||
ref={inputRef}
|
||||
@@ -77,6 +76,7 @@ const CustomLabelGroupHeading = (
|
||||
onClick={handleInputClick}
|
||||
onBlur={onBlurLabelSearchInput}
|
||||
/>
|
||||
<Icon name="search" />
|
||||
</div>
|
||||
</components.GroupHeading>
|
||||
);
|
||||
|
||||
+10
-1
@@ -48,9 +48,18 @@
|
||||
color: $ui-fleet-black-50;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
&:focus,
|
||||
&:hover {
|
||||
outline: none;
|
||||
border-color: $core-vibrant-blue;
|
||||
|
||||
+ .icon {
|
||||
svg {
|
||||
path {
|
||||
fill: $core-vibrant-blue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--disabled {
|
||||
|
||||
Reference in New Issue
Block a user