Fix styling of action dropdown button (#1048)

Fix styling of action drop drown button for `hover` and `focus` states to match _Users_ tab
This commit is contained in:
gillespi314 2021-06-10 11:18:20 -05:00 committed by GitHub
parent 662406d705
commit 6040f88964
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,30 @@
@include sticky-settings-description;
padding-bottom: $pad-medium;
}
.Select.is-focused:not(.is-open) > .Select-control {
border: none;
box-shadow: none;
}
.Select.is-open {
.Select-arrow {
margin-top: $pad-xsmall;
}
}
.Select-arrow {
margin-top: $pad-xsmall;
}
.Select-control:hover {
box-shadow: none;
}
.Select-placeholder {
font-size: $x-small;
margin-top: $pad-xxsmall;
padding-left: 0;
}
}