* RELEASE-NOTES from last commit
[lhc/web/wiklou.git] / skins / common / shared.css
1 /**
2 * CSS in this file is used by *all* skins (that have any CSS at all). Be
3 * careful what you put in here, since what looks good in one skin may not in
4 * another, but don't ignore the poor non-Monobook users either.
5 */
6 .mw-plusminus-null { color: #aaa; }
7
8 .texvc { direction: ltr; unicode-bidi: embed; }
9 img.tex { vertical-align: middle; }
10 span.texhtml {
11 font-family: serif;
12 white-space: nowrap;
13 }
14
15 /* Stop floats from intruding into edit area in previews */
16 #toolbar, #wpTextbox1 { clear: both; }
17
18 div#mw-js-message {
19 margin: 1em 5%;
20 padding: 0.5em 2.5%;
21 border: solid 1px #ddd;
22 background-color: #fcfcfc;
23 }
24
25 /* Edit section links */
26 .editsection {
27 float: right;
28 margin-left: 5px;
29 }
30 h1, h2, h3, h4, h5, h6 {
31 /* CSS voodoo magic: floats can interfere with each other unless we create
32 a new block formatting context for them to live in. The most harmless
33 way to do that in CSS2.1 is to use overflow: hidden. */
34 overflow: hidden;
35 }