mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-28 00:40:12 +00:00
f692c9f41d
Had to do that in JavaScript as doing it server-side would have made refactoring large parts of the extension necessary. Bug: 38141 Change-Id: I60ecd2fc0edf2aee89974d8069cc0b075cda3f93
14 lines
359 B
CSS
14 lines
359 B
CSS
/**
|
|
* Per http://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html
|
|
*/
|
|
.cite-accessibility-label {
|
|
position: absolute !important;
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
padding: 0 !important;
|
|
border: 0 !important;
|
|
height: 1px !important;
|
|
width: 1px !important;
|
|
overflow: hidden;
|
|
}
|