mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-04 03:01:23 -06:00
Why are these changes being introduced: * The current tab order requires keyboard or screenreader users to tab though all of the navigation links before they get to the main content of the page Relevant ticket(s): * Discussed as part of larger WCAG ticket https://github.com/just-the-docs/just-the-docs/issues/566 How does this address that need: * Introduces an off screen link as the first element in the tab order that will display when it has focus but remain off screen for users not using tab to navigate the document. * Introduces a new scss file with the required style elements and uses colors variables to ensure both light and dark mode are respected. Background information on this technique: - https://www.w3.org/TR/WCAG20-TECHS/G1.html - https://accessibility.oit.ncsu.edu/it-accessibility-at-nc-state/developers/accessibility-handbook/mouse-and-keyboard-events/skip-to-main-content/
31 lines
519 B
SCSS
31 lines
519 B
SCSS
// Skipnav
|
|
// Skip to main content
|
|
|
|
a.skip-to-main {
|
|
left: -999px;
|
|
position: absolute;
|
|
top: auto;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
z-index: -999;
|
|
}
|
|
|
|
a.skip-to-main:focus,
|
|
a.skip-to-main:active {
|
|
color: $link-color;
|
|
background-color: $body-background-color;
|
|
left: auto;
|
|
top: auto;
|
|
width: 30%;
|
|
height: auto;
|
|
overflow: auto;
|
|
margin: 10px 35%;
|
|
padding: 5px;
|
|
border-radius: 15px;
|
|
border: 4px solid $btn-primary-color;
|
|
text-align: center;
|
|
font-size: 1.2em;
|
|
z-index: 999;
|
|
}
|