3 @import 'mediawiki.mixins';
4 @import 'mediawiki.ui/variables';
5 @import 'mediawiki.ui/mixins';
9 // Apply the mw-ui-input class to input and textarea fields.
15 // Style an input using MediaWiki UI.
16 // Currently in draft status and subject to change.
17 // When focused a progressive highlight appears to the left of the field.
20 // <input class="mw-ui-input" placeholder="Enter your name">
21 // <textarea class="mw-ui-input">Text here</textarea>
25 background-color: #fff;
27 .box-sizing( border-box );
30 border: 1px solid @colorFieldBorder;
31 border-radius: @borderRadius;
32 padding: 0.625em 0.546875em 0.546875em;
33 // necessary for smooth transition
34 box-shadow: inset 0 0 0 0.1em #fff;
38 vertical-align: middle;
40 // Normalize & style placeholder text, see T139034
41 /* stylelint-disable indentation */
46 /* stylelint-enable indentation */
48 // Firefox: Remove red outline when `required` attribute set and invalid content.
49 // See https://developer.mozilla.org/en-US/docs/Web/CSS/:invalid
50 // This should come before `:focus` so latter rules take preference.
56 border-color: @colorGray7;
60 border-color: @colorProgressive;
61 box-shadow: inset 0 0 0 1px @colorProgressive;
65 // `:not()` is used exclusively for `transition`s as both are not supported by IE < 9.
67 .transition( ~'color 100ms, border-color 100ms, box-shadow 100ms' );
71 border-color: @colorGray14;
75 // Normalize styling for `<input type="search">`
77 // Correct the odd appearance in Chrome and Safari 5
78 -webkit-appearance: textfield;
80 // Remove proprietary clear button in IE 10-11, Edge 12+
85 // Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X
86 &::-webkit-search-cancel-button,
87 &::-webkit-search-decoration {
88 -webkit-appearance: none;
93 textarea.mw-ui-input {
99 // Use mw-ui-input-inline with mw-ui-input in cases where you want a button to line up with the input.
102 // <input class="mw-ui-input mw-ui-input-inline">
103 // <button class="mw-ui-button mw-ui-progressive">Submit</button>
106 input[type='number'],
107 .mw-ui-input-inline {
108 display: inline-block;
110 // Make sure we limit `width` to parent element because
111 // in case of text `input` fields, `width: auto;` equals `size` attribute.
117 // Use mw-ui-input-large with mw-ui-input in cases where there are multiple inputs on a screen and you
118 // want to draw attention to one instance. For example, replying with a subject line and more text.
119 // Currently in draft status and subject to change. When used on an input field, the text is styled
120 // in a large font. When used alongside another mw-ui-input large they are pushed together to form one
124 // <input value="input" class="mw-ui-input mw-ui-input-large" value="input" placeholder="Enter subject">
125 // <textarea class="mw-ui-input mw-ui-input-large" placeholder="Provide additional details"></textarea>
132 // When two large inputs are together, we make them flush by hiding one of the borders
133 & + .mw-ui-input-large {
136 // When focusing, make the input relative to raise it above any attached inputs to unhide its borders
142 input.mw-ui-input-large {
146 padding: 0.3673em 0.3265em 0.3265em;