MediaWiki:Common.css: Difference between revisions
Till Kraemer (talk | contribs) mNo edit summary |
Till Kraemer (talk | contribs) mNo edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* From https://en.wikipedia.org/wiki/MediaWiki:Common.css */ | |||
/** Kleinschreibung nicht erzwingen */ | /** Kleinschreibung nicht erzwingen */ | ||
Line 385: | Line 387: | ||
div.reflist, | div.reflist, | ||
div.refbegin { | div.refbegin { | ||
font-size: | font-size: 100%; /* Default font-size */ | ||
margin-bottom: 0.5em; | margin-bottom: 0.5em; | ||
} | } | ||
Line 668: | Line 670: | ||
/* Infobox template style */ | /* Infobox template style */ | ||
.infobox { | .infobox { | ||
border: 1px solid #a2a9b1; | |||
border-spacing: 3px; | |||
background-color: #f8f9fa; | |||
color: black; | |||
/* @noflip */ | |||
margin: 0.5em 0 0.5em 1em; | |||
padding: 0.2em; | |||
/* @noflip */ | |||
float: right; | |||
/* @noflip */ | |||
clear: right; | |||
font-size: 88%; | |||
line-height: 1.5em; | |||
width: 22em; | |||
} | } | ||
.infobox. | .infobox-header, | ||
.infobox-label, | |||
.infobox-above, | |||
.infobox-full-data, | |||
.infobox-data, | |||
.infobox-below, | |||
.infobox-subheader, | |||
.infobox-image, | |||
.infobox-navbar, | |||
/* Remove element selector when every .infobox thing is using the standard module/templates */ | |||
.infobox th, | |||
.infobox td { | |||
vertical-align: top; | |||
} | } | ||
.infobox | .infobox-label, | ||
.infobox-data, | |||
/* Remove element selector when every .infobox thing is using the standard module/templates */ | |||
.infobox th, | |||
.infobox | .infobox td { | ||
.infobox | /* @noflip */ | ||
text-align: left; | |||
} | } | ||
/* | /* Remove .infobox when element selectors above are removed */ | ||
.infobox. | .infobox .infobox-above, | ||
.infobox. | .infobox .infobox-title, | ||
/* Remove element selector when every .infobox thing is using the standard module/templates */ | |||
.infobox caption { | |||
font-size: 125%; | |||
font-weight: bold; | |||
text-align: center; | |||
} | } | ||
.infobox | .infobox-title, | ||
.infobox. | /* Remove element selector when every .infobox thing is using the standard module/templates */ | ||
.infobox caption { | |||
padding: 0.2em; | |||
} | } | ||
/* | /* Remove .infobox when element selectors above are removed */ | ||
.infobox .infobox-header, | |||
.infobox. | .infobox .infobox-subheader, | ||
.infobox .infobox-image, | |||
.infobox .infobox-full-data, | |||
.infobox .infobox-below { | |||
text-align: center; | |||
.infobox | |||
.infobox | |||
.infobox | |||
.infobox | |||
.infobox | |||
.infobox | |||
.infobox. | |||
} | } | ||
.infobox | /* Remove .infobox when element selectors above are removed */ | ||
.infobox. | .infobox .infobox-navbar { | ||
/* @noflip */ | |||
text-align: right; | |||
} | } | ||
Line 1,727: | Line 1,695: | ||
display: none; | display: none; | ||
} | } | ||
/* From https://www.mediawiki.org/wiki/Manual:Tagline_(Site_Subtitle) | |||
Display "From Pornopedia, the sexy encyclopedia" in skins that support it, | |||
do not apply to print mode */ | |||
#siteSub { | |||
display: block; | |||
} | |||
/* Hide tagline from main page */ | |||
body.page-Main_Page.action-view #siteSub, | |||
body.page-Main_Page.action-submit #siteSub { | |||
display: none; | |||
} | |||
/* Hide FlaggedRevs notice UI when there are no pending changes */ | /* Hide FlaggedRevs notice UI when there are no pending changes */ | ||
Line 1,732: | Line 1,715: | ||
.flaggedrevs_stable_synced { | .flaggedrevs_stable_synced { | ||
display: none; | display: none; | ||
} | |||
/* Based on https://en.wikipedia.org/wiki/Wikipedia:Main_Page/styles.css */ | |||
@media (max-width: 875px) { | |||
/* We need to improve Template:POTD as used on the main page so that these | |||
* hacks aren't necessary */ | |||
#mp-tfp table, | |||
#mp-tfp tr, | |||
#mp-tfp td, | |||
#mp-tfp tbody { | |||
display: block !important; | |||
width: 100% !important; | |||
box-sizing: border-box; | |||
} | |||
#mp-tfp tr:first-child td:first-child a { | |||
text-align: center; | |||
display: table; | |||
margin: 0 auto; | |||
} | |||
} | |||
@media (min-width: 875px) { | |||
#mp-upper { | |||
display: flex; | |||
} | |||
#mp-left { | |||
/* flex: 1 1 55%; */ | |||
flex: 1 1 50%; | |||
margin-right: 2px; | |||
} | |||
#mp-right { | |||
/* flex: 1 1 45%; */ | |||
flex: 1 1 50%; | |||
margin-left: 2px; | |||
} | |||
} | } |