From 969fb378ceb642095bae309868488e00f90df282 Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Tue, 18 Jul 2017 15:32:23 -0400 Subject: [PATCH] Fix link :active/:hover color accessibility in the examples --- examples/full/src/components/header/style.css | 6 +++--- examples/root/components/header/style.css | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/full/src/components/header/style.css b/examples/full/src/components/header/style.css index a7e360682..f08fda702 100644 --- a/examples/full/src/components/header/style.css +++ b/examples/full/src/components/header/style.css @@ -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); } diff --git a/examples/root/components/header/style.css b/examples/root/components/header/style.css index a7e360682..f08fda702 100644 --- a/examples/root/components/header/style.css +++ b/examples/root/components/header/style.css @@ -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); }