Make fullscreen focusable

Includes:
- adding tabindex=0 to make it focusable
- giving it a focus style matching GOVUK Frontend
- giving it a label matching the table caption

Taken from this article:

https://adrianroselli.com/2017/11/a-responsive-accessible-table.html#ResponsiveScrollingKeyboard
This commit is contained in:
Tom Byers
2020-09-18 21:28:34 +01:00
parent dd9ab6f8cf
commit de89e3cc11
2 changed files with 15 additions and 2 deletions

View File

@@ -144,3 +144,12 @@
}
}
.js-focus-style {
outline: 3px solid $govuk-focus-text-colour;
box-shadow: 0 0 0 7px $govuk-focus-colour;
*:focus {
outline: none;
}
}