(bug 47070) check content model namespace on import.
[lhc/web/wiklou.git] / resources / mediawiki.special / mediawiki.special.vforms.css
1 /*
2 * When inside the VForm style, disable the border that Vector and other skins
3 * put on the div surrounding the login/create account form.
4 * Also disable the margin and padding that Vector puts around the form.
5 */
6 .mw-ui-container #userloginForm,
7 .mw-ui-container #userlogin {
8 border: 0;
9 margin: 0;
10 padding: 0;
11 }
12
13 /* Reposition and resize language links, which appear on a per-wiki basis */
14 .mw-ui-container #languagelinks {
15 margin-bottom: 2em;
16 font-size: 0.8em;
17 }
18
19 /* Put some space under template's header, which may contain CAPTCHA HTML.*/
20 section.mw-form-header {
21 margin-bottom: 10px;
22 }
23
24 /*
25 * Styles for information boxes.
26 */
27 .mw-ui-vform .errorbox,
28 .mw-ui-vform .warningbox,
29 .mw-ui-vform .successbox {
30 -webkit-box-sizing: border-box;
31 -moz-box-sizing: border-box;
32 box-sizing: border-box;
33 font-size: 0.9em;
34 margin: 0 0 1em 0;
35 padding: 0.5em;
36 word-wrap: break-word;
37 }
38
39 /*
40 * Override the right margin of the form to give space in case a benefits
41 * column appears to the side.
42 *
43 */
44 .mw-ui-container #userloginForm {
45 margin-right: 100px;
46 }