navigation for languages modifed, flags deleted. Content index changed
3 // --------------------------------------------------
6 // Normalize non-controls
8 // Restyle and baseline non-control form elements.
20 margin-bottom: @line-height-computed;
21 font-size: (@font-size-base * 1.5);
25 border-bottom: 1px solid @legend-border-color;
29 display: inline-block;
35 // Normalize form controls
37 // Override content-box in Normalize (* isn't specific enough)
38 input[type="search"] {
39 .box-sizing(border-box);
42 // Position radios and checkboxes better
44 input[type="checkbox"] {
46 margin-top: 1px \9; /* IE8-9 */
50 // Set the height of select and file controls to match text inputs
55 // Make multiple select elements height not fixed
61 // Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611
68 // Focus for select, file, radio, and checkbox
69 input[type="file"]:focus,
70 input[type="radio"]:focus,
71 input[type="checkbox"]:focus {
75 // Fix for Chrome number input
76 // Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.
77 // See https://github.com/twbs/bootstrap/issues/8350 for more.
78 input[type="number"] {
79 &::-webkit-outer-spin-button,
80 &::-webkit-inner-spin-button {
85 // Adjust output element
88 padding-top: (@padding-base-vertical + 1);
89 font-size: @font-size-base;
90 line-height: @line-height-base;
92 vertical-align: middle;
96 // Common form controls
98 // Shared size and type resets for form controls. Apply `.form-control` to any
99 // of the following form controls:
103 // input[type="text"]
104 // input[type="password"]
105 // input[type="datetime"]
106 // input[type="datetime-local"]
107 // input[type="date"]
108 // input[type="month"]
109 // input[type="time"]
110 // input[type="week"]
111 // input[type="number"]
112 // input[type="email"]
114 // input[type="search"]
116 // input[type="color"]
121 height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
122 padding: @padding-base-vertical @padding-base-horizontal;
123 font-size: @font-size-base;
124 line-height: @line-height-base;
126 vertical-align: middle;
127 background-color: @input-bg;
128 background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
129 border: 1px solid @input-border;
130 border-radius: @input-border-radius;
131 .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
132 .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
134 // Customize the `:focus` state to imitate native WebKit styles.
135 .form-control-focus();
139 // Placeholder text gets special styles because when browsers invalidate entire
140 // lines if it doesn't understand a selector/
143 // Disabled and read-only inputs
144 // Note: HTML5 says that controls under a fieldset > legend:first-child won't
145 // be disabled if the fieldset is disabled. Due to implementation difficulty,
146 // we don't honor that edge case; we style them as disabled anyway.
149 fieldset[disabled] & {
151 background-color: @input-bg-disabled;
154 // Reset height for `textarea`s
163 // Designed to help with the organization and spacing of vertical forms. For
164 // horizontal forms, use the predefined grid classes.
171 // Checkboxes and radios
173 // Indent the labels to position radios/checkboxes as hanging controls.
178 min-height: @line-height-computed; // clear the floating input if there is no label text
182 vertical-align: middle;
190 .radio input[type="radio"],
191 .radio-inline input[type="radio"],
192 .checkbox input[type="checkbox"],
193 .checkbox-inline input[type="checkbox"] {
198 .checkbox + .checkbox {
199 margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
202 // Radios and checkboxes on same line
205 display: inline-block;
208 vertical-align: middle;
212 .radio-inline + .radio-inline,
213 .checkbox-inline + .checkbox-inline {
215 margin-left: 10px; // space out consecutive inline controls
218 // Apply same disabled cursor tweak as for inputs
220 // Note: Neither radios nor checkboxes can be readonly.
222 input[type="checkbox"],
228 fieldset[disabled] & {
233 // Form control sizing
235 .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
239 .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
243 // Form control feedback states
245 // Apply contextual and semantic states to individual form controls.
249 .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
253 .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
257 .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
261 // Static form control text
263 // Apply class to a `p` element to make any string of text align with labels in
264 // a horizontal form layout.
266 .form-control-static {
267 margin-bottom: 0; // Remove default margin from `p`
273 // Apply to any element you wish to create light text for placement immediately
274 // below a form control. Use for general help, formatting, or instructional text.
277 display: block; // account for any element using help-block
280 color: lighten(@text-color, 25%); // lighten the text some for contrast
287 // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
288 // forms begin stacked on extra small (mobile) devices and then go inline when
289 // viewports reach <768px.
291 // Requires wrapping inputs and labels with `.form-group` for proper display of
292 // default HTML form controls and our custom form controls (e.g., input groups).
294 // Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
298 // Kick in the inline
299 @media (min-width: @screen-sm) {
300 // Inline-block all the things for "inline"
302 display: inline-block;
304 vertical-align: middle;
307 // In navbar-form, allow folks to *not* use `.form-group`
309 display: inline-block;
312 // Override `width: 100%;` when not within a `.form-group`
313 select.form-control {
317 // Remove default margin on radios/checkboxes that were used for stacking, and
318 // then undo the floating of radios and checkboxes to match (which also avoids
319 // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
322 display: inline-block;
327 .radio input[type="radio"],
328 .checkbox input[type="checkbox"] {
338 // Horizontal forms are built on grid classes and allow you to create forms with
339 // labels on the left and inputs on the right.
343 // Consistent vertical alignment of labels, radios, and checkboxes
351 padding-top: (@padding-base-vertical + 1); // Default padding plus a border
353 // Account for padding we're adding to ensure the alignment and of help text
354 // and other content below items
357 min-height: @line-height-computed + (@padding-base-vertical + 1);
360 // Make form groups behave like rows
365 .form-control-static {
366 padding-top: (@padding-base-vertical + 1);
369 // Only right align form labels here when the columns stop stacking
370 @media (min-width: @screen-sm-min) {