2013-08-17 18:21:00 +00:00
|
|
|
/**
|
|
|
|
* Per http://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html
|
2013-09-14 13:48:53 +00:00
|
|
|
* and https://en.wikipedia.org/w/index.php?oldid=572888139#Scrolling_past_the_bottom_of_the_page...
|
2013-08-17 18:21:00 +00:00
|
|
|
*/
|
|
|
|
.cite-accessibility-label {
|
2013-09-14 13:48:53 +00:00
|
|
|
/* Workaround a Webkit/Blink bug about positioning within columns as many wikis format references with several columns */
|
|
|
|
top: -99999px;
|
2016-05-17 17:15:13 +00:00
|
|
|
clip: rect( 1px, 1px, 1px, 1px );
|
|
|
|
/* stylelint-disable declaration-no-important */
|
|
|
|
position: absolute !important;
|
2013-08-17 18:21:00 +00:00
|
|
|
padding: 0 !important;
|
|
|
|
border: 0 !important;
|
|
|
|
height: 1px !important;
|
|
|
|
width: 1px !important;
|
2016-05-17 17:15:13 +00:00
|
|
|
/* stylelint-enable declaration-no-important */
|
2013-08-17 18:21:00 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|