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

6
7
8

/* Global form styles
-------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
9
10
11
12
13
14
15
16
17
18
19
20

form {
  margin-bottom: @baseline;
  // Groups of fields with labels on top (legends)
  fieldset {
    margin-bottom: @baseline;
    padding-top: @baseline;
    legend {
      display: block;
      margin-left: 150px;
      font-size: 20px;
      line-height: 1;
21
      color: @grayDark;
Jacob Thornton's avatar
Jacob Thornton committed
22
23
24
25
26
27
28
29
    }
  }
  // Parent element that clears floats and wraps labels and fields together
  div.clearfix {
    margin-bottom: @baseline;
  }
  // Set font for forms
  label, input, select, textarea {
30
    #font > .sans-serif(normal,13px,normal);
Jacob Thornton's avatar
Jacob Thornton committed
31
32
33
34
35
36
37
38
39
  }
  // Float labels left
  label {
    padding-top: 6px;
    font-size: 13px;
    line-height: 18px;
    float: left;
    width: 130px;
    text-align: right;
40
    color: @grayDark;
Jacob Thornton's avatar
Jacob Thornton committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  }
  // Shift over the inside div to align all label's relevant content
  div.input {
    margin-left: 150px;
  }
  // Checkboxs and radio buttons
  input[type=checkbox],
  input[type=radio] {
    cursor: pointer;
  }
  // Inputs, Textareas, Selects
  input[type=text],
  input[type=password],
  textarea,
  select,
  .uneditable-input {
57
    display: inline-block;
Jacob Thornton's avatar
Jacob Thornton committed
58
59
60
61
62
63
64
    width: 210px;
    margin: 0;
    padding: 4px;
    font-size: 13px;
    line-height: @baseline;
    height: @baseline;
    color: @gray;
65
    border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
    .border-radius(3px);
  }
  select,
  input[type=file] {
    height: @baseline * 1.5;
    line-height: @baseline * 1.5;
  }
  textarea {
    height: auto;
  }
  .uneditable-input {
    background-color: #eee;
    display: block;
    border-color: #ccc;
    .box-shadow(inset 0 1px 2px rgba(0,0,0,.075));
  }
82
83
84
85
86
87
88
  // Placeholder text gets special styles; can't be bundled together though for some reason
  :-moz-placeholder {
    color: @grayLight;
  }
  ::-webkit-input-placeholder {
    color: @grayLight;
  }
Jacob Thornton's avatar
Jacob Thornton committed
89
  // Focus states
90
91
  input[type=text],
  input[type=password],
Jacob Thornton's avatar
Jacob Thornton committed
92
93
94
  select, textarea {
    @transition: border linear .2s, box-shadow linear .2s;
    .transition(@transition);
95
    .box-shadow(inset 0 1px 3px rgba(0,0,0,.1));
Jacob Thornton's avatar
Jacob Thornton committed
96
  }
97
98
  input[type=text]:focus,
  input[type=password]:focus,
Jacob Thornton's avatar
Jacob Thornton committed
99
100
  textarea:focus {
    outline: none;
101
102
103
    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);
Jacob Thornton's avatar
Jacob Thornton committed
104
105
106
107
108
109
110
111
  }
  // Error styles
  div.error {
    background: lighten(@red, 57%);
    padding: 10px 0;
    margin: -10px 0 10px;
    .border-radius(4px);
    @error-text: desaturate(lighten(@red, 25%), 25%);
112
113
114
    > label,
    span.help-inline,
    span.help-block {
Jacob Thornton's avatar
Jacob Thornton committed
115
116
      color: @red;
    }
117
118
    input[type=text],
    input[type=password],
Jacob Thornton's avatar
Jacob Thornton committed
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
    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));
      }
    }
    div.input-prepend,
    div.input-append {
      span.add-on {
        background: lighten(@red, 50%);
        border-color: @error-text;
        color: darken(@error-text, 10%);
      }
    }
  }
  // Form element sizes
  .input-mini, input.mini, textarea.mini, select.mini {
    width: 60px;
  }
  .input-small, input.small, textarea.small, select.small {
    width: 90px;
  }
  .input-medium, input.medium, textarea.medium, select.medium {
    width: 150px;
  }
  .input-large, input.large, textarea.large, select.large {
    width: 210px;
  }
  .input-xlarge, input.xlarge, textarea.xlarge, select.xlarge {
    width: 270px;
  }
  .input-xxlarge, input.xxlarge, textarea.xxlarge, select.xxlarge {
    width: 530px;
  }
  textarea.xxlarge {
    overflow-y: scroll;
  }
  // Turn off focus for disabled (read-only) form elements
  input[readonly]:focus,
  textarea[readonly]:focus,
  input.disabled {
    background: #f5f5f5;
    border-color: #ddd;
    .box-shadow(none);
  }
}

// Actions (the buttons)
div.actions {
  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);
  div.secondary-action {
    float: right;
    a {
      line-height: 30px;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

// Help Text
.help-inline,
.help-block {
  font-size: 12px;
  line-height: @baseline;
192
  color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
}
.help-inline {
  padding-left: 5px;
}
// Big blocks of help text
.help-block {
  display: block;
  max-width: 600px;
}

// Inline Fields (input fields that appear as inline objects
div.inline-inputs {
  color: @gray;
  span, input[type=text] {
    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
div.input-prepend,
div.input-append {
  input[type=text] {
    .border-radius(0 3px 3px 0);
  }
  .add-on {
    background: #f5f5f5;
    float: left;
    display: block;
    width: auto;
    min-width: 16px;
232
    padding: 4px 4px 4px 5px;
233
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
234
235
236
237
238
    font-weight: normal;
    line-height: 18px;
    height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
239
    border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
    border-right-width: 0;
    .border-radius(3px 0 0 3px);
  }
  .active {
    background: lighten(@green, 30);
    border-color: @green;
  }
}
div.input-append {
  input[type=text] {
    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)
ul.inputs-list {
  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 {
        font-size: 12px;
281
        font-weight: normal;
Jacob Thornton's avatar
Jacob Thornton committed
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
      }
    }
    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
form.form-stacked {
301
  padding-left: 20px;
Jacob Thornton's avatar
Jacob Thornton committed
302
303
  fieldset {
    padding-top: @baseline / 2;
304
  }
Jacob Thornton's avatar
Jacob Thornton committed
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
  legend {
    margin-left: 0;
  }
  label {
    display: block;
    float: none;
    width: auto;
    font-weight: bold;
    text-align: left;
    line-height: 20px;
    padding-top: 0;
  }
  div.clearfix {
    margin-bottom: @baseline / 2;
    div.input {
      margin-left: 0;
    }
  }
  ul.inputs-list {
    margin-bottom: 0;
    li {
      padding-top: 0;
      label {
        font-weight: normal;
        padding-top: 0;
      }
    }
  }
333
334
335
336
  div.actions {
    margin-left: -20px;
    padding-left: 20px;
  }
Jacob Thornton's avatar
Jacob Thornton committed
337
}