Skip to content

Commit

Permalink
Merge pull request #241 from developit/link-color-a11y
Browse files Browse the repository at this point in the history
Fix link :active/:hover color accessibility in the examples
  • Loading branch information
reznord authored Jul 18, 2017
2 parents 5c3aa46 + 969fb37 commit 123cc8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/full/src/components/header/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
text-align: center;
background: rgba(255,255,255,0);
text-decoration: none;
color: #EEE;
color: #FFF;
will-change: background-color;
}

.header nav a:hover,
.header nav a:active {
background: rgba(255,255,255,0.3);
background: rgba(0,0,0,0.2);
}

.header nav a.active {
background: rgba(255,255,255,0.4);
background: rgba(0,0,0,0.4);
}
6 changes: 3 additions & 3 deletions examples/root/components/header/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
text-align: center;
background: rgba(255,255,255,0);
text-decoration: none;
color: #EEE;
color: #FFF;
will-change: background-color;
}

.header nav a:hover,
.header nav a:active {
background: rgba(255,255,255,0.3);
background: rgba(0,0,0,0.2);
}

.header nav a.active {
background: rgba(255,255,255,0.4);
background: rgba(0,0,0,0.4);
}

0 comments on commit 123cc8e

Please sign in to comment.