mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 18:40:05 +00:00
f65bf157bd
* fix: fix header background bleeding in VE * feat: move personal menu out of drawer to header * feat: update personal menu styles in smaller breakpoints * fix: fix typo in qqq documentation * ci: lint code to MediaWiki standards Check commit and GitHub actions for more details * feat: add title text to personal menu button Co-authored-by: github-actions <github-actions@users.noreply.github.com>
35 lines
566 B
Plaintext
35 lines
566 B
Plaintext
// Hide RSS icon
|
|
a.feedlink {
|
|
background: none !important;
|
|
}
|
|
|
|
// CSS checkbox hack
|
|
.mw-checkbox-hack {
|
|
&-checkbox {
|
|
display: none;
|
|
}
|
|
|
|
&-button {
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
text-indent: -999px;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|