Issue #3273056 by kmonahan, mherchel, Johnny Santos, rkoller, ckrina: Active and hover state of skip to main content has a too low color contrast
parent
aa75324995
commit
c3a73e9df4
|
@ -17,12 +17,18 @@
|
|||
left: 50%;
|
||||
padding: 1px 0.625rem 2px;
|
||||
transform: translateX(-50%);
|
||||
color: #fff;
|
||||
color: var(--color-white);
|
||||
border-radius: 0 0 0.625rem 0.625rem;
|
||||
background: #444;
|
||||
background: var(--color-gray-800);
|
||||
font-size: 0.94em;
|
||||
}
|
||||
|
||||
.skip-link:hover,
|
||||
.skip-link:active {
|
||||
color: var(--color-white);
|
||||
background-color: var(--color-gray);
|
||||
}
|
||||
|
||||
.skip-link:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -10,11 +10,16 @@
|
|||
left: 50%;
|
||||
padding: 1px 10px 2px;
|
||||
transform: translateX(-50%);
|
||||
color: #fff;
|
||||
color: var(--color-white);
|
||||
border-radius: 0 0 10px 10px;
|
||||
background: #444;
|
||||
background: var(--color-gray-800);
|
||||
font-size: 0.94em;
|
||||
}
|
||||
.skip-link:hover,
|
||||
.skip-link:active {
|
||||
color: var(--color-white);
|
||||
background-color: var(--color-gray);
|
||||
}
|
||||
.skip-link:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue