1 // Form elements and layouts
3 @import "mediawiki.mixins";
4 @import "mediawiki.ui/variables";
5 @import "mediawiki.ui/mixins";
7 // --------------------------------------------------------------------------
9 // --------------------------------------------------------------------------
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;
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.
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">
32 // <div class="mw-ui-vform-field">
33 // <button class="mw-ui-button mw-ui-constructive">Button in vform</button>
39 .box-sizing(border-box);
41 width: @defaultFormWidth;
43 // MW currently doesn't use the type attribute everywhere on inputs.
47 .box-sizing(border-box);
52 // Give dropdown lists the same spacing as input fields for consistency.
53 // Values taken from .agora-field-styling() in mixins/form.less
55 padding: 0.35em 0.5em 0.35em 0.5em;
56 vertical-align: middle;
61 .box-sizing(border-box);
62 .agora-label-styling();
68 // Override input styling just for checkboxes and radio inputs.
71 .box-sizing(content-box);
76 // Styles for information boxes
78 // Regular HTMLForm uses .error class, some special pages like
79 // SpecialUserlogin (login and create account) use .errorbox.
82 // <form class="mw-ui-vform">
83 // <div class="errorbox">An error occurred</div>
84 // <div class="warningbox">A warning to be noted</div>
85 // <div class="successbox">Action successful!</div>
86 // <div class="error">A different kind of error</div>
87 // <div class="error">
88 // <ul><li>There are problems with some of your input.</li></ul>
90 // <div class="mw-ui-vform-field">
91 // <input type="text" value="input" class="mw-ui-input">
93 // <div class="mw-ui-vform-field">
95 // <option value="1">Option 1</option>
96 // <option value="2">Option 2</option>
98 // <span class="error">The value you specified is not a valid option.</span>
100 // <div class="mw-ui-vform-field">
101 // <button class="mw-ui-button">Button in vform</button>
110 .box-sizing(border-box);
114 word-wrap: break-word;
117 // Colours taken from those for .errorbox in shared.css
120 border: 1px solid #fac5c5;
121 background-color: #fae3e3;
122 text-shadow: 0 1px #fae3e3;
125 // This specifies styling for individual field validation error messages.
126 // Show them below the fields to prevent line break glitches, and leave
127 // some space between the field and the error message box.
128 .mw-ui-vform-field .error {
135 // --------------------------------------------------------------------------
137 // --------------------------------------------------------------------------
139 // A wrapper for a single form field: the <input> / <select> / <button> element,
140 // help text, labels, associated error/warning/success messages, and so on.
141 // Elements with this class are generated by HTMLFormField in core MediaWiki.
143 // (We use a broad definition of 'field' here: a purely textual information
144 // block is also a "field".)
152 // Apply mw-ui-label to individual elements to style them.
153 // You generally don't need to use this class if <label> is within an Agora
154 // form container such as mw-ui-vform
156 .agora-label-styling();
159 // Nesting an input inside a label with this class
160 // improves alignment, e.g.
162 // <label class="mw-ui-radio-label">
163 // <input type="radio">The label text
166 .agora-inline-label-styling();