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
#aaa;
14 background-color: #f9f9f9;
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 <http://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 */
99 /* Ignored by IE7 and lower */
102 display: inline-block
;
114 /* @noflip */div
.floatright
, table
.floatright
{
115 margin: 0 0 .5em .5em;
123 /* @noflip */div
.floatleft
, table
.floatleft
{
124 margin: 0 .5em .5em 0;
136 background-color: transparent
;
140 border: 1px solid
#ccc;
142 background-color: #f9f9f9;
149 border: 1px solid
#ccc;
157 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
162 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
173 /* …and replace it with the image */
176 /* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
178 /* Use same SVG support hack as mediawiki.legacy's shared.css */
179 background-image: url
(images
/magnify-clip-ltr
.png
);
181 background-image: linear-gradient
(transparent
, transparent
), url
(images
/magnify-clip-ltr
.svg
);
182 /* Don't annoy people who copy-paste everything too much */
183 -moz-user-select: none
;
184 -webkit-user-select: none
;
185 -ms-user-select: none
;
190 border: 1px solid
#dddddd;
193 /* Directionality-specific styles for thumbnails - their positioning depends on content language */
196 .mw-content-ltr .thumbcaption {
201 .mw-content-ltr .magnify {
208 .mw-content-ltr div.magnify a {
209 /* Use same SVG support hack as mediawiki.legacy's shared.css */
210 background-image: url
(images
/magnify-clip-ltr
.png
);
212 background-image: linear-gradient
(transparent
, transparent
), url
(images
/magnify-clip-ltr
.svg
);
216 .mw-content-rtl .thumbcaption {
221 .mw-content-rtl .magnify {
228 .mw-content-rtl div.magnify a {
229 /* Use same SVG support hack as mediawiki.legacy's shared.css */
230 background-image: url
(images
/magnify-clip-rtl
.png
);
232 background-image: linear-gradient
(transparent
, transparent
), url
(images
/magnify-clip-rtl
.svg
);
237 margin: .5em 0 1.3em 1.4em;
242 margin: .5em 1.4em 1.3em 0;