Skip to content

Commit

Permalink
Fix/dropdown accessibility (#476)
Browse files Browse the repository at this point in the history
* fix environment select text color to be visible.

* fix dropdown text color for active status and domain autocomplete.
  • Loading branch information
just-at-uber authored May 19, 2022
1 parent 5eb5ccc commit b125b7c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ header.top-bar
}
.environment-select {
color: #000;
.vs__dropdown-toggle {
border-color: transparent;
}
Expand Down
6 changes: 5 additions & 1 deletion client/containers/active-status/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,12 @@ export default {
<style lang="stylus">
@require "../../styles/definitions"
span.active-status {
color: white;
}
.active-status {
color: white !important;
color: #000;
padding: 5px 10px;
text-transform: uppercase;
Expand Down
1 change: 1 addition & 0 deletions client/containers/domain-autocomplete/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export default {
@require "../../styles/base.styl"
.domain-autocomplete {
color: #000;
width: 100%;
.navigate-to-domain {
Expand Down

0 comments on commit b125b7c

Please sign in to comment.