forms.less 7.43 KB
Newer Older
1
/* Forms.less
2
 * Base styles for various input types, form layouts, and states
3
 * ------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
4

5

6
7
// FORM STYLES
// -----------
Jacob Thornton's avatar
Jacob Thornton committed
8
9
10

form {
  margin-bottom: @baseline;
11
}
12

13
14
15
16
17
18
// Groups of fields with labels on top (legends)
fieldset {
  margin-bottom: @baseline;
  padding-top: @baseline;
  legend {
    display: block;
Mark Otto's avatar
Mark Otto committed
19
    padding-left: 150px;
20
    font-size: @basefont * 1.5;
21
22
    line-height: 1;
    color: @grayDark;
Mark Otto's avatar
Mark Otto committed
23
24
    *padding: 0 0 5px 145px; /* IE6-7 */
    *line-height: 1.5; /* IE6-7 */
Jacob Thornton's avatar
Jacob Thornton committed
25
  }
26
}
27

28
// Parent element that clears floats and wraps labels and fields together
29
form .clearfix {
30
31
  margin-bottom: @baseline;
}
32

33
34
35
36
37
38
39
// Set font for forms
label,
input,
select,
textarea {
  #font > .sans-serif(normal,13px,normal);
}
40

41
42
43
// Float labels left
label {
  padding-top: 6px;
Mark Otto's avatar
Mark Otto committed
44
45
  font-size: @basefont;
  line-height: @baseline;
46
47
48
49
50
  float: left;
  width: 130px;
  text-align: right;
  color: @grayDark;
}
51

52
// Shift over the inside div to align all label's relevant content
53
form .input {
54
55
  margin-left: 150px;
}
56

57
58
59
60
61
// Checkboxs and radio buttons
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}
62

63
// Inputs, Textareas, Selects
64
input,
65
66
67
68
69
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 210px;
70
  height: @baseline;
71
  padding: 4px;
72
  font-size: @basefont;
73
74
75
76
77
  line-height: @baseline;
  color: @gray;
  border: 1px solid #ccc;
  .border-radius(3px);
}
78
79
80
81
82
83

/* mini reset for non-html5 file types */
input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
84
  padding: 0;
85
  margin: 3px 0;
Mark Otto's avatar
Mark Otto committed
86
  *margin-top: 0; /* IE6-7 */
87
88
  line-height: normal;
  border: none;
89
90
91
}

input[type=file] {
92
93
94
95
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
96
97
98
99
100
101
102
103
104
105
  .box-shadow(none);
}

input[type=button],
input[type=reset],
input[type=submit] {
  width: auto;
  height: auto;
}

106
107
108
109
110
select,
input[type=file] {
  height: @baseline * 1.5;
  line-height: @baseline * 1.5;
}
111

112
113
114
textarea {
  height: auto;
}
115

116
// For text that needs to appear as an input but should not be an input
117
.uneditable-input {
118
  background-color: #fff;
119
  display: block;
120
121
122
  border-color: #eee;
  .box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
  cursor: not-allowed;
123
}
124

125
126
127
128
129
130
131
132
133
// Placeholder text gets special styles; can't be bundled together though for some reason
:-moz-placeholder {
  color: @grayLight;
}
::-webkit-input-placeholder {
  color: @grayLight;
}

// Focus states
134
input,
135
textarea {
136
137
138
139
  @transition: border linear .2s, box-shadow linear .2s;
  .transition(@transition);
  .box-shadow(inset 0 1px 3px rgba(0,0,0,.1));
}
140
input:focus,
141
142
143
144
145
146
textarea:focus {
  outline: none;
  border-color: rgba(82,168,236,.8);
  @shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
  .box-shadow(@shadow);
}
Mark Otto's avatar
Mark Otto committed
147
148
149
150
151
152
input[type=file]:focus,
input[type=checkbox]:focus,
select:focus {
  .box-shadow(none); // override for file inputs
  outline: 1px dotted #666; // Selet elements don't get box-shadow styles, so instead we do outline
}
153

