forms.less 8.48 KB
Newer Older
1
2
3
//
// Forms
// --------------------------------------------------
4

5

Mark Otto's avatar
Mark Otto committed
6
7
8
// Normalize non-controls
//
// Restyle and baseline non-control form elements.
9
10
11
12
13

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
14
}
15

16
17
18
legend {
  display: block;
  width: 100%;
19
  padding: 0;
Mark Otto's avatar
Mark Otto committed
20
  margin-bottom: @line-height-computed;
21
  font-size: (@font-size-base * 1.5);
22
  line-height: inherit;
23
  color: @legend-color;
24
  border: 0;
25
  border-bottom: 1px solid @legend-border-color;
26
}
27

28
label {
29
  display: inline-block;
30
  margin-bottom: 5px;
31
  font-weight: bold;
32
}
33

34

Mark Otto's avatar
Mark Otto committed
35
// Normalize form controls
36

37
38
39
40
41
// Override content-box in Normalize (* isn't specific enough)
input[type="search"] {
  .box-sizing(border-box);
}

Mark Otto's avatar
Mark Otto committed
42
// Position radios and checkboxes better
43
44
input[type="radio"],
input[type="checkbox"] {
45
  margin: 4px 0 0;
46
  margin-top: 1px \9; /* IE8-9 */
Mark Otto's avatar
Mark Otto committed
47
  line-height: normal;
48
}
Mark Otto's avatar
Mark Otto committed
49

50
// Set the height of select and file controls to match text inputs
51
input[type="file"] {
52
  display: block;
Mark Otto's avatar
Mark Otto committed
53
}
54

Mark Otto's avatar
Mark Otto committed
55
// Make multiple select elements height not fixed
56
57
select[multiple],
select[size] {
Mark Otto's avatar
Mark Otto committed
58
  height: auto;
Mark Otto's avatar
Mark Otto committed
59
60
}

Chris Rebert's avatar
Chris Rebert committed
61
// Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611
62
63
64
65
66
67
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}

68
69
70
71
72
73
// Focus for select, file, radio, and checkbox
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  .tab-focus();
}
74

75
76
// Fix for Chrome number input
// Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.
Chris Rebert's avatar
Chris Rebert committed
77
// See https://github.com/twbs/bootstrap/issues/8350 for more.
78
input[type="number"] {
79
  &::-webkit-outer-spin-button,
Chris Rebert's avatar
Chris Rebert committed
80
  &::-webkit-inner-spin-button {
81
82
83
84
    height: auto;
  }
}

85
86
87
88
89
90
91
92
93
// Adjust output element
output {
  display: block;
  padding-top: (@padding-base-vertical + 1);
  font-size: @font-size-base;
  line-height: @line-height-base;
  color: @input-color;
  vertical-align: middle;
}
94

Mark Otto's avatar
Mark Otto committed
95
// Placeholder
Mark Otto's avatar
Mark Otto committed
96
97
98
99
//
// Placeholder text gets special styles because when browsers invalidate entire
// lines if it doesn't understand a selector/
.form-control {
Mark Otto's avatar
Mark Otto committed
100
101
102
  .placeholder();
}

103

Mark Otto's avatar
Mark Otto committed
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Common form controls
//
// Shared size and type resets for form controls. Apply `.form-control` to any
// of the following form controls:
//
// select
// textarea
// input[type="text"]
// input[type="password"]
// input[type="datetime"]
// input[type="datetime-local"]
// input[type="date"]
// input[type="month"]
// input[type="time"]
// input[type="week"]
// input[type="number"]
// input[type="email"]
// input[type="url"]
// input[type="search"]
// input[type="tel"]
// input[type="color"]

.form-control {
  display: block;
  width: 100%;
  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
  padding: @padding-base-vertical @padding-base-horizontal;
  font-size: @font-size-base;
  line-height: @line-height-base;
133
  color: @input-color;
Mark Otto's avatar
Mark Otto committed
134
135
136
137
138
139
140
  vertical-align: middle;
  background-color: @input-bg;
  border: 1px solid @input-border;
  border-radius: @input-border-radius;
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");

141
142
  // Customize the `:focus` state to imitate native WebKit styles.
  .form-control-focus();
Mark Otto's avatar
Mark Otto committed
143
144

  // Disabled and read-only inputs
145
146
147
  // Note: HTML5 says that controls under a fieldset > legend:first-child won't
  // be disabled if the fieldset is disabled. Due to implementation difficulty,
  // we don't honor that edge case; we style them as disabled anyway.
Mark Otto's avatar
Mark Otto committed
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
  &[disabled],
  &[readonly],
  fieldset[disabled] & {
    cursor: not-allowed;
    background-color: @input-bg-disabled;
  }

  // Reset height for `textarea`s
  textarea& {
    height: auto;
  }
}


// Form groups
//
// Designed to help with the organization and spacing of vertical forms. For
// horizontal forms, use the predefined grid classes.

.form-group {
  margin-bottom: 15px;
}


// Checkboxes and radios
//
// Indent the labels to position radios/checkboxes as hanging controls.
175
176
177

