2 * MediaWiki style sheet for general styles on complex content
4 * Styles for complex things which are a standard part of page content
5 * (ie: the CSS classing built into the system), like the TOC.
8 /* Table of Contents */
13 border: 1px solid
#a2a9b1;
14 background-color: #f8f9fa;
20 * We want to display the ToC element with intrinsic width in block mode. The fit-content
21 * value for width is however not supported by large groups of browsers.
23 * We use display:table. Even though it should only contain other table-* display
24 * elements, there are no known problems with using this.
26 * Because IE < 8 and other older browsers don't support display:table, we fallback to
27 * using inline-block mode, which features at least intrinsic width, but won't clear preceding
28 * inline elements. In practice inline elements surrounding the TOC are uncommon enough that
29 * this is an acceptable sacrifice.
33 display: inline-block
;
43 /* CSS for backwards-compatibility with cached page renders and creative uses in wikitext */
46 border-collapse: collapse
;
49 /* Remove additional paddings inside table-cells that are not present in <div>s */
73 list-style-type: none
;
74 list-style-image: none
;
85 /* Separate columns for tocnumber and toctext */
86 /* Ignored by IE7 and lower */
91 Text decorations are not propagated to the contents of inline blocks and inline tables,
92 according to <https://www.w3.org/TR/css-text-decor-3/#line-decoration>, and 'display: table-cell'
93 generates an inline table when used without any parent table-rows and tables.
95 text-decoration: inherit
;
98 /* Space between the columns for tocnumber and toctext */
101 padding-right: 0.5em;
105 .mw-content-ltr .tocnumber {
107 padding-right: 0.5em;
111 .mw-content-rtl .tocnumber {
124 /* @noflip */div
.floatright
, table
.floatright
{
125 margin: 0 0 .5em .5em;
133 /* @noflip */div
.floatleft
, table
.floatleft
{
134 margin: 0 .5em .5em 0;
146 background-color: transparent
;
150 border: 1px solid
#c8ccd1;
152 background-color: #f8f9fa;
155 /* new block formatting context,
156 * to clear background from floating content */
161 background-color: #fff;
162 border: 1px solid
#c8ccd1;
170 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
175 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
186 /* …and replace it with the image */
189 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
191 /* Use same SVG support hack as mediawiki.legacy's shared.css */
192 background-image: url
( images
/magnify-clip-ltr
.png
);
194 background-image: linear-gradient
( transparent
, transparent
), url
( images
/magnify-clip-ltr
.svg
);
195 /* Don't annoy people who copy-paste everything too much */
196 -moz-user-select: none
;
197 -webkit-user-select: none
;
198 -ms-user-select: none
;
203 border: 1px solid
#eaecf0;
206 /* Directionality-specific styles for thumbnails - their positioning depends on content language */
209 .mw-content-ltr .thumbcaption {
214 .mw-content-ltr .magnify {
221 .mw-content-ltr div.magnify a {
222 /* Use same SVG support hack as mediawiki.legacy's shared.css */
223 background-image: url
( images
/magnify-clip-ltr
.png
);
225 background-image: linear-gradient
( transparent
, transparent
), url
( images
/magnify-clip-ltr
.svg
);
229 .mw-content-rtl .thumbcaption {
234 .mw-content-rtl .magnify {
241 .mw-content-rtl div.magnify a {
242 /* Use same SVG support hack as mediawiki.legacy's shared.css */
243 background-image: url
( images
/magnify-clip-rtl
.png
);
245 background-image: linear-gradient
( transparent
, transparent
), url
( images
/magnify-clip-rtl
.svg
);
250 margin: .5em 0 1.3em 1.4em;
255 margin: .5em 1.4em 1.3em 0;
258 /* Hide elements that are marked as "empty" according to legacy Tidy rules,
259 * except if a client script removes the mw-hide-empty-elt class from the body
261 body
.mw-hide-empty-elt
.mw-empty-elt
{