154
155
156
157
158
159
160
161
162
163
164
165
// Error styles
form div.error {
  background: lighten(@red, 57%);
  padding: 10px 0;
  margin: -10px 0 10px;
  .border-radius(4px);
  @error-text: desaturate(lighten(@red, 25%), 25%);
  > label,
  span.help-inline,
  span.help-block {
    color: @red;
  }
166
  input,
167
168
169
170
171
172
  textarea {
    border-color: @error-text;
    .box-shadow(0 0 3px rgba(171,41,32,.25));
    &:focus {
      border-color: darken(@error-text, 10%);
      .box-shadow(0 0 6px rgba(171,41,32,.5));
Jacob Thornton's avatar
Jacob Thornton committed
173
    }
174
175
176
177
178
  }
  .input-prepend,
  .input-append {
    span.add-on {
      background: lighten(@red, 50%);
Jacob Thornton's avatar
Jacob Thornton committed
179
      border-color: @error-text;
180
      color: darken(@error-text, 10%);
Jacob Thornton's avatar
Jacob Thornton committed
181
182
    }
  }
183
}
184

185
// Form element sizes
186
187
188
189
.input-mini,
input.mini,
textarea.mini,
select.mini {
190
191
  width: 60px;
}
192
193
194
195
.input-small,
input.small,
textarea.small,
select.small {
196
197
  width: 90px;
}
198
199
200
201
.input-medium,
input.medium,
textarea.medium,
select.medium {
202
203
  width: 150px;
}
204
205
206
207
.input-large,
input.large,
textarea.large,
select.large {
208
209
  width: 210px;
}
210
211
212
213
.input-xlarge,
input.xlarge,
textarea.xlarge,
select.xlarge {
214
215
  width: 270px;
}
216
217
218
219
.input-xxlarge,
input.xxlarge,
textarea.xxlarge,
select.xxlarge {
220
221
222
  width: 530px;
}
textarea.xxlarge {
223
  overflow-y: auto;
224
}
225

226
227
228
229
230
231
232
233
// Disabled and read-only inputs
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #f5f5f5;
234
  border-color: #ddd;
235
  cursor: not-allowed;
Jacob Thornton's avatar
Jacob Thornton committed
236
237
238
}

