2015-03-31 02:36:00 +02:00
|
|
|
// Only display content to screen readers
|
|
|
|
//
|
2018-04-01 09:35:51 +02:00
|
|
|
// See: https://a11yproject.com/posts/how-to-hide-content/
|
2017-09-26 14:24:14 +02:00
|
|
|
// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
|
2015-03-31 02:36:00 +02:00
|
|
|
|
|
|
|
@mixin sr-only {
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2017-10-22 23:00:00 +02:00
|
|
|
clip: rect(0, 0, 0, 0);
|
2017-03-20 00:05:45 +01:00
|
|
|
white-space: nowrap;
|
2015-03-31 02:36:00 +02:00
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use in conjunction with .sr-only to only display content when it's focused.
|
|
|
|
//
|
2016-10-03 18:55:59 +02:00
|
|
|
// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
2015-03-31 02:36:00 +02:00
|
|
|
//
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
|
|
|
|
@mixin sr-only-focusable {
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
overflow: visible;
|
|
|
|
clip: auto;
|
2017-03-20 00:05:45 +01:00
|
|
|
white-space: normal;
|
2015-03-31 02:36:00 +02:00
|
|
|
}
|
|
|
|
}
|