Browse Source

fix(accessibility): don't use white on yellow text

White on yellow presents accessibility challenges and should be avoided.
Change the white on yellow used in highlighted buttons for a darker
colour against the yellow background.

Fix #356
renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
8d0838d691
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 2
      app/components/Contacts/ConnectManually.scss
  2. 2
      app/components/Contacts/SubmitChannelForm.scss
  3. 2
      app/components/Form/Pay.scss
  4. 2
      app/components/Form/Request.scss

2
app/components/Contacts/ConnectManually.scss

@ -124,6 +124,8 @@
&.active {
background: $gold;
color: $spaceblue;
font-weight: bold;
opacity: 1;
&:hover {

2
app/components/Contacts/SubmitChannelForm.scss

@ -132,6 +132,8 @@
&.active {
background: $gold;
color: $spacegrey;
font-weight: bold;
opacity: 1;
&:hover {

2
app/components/Form/Pay.scss

@ -163,6 +163,8 @@
&.active {
background: $gold;
color: $spaceblue;
font-weight: bold;
opacity: 1;
&:hover {

2
app/components/Form/Request.scss

@ -142,6 +142,8 @@
&.active {
background: $gold;
color: $spaceblue;
font-weight: bold;
opacity: 1;
&:hover {

Loading…
Cancel
Save