Ensure additional hover states have matching focus states

This commit is contained in:
benjamin melançon 2018-12-25 23:26:56 -05:00
parent c7031b4933
commit f890ebdb94

View file

@ -32,8 +32,11 @@
a .icon { a .icon {
color: $dandelion; color: $dandelion;
} }
a:hover .icon { a:hover,
color: $dandelion-light; a:focus {
.icon {
color: $dandelion-light;
}
} }
} }
@ -60,7 +63,8 @@
right: 0; right: 0;
box-shadow: inset 0 0 0 100vmax rgba($blue, .5); box-shadow: inset 0 0 0 100vmax rgba($blue, .5);
} }
&:hover { &:hover,
&:focus {
color: $white; color: $white;
background-color: darken($blue, 5%); background-color: darken($blue, 5%);
& > .container > .hero-image > .hero-image-shadow:before { & > .container > .hero-image > .hero-image-shadow:before {
@ -107,7 +111,8 @@
.hero.is-dandelion { .hero.is-dandelion {
a { a {
color: $text-light; color: $text-light;
&:hover { &:hover,
&:focus {
color: $blue-light; color: $blue-light;
background-color: $white; background-color: $white;
} }
@ -123,7 +128,8 @@
.hero.is-light, .hero.is-light,
.hero.is-grey { .hero.is-grey {
a:hover { a:hover,
a:focus {
color: $blue-light; color: $blue-light;
background-color: $white; background-color: $white;
} }