// Actions (the buttons)
Mark Otto's avatar
Mark Otto committed
239
.actions {
Jacob Thornton's avatar
Jacob Thornton committed
240
241
242
243
244
245
  background: #f5f5f5;
  margin-top: @baseline;
  margin-bottom: @baseline;
  padding: (@baseline - 1) 20px @baseline 150px;
  border-top: 1px solid #ddd;
  .border-radius(0 0 3px 3px);
Mark Otto's avatar
Mark Otto committed
246
  .secondary-action {
Jacob Thornton's avatar
Jacob Thornton committed
247
248
249
250
251
252
253
254
255
256
257
258
259
    float: right;
    a {
      line-height: 30px;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

// Help Text
.help-inline,
.help-block {
260
  font-size: @basefont - 2;
Jacob Thornton's avatar
Jacob Thornton committed
261
  line-height: @baseline;
262
  color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
263
264
265
}
.help-inline {
  padding-left: 5px;
Jacob Thornton's avatar
Jacob Thornton committed
266
267
  *position: relative; /* IE6-7 */
  *top: -5px; /* IE6-7 */
Jacob Thornton's avatar
Jacob Thornton committed
268
}
269

Jacob Thornton's avatar
Jacob Thornton committed
270
271
272
273
274
275
276
// Big blocks of help text
.help-block {
  display: block;
  max-width: 600px;
}

// Inline Fields (input fields that appear as inline objects
Mark Otto's avatar
Mark Otto committed
277
.inline-inputs {
Jacob Thornton's avatar
Jacob Thornton committed
278
  color: @gray;
279
  span, input {
Jacob Thornton's avatar
Jacob Thornton committed
280
281
282
283
284
285
286
287
288
289
290
291
292
293
    display: inline-block;
  }
  input.mini {
    width: 60px;
  }
  input.small {
    width: 90px;
  }
  span {
    padding: 0 2px 0 1px;
  }
}

// Allow us to put symbols and text within the input field for a cleaner look
Mark Otto's avatar
Mark Otto committed
294
295
.input-prepend,
.input-append {
296
  input {
Jacob Thornton's avatar
Jacob Thornton committed
297
298
299
300
301
302
303
304
    .border-radius(0 3px 3px 0);
  }
  .add-on {
    background: #f5f5f5;
    float: left;
    display: block;
    width: auto;
    min-width: 16px;
305
    padding: 4px 4px 4px 5px;
306
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
307
308
309
310
311
    font-weight: normal;
    line-height: 18px;
    height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
312
    border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
313
314
315
316
317
318
319
320
    border-right-width: 0;
    .border-radius(3px 0 0 3px);
  }
  .active {
    background: lighten(@green, 30);
    border-color: @green;
  }
}
321
.input-prepend {
Jacob Thornton's avatar
Jacob Thornton committed
322
323
324
325
  .add-on {
    *margin-top: 1px; /* IE6-7 */
  }
}
Mark Otto's avatar
Mark Otto committed
326
.input-append {
327
  input {
Jacob Thornton's avatar
Jacob Thornton committed
328
329
330
331
332
333
334
335
336
337
338
    float: left;
    .border-radius(3px 0 0 3px);
  }
  .add-on {
    .border-radius(0 3px 3px 0);
    border-right-width: 1px;
    border-left-width: 0;
  }
}

// Stacked options for forms (radio buttons or checkboxes)
Mark Otto's avatar
Mark Otto committed
339
.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
340
341
342
343
344
345
  margin: 0 0 5px;
  width: 100%;
  li {
    display: block;
    padding: 0;
    width: 100%;
346
347
348
349
350
351
352
353
354
355
356
  }
  label {
    display: block;
    float: none;
    width: auto;
    padding: 0;
    line-height: @baseline;
    text-align: left;
    white-space: normal;
    strong {
      color: @gray;
Jacob Thornton's avatar
Jacob Thornton committed
357
    }
358
359
360
    small {
      font-size: @basefont - 2;
      font-weight: normal;
Jacob Thornton's avatar
Jacob Thornton committed
361
362
    }
  }
363
364
365
366
367
368
369
370
371
372
373
  .inputs-list {
    margin-left: 25px;
    margin-bottom: 10px;
    padding-top: 0;
  }
  &:first-child {
    padding-top: 6px;
  }
  li + li {
    padding-top: 2px;
  }
Jacob Thornton's avatar
Jacob Thornton committed
374
375
376
377
378
379
380
  input[type=radio],
  input[type=checkbox] {
    margin-bottom: 0;
  }
}

// Stacked forms
381
.form-stacked {
382
  padding-left: 20px;
Jacob Thornton's avatar
Jacob Thornton committed
383
384
  fieldset {
    padding-top: @baseline / 2;
385
  }
Jacob Thornton's avatar
Jacob Thornton committed
386
  legend {
Mark Otto's avatar
Mark Otto committed
387
    padding-left: 0;
Jacob Thornton's avatar
Jacob Thornton committed
388
389
390
391
392
393
394
395
396
397
  }
  label {
    display: block;
    float: none;
    width: auto;
    font-weight: bold;
    text-align: left;
    line-height: 20px;
    padding-top: 0;
  }
Mark Otto's avatar
Mark Otto committed
398
  .clearfix {
Jacob Thornton's avatar
Jacob Thornton committed
399
400
401
402
403
    margin-bottom: @baseline / 2;
    div.input {
      margin-left: 0;
    }
  }
Mark Otto's avatar
Mark Otto committed
404
  .inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
405
406
407
408
409
410
411
412
413
    margin-bottom: 0;
    li {
      padding-top: 0;
      label {
        font-weight: normal;
        padding-top: 0;
      }
    }
  }
Mark Otto's avatar
Mark Otto committed
414
  div.error {
415
416
417
418
419
420
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-top: 0;
    margin-left: -10px;
  }
Mark Otto's avatar
Mark Otto committed
421
  .actions {
422
423
424
    margin-left: -20px;
    padding-left: 20px;
  }
Jacob Thornton's avatar
Jacob Thornton committed
425
}