Skip to content

Commit

Permalink
Fix styling of action dropdown button (#1048)
Browse files Browse the repository at this point in the history
Fix styling of action drop drown button for `hover` and `focus` states to match _Users_ tab
  • Loading branch information
gillespi314 committed Jun 10, 2021
1 parent 662406d commit 6040f88
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions frontend/pages/admin/TeamManagementPage/_styles.scss
Expand Up @@ -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;
}

}

0 comments on commit 6040f88

Please sign in to comment.