forms.less 7.23 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
19
// Groups of fields with labels on top (legends)
fieldset {
  margin-bottom: @baseline;
  padding-top: @baseline;
  legend {
    display: block;
    margin-left: 150px;
20
    font-size: @basefont * 1.5;
21
22
23
24
    line-height: 1;
    *margin: 0 0 5px 145px; /* IE6-7 */
    *line-height: 1.5; /* IE6-7 */
    color: @grayDark;
Jacob Thornton's avatar
Jacob Thornton committed
25
  }
26
}
27

28
29
30
31
// Parent element that clears floats and wraps labels and fields together
.clearfix {
  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
44
45
46
47
48
49
50
// Float labels left
label {
  padding-top: 6px;
  font-size: 13px;
  line-height: 18px;
  float: left;
  width: 130px;
  text-align: right;
  color: @grayDark;
}
51

52
53
54
55
// Shift over the inside div to align all label's relevant content
div.input {
  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
136
select,
textarea {
137
138
139
140
  @transition: border linear .2s, box-shadow linear .2s;
  .transition(@transition);
  .box-shadow(inset 0 1px 3px rgba(0,0,0,.1));
}
141
input:focus,
142
select:focus,
143
144
145
146
147
148
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);
}
149

150
151
152
153
154
155
156
157
158
159
160
161
// 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;
  }
162
  input,
163
164
165
166
167
168
  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
169
    }
170
171
172
173
174
  }
  .input-prepend,
  .input-append {
    span.add-on {
      background: lighten(@red, 50%);
Jacob Thornton's avatar
Jacob Thornton committed
175
      border-color: @error-text;
176
      color: darken(@error-text, 10%);
Jacob Thornton's avatar
Jacob Thornton committed
177
178
    }
  }
179
}
180

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

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

// Actions (the buttons)
Mark Otto's avatar
Mark Otto committed
235
.actions {
Jacob Thornton's avatar
Jacob Thornton committed
236
237
238
239
240
241
  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
242
  .secondary-action {
Jacob Thornton's avatar
Jacob Thornton committed
243
244
245
246
247
248
249
250
251
252
253
254
255
    float: right;
    a {
      line-height: 30px;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

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

Jacob Thornton's avatar
Jacob Thornton committed
266
267
268
269
270
271
272
// 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
273
.inline-inputs {
Jacob Thornton's avatar
Jacob Thornton committed
274
  color: @gray;
275
  span, input {
Jacob Thornton's avatar
Jacob Thornton committed
276
277
278
279
280
281
282
283
284
285
286
287
288
289
    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
290
291
.input-prepend,
.input-append {
292
  input {
Jacob Thornton's avatar
Jacob Thornton committed
293
294
295
296
297
298
299
300
    .border-radius(0 3px 3px 0);
  }
  .add-on {
    background: #f5f5f5;
    float: left;
    display: block;
    width: auto;
    min-width: 16px;
301
    padding: 4px 4px 4px 5px;
302
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
303
304
305
306
307
    font-weight: normal;
    line-height: 18px;
    height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
308
    border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
309
310
311
312
313
314
315
316
    border-right-width: 0;
    .border-radius(3px 0 0 3px);
  }
  .active {
    background: lighten(@green, 30);
    border-color: @green;
  }
}
317
.input-prepend {
Jacob Thornton's avatar
Jacob Thornton committed
318
319
320
321
  .add-on {
    *margin-top: 1px; /* IE6-7 */
  }
}
Mark Otto's avatar
Mark Otto committed
322
.input-append {
323
  input {
Jacob Thornton's avatar
Jacob Thornton committed
324
325
326
327
328
329
330
331
332
333
334
    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
335
.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
  margin: 0 0 5px;
  width: 100%;
  li {
    display: block;
    padding: 0;
    width: 100%;
    label {
      display: block;
      float: none;
      width: auto;
      padding: 0;
      line-height: @baseline;
      text-align: left;
      white-space: normal;
      strong {
        color: @gray;
      }
      small {
354
        font-size: @basefont - 2;
355
        font-weight: normal;
Jacob Thornton's avatar
Jacob Thornton committed
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
      }
    }
    ul.inputs-list {
      margin-left: 25px;
      margin-bottom: 10px;
      padding-top: 0;
    }
    &:first-child {
      padding-top: 5px;
    }
  }
  input[type=radio],
  input[type=checkbox] {
    margin-bottom: 0;
  }
}

// Stacked forms
374
.form-stacked {
375
  padding-left: 20px;
Jacob Thornton's avatar
Jacob Thornton committed
376
377
  fieldset {
    padding-top: @baseline / 2;
378
  }
Jacob Thornton's avatar
Jacob Thornton committed
379
380
381
382
383
384
385
386
387
388
389
390
  legend {
    margin-left: 0;
  }
  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
391
  .clearfix {
Jacob Thornton's avatar
Jacob Thornton committed
392
393
394
395
396
    margin-bottom: @baseline / 2;
    div.input {
      margin-left: 0;
    }
  }
Mark Otto's avatar
Mark Otto committed
397
  .inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
398
399
400
401
402
403
404
405
406
    margin-bottom: 0;
    li {
      padding-top: 0;
      label {
        font-weight: normal;
        padding-top: 0;
      }
    }
  }
Mark Otto's avatar
Mark Otto committed
407
  div.error {
408
409
410
411
412
413
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-top: 0;
    margin-left: -10px;
  }
Mark Otto's avatar
Mark Otto committed
414
  .actions {
415
416
417
    margin-left: -20px;
    padding-left: 20px;
  }
Jacob Thornton's avatar
Jacob Thornton committed
418
}