Merge "Allow postEdit hook to be triggered asynchronously"
[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 * Besides errorbox there could be warningbox, successbox, msgbox, though
26 * spage has never seen these in practice.
27 * Vector has styles coloring warningbox cream and successbox green.
28 */
29 .mw-ui-vform .errorbox,
30 .mw-ui-vform .warningbox,
31 .mw-ui-vform .successbox {
32 -webkit-box-sizing: border-box;
33 -moz-box-sizing: border-box;
34 box-sizing: border-box;
35 font-size: 0.9em;
36 margin: 0 0 1em 0;
37 padding: 0.5em;
38 color: #cc0000;
39 border: 1px solid #fac5c5;
40 background-color: #fae3e3;
41 text-shadow: 0 1px #fae3e3;
42 word-wrap: break-word;
43 }
44
45 /*
46 * Override the right margin of the form to give space in case a benefits
47 * column appears to the side.
48 *
49 */
50 .mw-ui-container #userloginForm {
51 margin-right: 100px;
52 }