Skip to content

Commit

Permalink
feat(FT-329): update background color onhover for single select icons
Browse files Browse the repository at this point in the history
  • Loading branch information
chokonaira committed Oct 26, 2023
1 parent 57ce3e6 commit 0255d23
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/components/Select/select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
.sb-minibrowser {
display: none;

@include listPosition();
@include listPosition;
}

&--loading .sb-select-inner__chevron {
Expand Down Expand Up @@ -249,7 +249,6 @@
&--visible,
&:hover,
&:focus {
background: $white;
border-radius: $base-border-radius;
opacity: 1;
}
Expand All @@ -260,6 +259,17 @@
border-radius: 0 $base-border-radius $base-border-radius 0;
cursor: pointer;
}

.multi-link-select-inner__open-story,
.sb-select-inner__clear,
.sb-select-inner__chevron-dropdown
{
&--visible,
&:hover,
&:focus {
background-color: $light-50;
}
}
}
}

Expand Down Expand Up @@ -294,8 +304,8 @@
padding: 13px 0;
background-color: $white;

@include popoverComponent();
@include listPosition();
@include popoverComponent;
@include listPosition;

ul {
margin: 0;
Expand Down

0 comments on commit 0255d23

Please sign in to comment.