.radio,
.checkbox {
178
  display: block;
Mark Otto's avatar
Mark Otto committed
179
  min-height: @line-height-computed; // clear the floating input if there is no label text
Mark Otto's avatar
Mark Otto committed
180
181
  margin-top: 10px;
  margin-bottom: 10px;
182
  padding-left: 20px;
Mark Otto's avatar
Mark Otto committed
183
  vertical-align: middle;
Mark Otto's avatar
Mark Otto committed
184
185
186
187
  label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
188
    cursor: pointer;
Mark Otto's avatar
Mark Otto committed
189
  }
190
}
191
.radio input[type="radio"],
Mark Otto's avatar
Mark Otto committed
192
193
194
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
195
  float: left;
196
  margin-left: -20px;
197
}
Mark Otto's avatar
Mark Otto committed
198
199
.radio + .radio,
.checkbox + .checkbox {
Mark Otto's avatar
Mark Otto committed
200
  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
Mark Otto's avatar
Mark Otto committed
201
}
202

203
// Radios and checkboxes on same line
Mark Otto's avatar
Mark Otto committed
204
205
.radio-inline,
.checkbox-inline {
206
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
207
  padding-left: 20px;
208
  margin-bottom: 0;
209
  vertical-align: middle;
Mark Otto's avatar
Mark Otto committed
210
  font-weight: normal;
211
  cursor: pointer;
212
}
Mark Otto's avatar
Mark Otto committed
213
214
215
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
216
  margin-left: 10px; // space out consecutive inline controls
217
218
}

219
// Apply same disabled cursor tweak as for inputs
220
//
221
// Note: Neither radios nor checkboxes can be readonly.
222
223
input[type="radio"],
input[type="checkbox"],
224
225
226
227
228
229
230
231
232
.radio,
.radio-inline,
.checkbox,
.checkbox-inline {
  &[disabled],
  fieldset[disabled] & {
    cursor: not-allowed;
  }
}
233

Mark Otto's avatar
Mark Otto committed
234
// Form control sizing
235
.input-sm {
236
  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
237
238
}

ggam's avatar
ggam committed
239
.input-lg {
240
  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
241
}
242

Mark Otto's avatar
Mark Otto committed
243

Mark Otto's avatar
Mark Otto committed
244
245
246
// Form control feedback states
//
// Apply contextual and semantic states to individual form controls.
247

248
// Warning
249
.has-warning {
250
  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
251
252
}
// Error
253
.has-error {
254
  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
255
256
}
// Success
257
.has-success {
258
  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
259
}
260
261


262
263
264
265
266
267
268
// Static form control text
//
// Apply class to a `p` element to make any string of text align with labels in
// a horizontal form layout.

.form-control-static {
  margin-bottom: 0; // Remove default margin from `p`
Mark Otto's avatar
Mark Otto committed
269
  padding-top: (@padding-base-vertical + 1);
270
271
272
}


Mark Otto's avatar
Mark Otto committed
273
274
275
276
// Help text
//
// Apply to any element you wish to create light text for placement immediately
// below a form control. Use for general help, formatting, or instructional text.
277

278
.help-block {
279
  display: block; // account for any element using help-block
Mark Otto's avatar
Mark Otto committed
280
281
282
  margin-top: 5px;
  margin-bottom: 10px;
  color: lighten(@text-color, 25%); // lighten the text some for contrast
Jacob Thornton's avatar
Jacob Thornton committed
283
}
284
285
286
287
288



// Inline forms
//
289
290
291
292
293
294
// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
// forms begin stacked on extra small (mobile) devices and then go inline when
// viewports reach <768px.
//
// Requires wrapping inputs and labels with `.form-group` for proper display of
// default HTML form controls and our custom form controls (e.g., input groups).
295
296
//
// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
297
298

.form-inline {
299

300
  // Kick in the inline
301
  @media (min-width: @screen-sm) {
302
303
304
305
306
307
    // Inline-block all the things for "inline"
    .form-group  {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle;
    }
308
309
310
311
312

    // In navbar-form, allow folks to *not* use `.form-group`
    .form-control {
      display: inline-block;
    }
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328

    // Remove default margin on radios/checkboxes that were used for stacking, and
    // then undo the floating of radios and checkboxes to match (which also avoids
    // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
    .radio,
    .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      padding-left: 0;
    }
    .radio input[type="radio"],
    .checkbox input[type="checkbox"] {
      float: none;
      margin-left: 0;
    }
329
330
331
332
333
334
335
336
337
338
  }
}


// Horizontal forms
//
// Horizontal forms are built on grid classes and allow you to create forms with
// labels on the left and inputs on the right.

.form-horizontal {
339
340
341
342
343
344
345
346
347
348
349
350
351

  // Consistent vertical alignment of labels, radios, and checkboxes
  .control-label,
  .radio,
  .checkbox,
  .radio-inline,
  .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: (@padding-base-vertical + 1); // Default padding plus a border
  }

  // Make form groups behave like rows
352
353
354
355
  .form-group {
    .make-row();
  }

356
  // Only right align form labels here when the columns stop stacking
357
  @media (min-width: @screen-sm) {
358
359
360
    .control-label {
      text-align: right;
    }
361
362
  }
}