mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
58c87018b2
Bug: T287410 Change-Id: Ibf8c20cfb1c3adb262224a28488c03c64323f509
38 lines
799 B
Plaintext
38 lines
799 B
Plaintext
/**
|
|
* Print styles previously provided by the deprecated `legacy` feature (T287410)
|
|
* Copied from mediawiki.skinning/commonPrint.less in Mediawiki 1.36 core
|
|
*/
|
|
|
|
/**
|
|
* Hide all the elements irrelevant for printing
|
|
* Skins however can and should override.
|
|
*/
|
|
/* General hide-in-print class, please only use sparely */
|
|
.noprint,
|
|
/* Various content classes, in alphabetical order */
|
|
.mw-cite-backlink,
|
|
.mw-redirectedfrom,
|
|
.patrollink,
|
|
/* Various content ids, in alphabetical order */
|
|
#column-one,
|
|
#footer-places,
|
|
#mw-navigation,
|
|
/* Deprecated, changed in core */
|
|
#f-poweredbyico,
|
|
#f-copyrightico,
|
|
li#about,
|
|
li#disclaimer,
|
|
li#mobileview,
|
|
li#privacy {
|
|
display: none;
|
|
}
|
|
|
|
#footer {
|
|
background: #fff;
|
|
color: #000;
|
|
margin-top: 1em;
|
|
border-top: 1pt solid #aaa;
|
|
padding-top: 5px;
|
|
direction: ltr;
|
|
}
|