Merge "Shorten ternary expressions in RawAction.php"
[lhc/web/wiklou.git] / resources / src / mediawiki.ui / components / forms.less
1 // Form elements and layouts
2
3 @import "mediawiki.mixins";
4 @import "mediawiki.ui/variables";
5 @import "mediawiki.ui/mixins";
6
7 // --------------------------------------------------------------------------
8 // Layouts
9 // --------------------------------------------------------------------------
10
11 // The FancyCaptcha image CAPTCHA used on WMF wikis drives the width of the
12 // 'VForm' design, the form can't be narrower than this.
13 @captchaContainerWidth: 290px;
14 @defaultFormWidth: @captchaContainerWidth;
15
16 // Forms
17 //
18 // Styleguide 3.
19
20 // VForm
21 //
22 // Style a compact vertical stacked form ("VForm") and the elements in divs
23 // within it. See button and inputs section on guidance of how and when to use them.
24 //
25 // Markup:
26 // <form class="mw-ui-vform">
27 // <div class="mw-ui-vform-field">This is a form example.</div>
28 // <div class="mw-ui-vform-field">
29 // <label>Username </label>
30 // <input class="mw-ui-input" value="input">
31 // </div>
32 // <div class="mw-ui-vform-field">
33 // <button class="mw-ui-button mw-ui-constructive">Button in vform</button>
34 // </div>
35 // </form>
36 //
37 // Styleguide 3.1.
38 .mw-ui-vform {
39 .box-sizing(border-box);
40
41 width: @defaultFormWidth;
42
43 // MW currently doesn't use the type attribute everywhere on inputs.
44 select,
45 .mw-ui-button {
46 display: block;
47 .box-sizing(border-box);
48 margin: 0;
49 width: 100%;
50 }
51
52 // Give dropdown lists the same spacing as input fields for consistency.
53 // Values taken from .agora-field-styling() in mixins/form.less
54 select {
55 padding: 0.35em 0.5em 0.35em 0.5em;
56 vertical-align: middle;
57 }
58
59 label {
60 display: block;
61 .box-sizing(border-box);
62 .agora-label-styling();
63 width: auto;
64 margin: 0 0 0.2em;
65 padding: 0;
66 }
67
68 // Override input styling just for checkboxes and radio inputs.
69 input[type="checkbox"],
70 input[type="radio"] {
71 display: inline;
72 .box-sizing(content-box);
73 width: auto;
74 }
75
76
77 // Styles for information boxes
78 //
79 // Regular HTMLForm uses .error class, some special pages like
80 // SpecialUserlogin (login and create account) use .errorbox.
81 //
82 // Markup:
83 // <form class="mw-ui-vform">
84 // <div class="errorbox">An error occurred</div>
85 // <div class="warningbox">A warning to be noted</div>
86 // <div class="successbox">Action successful!</div>
87 // <div class="error">A different kind of error</div>
88 // <div class="error">
89 // <ul><li>There are problems with some of your input.</li></ul>
90 // </div>
91 // <div class="mw-ui-vform-field">
92 // <input type="text" value="input" class="mw-ui-input">
93 // </div>
94 // <div class="mw-ui-vform-field">
95 // <select>
96 // <option value="1">Option 1</option>
97 // <option value="2">Option 2</option>
98 // </select>
99 // <span class="error">The value you specified is not a valid option.</span>
100 // </div>
101 // <div class="mw-ui-vform-field">
102 // <button class="mw-ui-button">Button in vform</button>
103 // </div>
104 // </form>
105 //
106 // Styleguide 3.1.
107 .error,
108 .errorbox,
109 .warningbox,
110 .successbox {
111 .box-sizing(border-box);
112 font-size: 0.9em;
113 margin: 0 0 1em 0;
114 padding: 0.5em;
115 word-wrap: break-word;
116 }
117
118 // Colours taken from those for .errorbox in skins/common/shared.css
119 .error {
120 color: #cc0000;
121 border: 1px solid #fac5c5;
122 background-color: #fae3e3;
123 text-shadow: 0 1px #fae3e3;
124 }
125
126 // This specifies styling for individual field validation error messages.
127 // Show them below the fields to prevent line break glitches, and leave
128 // some space between the field and the error message box.
129 .mw-ui-vform-div .error, /* for backwards-compatibility, remove before 1.24 */
130 .mw-ui-vform-field .error {
131 display: block;
132 margin-top: 5px;
133 }
134
135 }
136
137 // --------------------------------------------------------------------------
138 // Elements
139 // --------------------------------------------------------------------------
140
141 // A wrapper for a single form field: the <input> / <select> / <button> element,
142 // help text, labels, associated error/warning/success messages, and so on.
143 // Elements with this class are generated by HTMLFormField in core MediaWiki.
144 //
145 // (We use a broad definition of 'field' here: a purely textual information
146 // block is also a "field".)
147 .mw-ui-vform-div, /* for backwards-compatibility, remove before 1.24 */
148 .mw-ui-vform-field {
149 display: block;
150 margin: 0 0 15px;
151 padding: 0;
152 width: 100%;
153 }
154
155 // Apply mw-ui-label to individual elements to style them.
156 // You generally don't need to use this class if <label> is within an Agora
157 // form container such as mw-ui-vform
158 .mw-ui-label {
159 .agora-label-styling(); // mixins/forms.less
160 }
161
162 // Nesting an input checkbox or radio button inside a label with this class
163 // improves alignment, e.g.
164 // <label class="mw-ui-checkbox-label">
165 // <input type="checkbox">The label text
166 // </label>
167 .mw-ui-checkbox-label, .mw-ui-radio-label {
168 .agora-inline-label-styling();
169 }