mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-16 02:54:06 +00:00
35 lines
658 B
Plaintext
35 lines
658 B
Plaintext
// Hide RSS icon
|
|
a.feedlink {
|
|
background: none !important;
|
|
}
|
|
|
|
// CSS checkbox hack
|
|
.mw-checkbox-hack {
|
|
position: absolute;
|
|
z-index: 8;
|
|
display: block;
|
|
width: @icon-box-size + @margin-side + @icon-padding;
|
|
height: @header-height;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
-webkit-touch-callout: none;
|
|
}
|
|
|
|
.screen-reader-text {
|
|
position: absolute !important;
|
|
//.mixin-screen-reader-text;
|
|
display: block !important;
|
|
overflow: hidden !important;
|
|
width: 1px !important;
|
|
height: 1px !important;
|
|
padding: 0 !important;
|
|
border: 0 !important;
|
|
margin: -1px !important;
|
|
clip: rect( 1px, 1px, 1px, 1px ) !important;
|
|
}
|
|
|
|
.mw-empty-elt {
|
|
display: none;
|
|
}
|