Merge "Add method parameter type documentation"
[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 border: 1px solid;
37 word-wrap: break-word;
38 }
39
40 .mw-ui-vform .errorbox {
41 color: #cc0000;
42 border-color: #fac5c5;
43 background-color: #fae3e3;
44 }
45
46 .mw-ui-vform .warningbox {
47 color: #705000;
48 border-color: #fde29b;
49 background-color: #fdf1d1;
50 }
51
52 .mw-ui-vform .successbox {
53 color: #009000;
54 border-color: #b7fdb5;
55 background-color: #e1fddf;
56 }
57
58 /*
59 * Override the right margin of the form to give space in case a benefits
60 * column appears to the side.
61 *
62 */
63 .mw-ui-container #userloginForm {
64 margin-right: 100px;
65 }