Skip to content

Commit b125b7c

Browse files
authored
Fix/dropdown accessibility (#476)
* fix environment select text color to be visible. * fix dropdown text color for active status and domain autocomplete.
1 parent 5eb5ccc commit b125b7c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

client/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,8 @@ header.top-bar
437437
}
438438
439439
.environment-select {
440+
color: #000;
441+
440442
.vs__dropdown-toggle {
441443
border-color: transparent;
442444
}

client/containers/active-status/component.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ export default {
8181
<style lang="stylus">
8282
@require "../../styles/definitions"
8383
84+
span.active-status {
85+
color: white;
86+
}
87+
8488
.active-status {
85-
color: white !important;
89+
color: #000;
8690
padding: 5px 10px;
8791
text-transform: uppercase;
8892

client/containers/domain-autocomplete/component.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ export default {
105105
@require "../../styles/base.styl"
106106
107107
.domain-autocomplete {
108+
color: #000;
108109
width: 100%;
109110
110111
.navigate-to-domain {

0 commit comments

Comments
 (0)