mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
03da361b97
- Refactor existing template data-related partials into CitizenComponent components - Re-implement user menu header as UserInfo - Add description text for anon and temp user in UserMenu --------- Co-authored-by: github-actions <github-actions@users.noreply.github.com>
40 lines
583 B
Plaintext
40 lines
583 B
Plaintext
// Hide elements that are not needed in print
|
|
.mw-header,
|
|
.citizen-toc,
|
|
#siteNotice,
|
|
.mw-indicators,
|
|
.page-actions,
|
|
.section-toggle,
|
|
.mw-editsection,
|
|
.citizen-page-footer,
|
|
#mw-data-after-content,
|
|
#footer-desc,
|
|
#footer-places,
|
|
.citizen-footer__bottom {
|
|
display: none;
|
|
}
|
|
|
|
a {
|
|
color: #000;
|
|
border-bottom: 1px solid #aaa;
|
|
}
|
|
|
|
.firstHeading {
|
|
margin-top: var( --space-md );
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.citizen-body {
|
|
line-height: var( --line-height-xs );
|
|
}
|
|
|
|
.printfooter {
|
|
clear: both;
|
|
font-size: 13px;
|
|
border-top: 1px solid #aaa;
|
|
}
|
|
|
|
.citizen-footer {
|
|
margin-top: var( --space-lg );
|
|
}
|