bootstrap-1.1.0.css 39 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
Jacob Thornton's avatar
v1.1.0    
Jacob Thornton committed
2
 * Bootstrap v1.1.0
3
 *
Mark Otto's avatar
Mark Otto committed
4
 * Copyright 2011 Twitter, Inc
5
6
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
Mark Otto's avatar
Mark Otto committed
7
 *
8
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
Jacob Thornton's avatar
Jacob Thornton committed
9
 * Date: Thu Aug 25 13:52:00 PDT 2011
10
 */
11
/* Reset.less
12
 * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here	that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
13
 * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
html, body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol, ul {
  list-style: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
88
89
90
91
92
93
94
header,
section,
footer,
article,
aside {
  display: block;
}
95
/* Preboot.less
96
 * Variables and mixins to pre-ignite any new web development project
97
 * ------------------------------------------------------------------ */
Jacob Thornton's avatar
Jacob Thornton committed
98
99
100
.clearfix {
  zoom: 1;
}
101
102
103
104
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
Jacob Thornton's avatar
Jacob Thornton committed
105
106
107
.clearfix:after {
  clear: both;
}
108
109
110
.center-block {
  display: block;
  margin: 0 auto;
Jacob Thornton's avatar
Jacob Thornton committed
111
112
113
114
}
.container {
  width: 940px;
  margin: 0 auto;
115
116
  zoom: 1;
}
117
118
119
120
.container:before, .container:after {
  display: table;
  content: "";
}
121
122
.container:after {
  clear: both;
Jacob Thornton's avatar
Jacob Thornton committed
123
}
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
.btn.danger,
.alert.danger,
.btn.danger:hover,
.alert.danger:hover,
.btn.error,
.alert.error,
.btn.error:hover,
.alert.error:hover,
.btn.success,
.alert.success,
.btn.success:hover,
.alert.success:hover,
.btn.info,
.alert.info,
.btn.info:hover,
.alert.info:hover {
  color: #ffffff;
}
.btn.danger,
.alert.danger,
.btn.error,
Jacob Thornton's avatar
Jacob Thornton committed
145
.alert.error {
146
147
148
149
150
151
152
153
154
155
156
157
158
  background-color: #d6463e;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#f56a66), to(#d6463e));
  background-image: -moz-linear-gradient(#f56a66, #d6463e);
  background-image: -ms-linear-gradient(#f56a66, #d6463e);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f56a66), color-stop(100%, #d6463e));
  background-image: -webkit-linear-gradient(#f56a66, #d6463e);
  background-image: -o-linear-gradient(#f56a66, #d6463e);
  background-image: linear-gradient(#f56a66, #d6463e);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #d6463e #d6463e #a52a23;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
Jacob Thornton's avatar
Jacob Thornton committed
159
.btn.success, .alert.success {
160
161
162
163
164
165
166
167
168
169
170
171
172
  background-color: #57a957;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  background-image: -moz-linear-gradient(#62c462, #57a957);
  background-image: -ms-linear-gradient(#62c462, #57a957);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  background-image: -webkit-linear-gradient(#62c462, #57a957);
  background-image: -o-linear-gradient(#62c462, #57a957);
  background-image: linear-gradient(#62c462, #57a957);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #57a957 #57a957 #3d773d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
Jacob Thornton's avatar
Jacob Thornton committed
173
.btn.info, .alert.info {
174
175
176
177
178
179
180
181
182
183
184
185
186
  background-color: #36b3d9;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#6bd0ee), to(#36b3d9));
  background-image: -moz-linear-gradient(#6bd0ee, #36b3d9);
  background-image: -ms-linear-gradient(#6bd0ee, #36b3d9);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6bd0ee), color-stop(100%, #36b3d9));
  background-image: -webkit-linear-gradient(#6bd0ee, #36b3d9);
  background-image: -o-linear-gradient(#6bd0ee, #36b3d9);
  background-image: linear-gradient(#6bd0ee, #36b3d9);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #36b3d9 #36b3d9 #1f85a4;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
187
188
/*
 * Scaffolding
189
 * Basic and global styles for generating a grid system, structural layout, and page templates
190
 * ------------------------------------------------------------------------------------------- */
191
.row {
Jacob Thornton's avatar
Jacob Thornton committed
192
  zoom: 1;
193
  margin-left: -20px;
Jacob Thornton's avatar
Jacob Thornton committed
194
}
195
196
197
198
.row:before, .row:after {
  display: table;
  content: "";
}
199
.row:after {
Jacob Thornton's avatar
Jacob Thornton committed
200
201
  clear: both;
}
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
.row .span1,
.row .span2,
.row .span3,
.row .span4,
.row .span5,
.row .span6,
.row .span7,
.row .span8,
.row .span9,
.row .span10,
.row .span11,
.row .span12,
.row .span13,
.row .span14,
.row .span15,
.row .span16 {
218
  display: inline;
Jacob Thornton's avatar
Jacob Thornton committed
219
220
221
  float: left;
  margin-left: 20px;
}
222
223
.row .span1 {
  width: 40px;
Jacob Thornton's avatar
Jacob Thornton committed
224
}
225
.row .span2 {
Jacob Thornton's avatar
Jacob Thornton committed
226
227
  width: 100px;
}
228
.row .span3 {
Jacob Thornton's avatar
Jacob Thornton committed
229
230
  width: 160px;
}
231
.row .span4 {
Jacob Thornton's avatar
Jacob Thornton committed
232
233
  width: 220px;
}
234
.row .span5 {
Jacob Thornton's avatar
Jacob Thornton committed
235
236
  width: 280px;
}
237
.row .span6 {
Jacob Thornton's avatar
Jacob Thornton committed
238
239
  width: 340px;
}
240
.row .span7 {
Jacob Thornton's avatar
Jacob Thornton committed
241
242
  width: 400px;
}
243
.row .span8 {
Jacob Thornton's avatar
Jacob Thornton committed
244
245
  width: 460px;
}
246
.row .span9 {
Jacob Thornton's avatar
Jacob Thornton committed
247
248
  width: 520px;
}
249
.row .span10 {
Jacob Thornton's avatar
Jacob Thornton committed
250
251
  width: 580px;
}
252
.row .span11 {
Jacob Thornton's avatar
Jacob Thornton committed
253
254
  width: 640px;
}
255
.row .span12 {
Jacob Thornton's avatar
Jacob Thornton committed
256
257
  width: 700px;
}
258
.row .span13 {
Jacob Thornton's avatar
Jacob Thornton committed
259
260
  width: 760px;
}
261
.row .span14 {
Jacob Thornton's avatar
Jacob Thornton committed
262
263
  width: 820px;
}
264
.row .span15 {
Jacob Thornton's avatar
Jacob Thornton committed
265
266
  width: 880px;
}
267
.row .span16 {
Jacob Thornton's avatar
Jacob Thornton committed
268
269
  width: 940px;
}
270
.row .offset1 {
271
  margin-left: 80px;
272
273
}
.row .offset2 {
274
  margin-left: 140px;
275
276
}
.row .offset3 {
277
  margin-left: 200px;
278
279
}
.row .offset4 {
280
  margin-left: 260px;
281
282
}
.row .offset5 {
283
  margin-left: 320px;
284
285
}
.row .offset6 {
286
  margin-left: 380px;
287
288
}
.row .offset7 {
289
  margin-left: 440px;
290
291
}
.row .offset8 {
292
  margin-left: 500px;
293
294
}
.row .offset9 {
295
  margin-left: 500px;
296
297
}
.row .offset10 {
298
  margin-left: 620px;
299
300
}
.row .offset11 {
301
  margin-left: 680px;
302
303
}
.row .offset12 {
304
  margin-left: 740px;
305
}
Jacob Thornton's avatar
Jacob Thornton committed
306
307
308
309
html, body {
  background-color: #fff;
}
body {
310
  margin: 0;
Jacob Thornton's avatar
Jacob Thornton committed
311
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
312
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
313
  font-weight: normal;
314
  line-height: 18px;
315
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
316
317
318
319
320
321
322
  text-rendering: optimizeLegibility;
}
div.container {
  width: 940px;
  margin: 0 auto;
}
div.container-fluid {
323
  padding: 0 20px;
Jacob Thornton's avatar
Jacob Thornton committed
324
325
  zoom: 1;
}
326
327
328
329
div.container-fluid:before, div.container-fluid:after {
  display: table;
  content: "";
}
Jacob Thornton's avatar
Jacob Thornton committed
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
div.container-fluid:after {
  clear: both;
}
div.container-fluid div.sidebar {
  float: left;
  width: 220px;
}
div.container-fluid div.content {
  min-width: 700px;
  max-width: 1180px;
  margin-left: 240px;
}
a {
  color: #0069d6;
  text-decoration: none;
  line-height: inherit;
346
  font-weight: inherit;
Jacob Thornton's avatar
Jacob Thornton committed
347
348
349
350
351
}
a:hover {
  color: #0050a3;
  text-decoration: underline;
}
352
/* Typography.less
353
 * Headings, body text, lists, code, and more for a versatile and durable typography system
354
 * ---------------------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
355
p {
356
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
357
  font-weight: normal;
358
  line-height: 18px;
359
  margin-bottom: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
360
361
}
p small {
362
  font-size: 11px;
Mark Otto's avatar
Mark Otto committed
363
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
364
365
366
367
368
369
370
}
h1,
h2,
h3,
h4,
h5,
h6 {
371
  font-weight: bold;
372
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
373
374
375
376
377
378
379
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
Mark Otto's avatar
Mark Otto committed
380
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
381
382
}
h1 {
383
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
384
  font-size: 30px;
385
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
386
387
388
389
390
391
}
h1 small {
  font-size: 18px;
}
h2 {
  font-size: 24px;
392
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
393
394
395
396
397
398
399
400
}
h2 small {
  font-size: 14px;
}
h3,
h4,
h5,
h6 {
401
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
}
h3 {
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h4 {
  font-size: 16px;
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
Mark Otto's avatar
Mark Otto committed
420
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
421
422
423
  text-transform: uppercase;
}
ul, ol {
424
  margin: 0 0 18px 25px;
Jacob Thornton's avatar
Jacob Thornton committed
425
426
427
428
429
430
431
432
433
434
435
436
437
438
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
439
  line-height: 18px;
440
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
441
442
443
444
445
446
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}
dl {
447
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
448
449
}
dl dt, dl dd {
450
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
451
452
453
454
455
}
dl dt {
  font-weight: bold;
}
dl dd {
456
  margin-left: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
}
hr {
  margin: 0 0 19px;
  border: 0;
  border-bottom: 1px solid #eee;
}
strong {
  font-style: inherit;
  font-weight: bold;
  line-height: inherit;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
474
  color: #e6e6e6;
Jacob Thornton's avatar
Jacob Thornton committed
475
476
}
blockquote {
477
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
478
479
480
481
482
483
  border-left: 5px solid #eee;
  padding-left: 15px;
}
blockquote p {
  font-size: 14px;
  font-weight: 300;
484
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
485
486
  margin-bottom: 0;
}
487
blockquote small {
Jacob Thornton's avatar
Jacob Thornton committed
488
489
490
  display: block;
  font-size: 12px;
  font-weight: 300;
491
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
492
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
493
}
494
blockquote small:before {
Jacob Thornton's avatar
Jacob Thornton committed
495
496
497
498
  content: '\2014 \00A0';
}
address {
  display: block;
499
500
  line-height: 18px;
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
501
502
503
504
505
}
code, pre {
  padding: 0 3px 2px;
  font-family: Monaco, Andale Mono, Courier New, monospace;
  font-size: 12px;
506
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
507
508
509
510
511
512
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  background-color: #fee9cc;
  color: rgba(0, 0, 0, 0.75);
Mark Otto's avatar
Mark Otto committed
513
  padding: 1px 3px;
Jacob Thornton's avatar
Jacob Thornton committed
514
515
516
517
}
pre {
  background-color: #f5f5f5;
  display: block;
518
519
520
  padding: 17px;
  margin: 0 0 18px;
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
521
  font-size: 12px;
522
  border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
523
  border: 1px solid rgba(0, 0, 0, 0.15);
524
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
525
526
527
528
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: pre-wrap;
}
529
/* Forms.less
530
 * Base styles for various input types, form layouts, and states
531
 * ------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
532
form {
533
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
534
535
}
form fieldset {
536
537
  margin-bottom: 18px;
  padding-top: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
538
539
540
541
542
543
}
form fieldset legend {
  display: block;
  margin-left: 150px;
  font-size: 20px;
  line-height: 1;
Jacob Thornton's avatar
Jacob Thornton committed
544
545
546
547
548
549
  *margin: 0 0 5px 145px;
  /* IE6-7 */

  *line-height: 1.5;
  /* IE6-7 */

550
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
551
}
Mark Otto's avatar
Mark Otto committed
552
form .clearfix {
553
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
}
form label,
form input,
form select,
form textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: normal;
}
form label {
  padding-top: 6px;
  font-size: 13px;
  line-height: 18px;
  float: left;
  width: 130px;
  text-align: right;
571
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
572
573
574
575
576
577
578
579
580
581
582
583
}
form div.input {
  margin-left: 150px;
}
form input[type=checkbox], form input[type=radio] {
  cursor: pointer;
}
form input[type=text],
form input[type=password],
form textarea,
form select,
form .uneditable-input {
584
  display: inline-block;
Jacob Thornton's avatar
Jacob Thornton committed
585
586
587
588
  width: 210px;
  margin: 0;
  padding: 4px;
  font-size: 13px;
589
590
  line-height: 18px;
  height: 18px;
591
  color: #808080;
592
  border: 1px solid #ccc;
593
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
594
595
596
597
  -moz-border-radius: 3px;
  border-radius: 3px;
}
form select, form input[type=file] {
598
599
  height: 27px;
  line-height: 27px;
Jacob Thornton's avatar
Jacob Thornton committed
600
601
602
603
604
605
606
607
608
609
610
611
}
form textarea {
  height: auto;
}
form .uneditable-input {
  background-color: #eee;
  display: block;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}
612
613
614
615
616
617
form :-moz-placeholder {
  color: #bfbfbf;
}
form ::-webkit-input-placeholder {
  color: #bfbfbf;
}
Jacob Thornton's avatar
Jacob Thornton committed
618
619
620
621
622
623
624
form input[type=text],
form input[type=password],
form select,
form textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
625
626
627
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
Jacob Thornton's avatar
Jacob Thornton committed
628
629
630
}
form input[type=text]:focus, form input[type=password]:focus, form textarea:focus {
  outline: none;
631
632
633
634
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
Jacob Thornton's avatar
Jacob Thornton committed
635
}
Mark Otto's avatar
Mark Otto committed
636
form div.error {
Jacob Thornton's avatar
Jacob Thornton committed
637
638
639
  background: #fae5e3;
  padding: 10px 0;
  margin: -10px 0 10px;
640
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
641
642
643
  -moz-border-radius: 4px;
  border-radius: 4px;
}
Mark Otto's avatar
Mark Otto committed
644
form div.error > label, form div.error span.help-inline, form div.error span.help-block {
Jacob Thornton's avatar
Jacob Thornton committed
645
646
  color: #9d261d;
}
Mark Otto's avatar
Mark Otto committed
647
form div.error input[type=text], form div.error input[type=password], form div.error textarea {
Jacob Thornton's avatar
Jacob Thornton committed
648
649
650
651
652
  border-color: #c87872;
  -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
}
Mark Otto's avatar
Mark Otto committed
653
form div.error input[type=text]:focus, form div.error input[type=password]:focus, form div.error textarea:focus {
Jacob Thornton's avatar
Jacob Thornton committed
654
655
656
657
658
  border-color: #b9554d;
  -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
}
Mark Otto's avatar
Mark Otto committed
659
form div.error .input-prepend span.add-on, form div.error .input-append span.add-on {
Jacob Thornton's avatar
Jacob Thornton committed
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
  background: #f4c8c5;
  border-color: #c87872;
  color: #b9554d;
}
form .input-mini,
form input.mini,
form textarea.mini,
form select.mini {
  width: 60px;
}
form .input-small,
form input.small,
form textarea.small,
form select.small {
  width: 90px;
}
form .input-medium,
form input.medium,
form textarea.medium,
form select.medium {
  width: 150px;
}
form .input-large,
form input.large,
form textarea.large,
form select.large {
  width: 210px;
}
form .input-xlarge,
form input.xlarge,
form textarea.xlarge,
form select.xlarge {
  width: 270px;
}
form .input-xxlarge,
form input.xxlarge,
form textarea.xxlarge,
form select.xxlarge {
  width: 530px;
}
form textarea.xxlarge {
  overflow-y: scroll;
}
form input[readonly]:focus, form textarea[readonly]:focus, form input.disabled {
  background: #f5f5f5;
  border-color: #ddd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
Mark Otto's avatar
Mark Otto committed
710
.actions {
Jacob Thornton's avatar
Jacob Thornton committed
711
  background: #f5f5f5;
712
713
714
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 20px 18px 150px;
Jacob Thornton's avatar
Jacob Thornton committed
715
  border-top: 1px solid #ddd;
716
  -webkit-border-radius: 0 0 3px 3px;
Jacob Thornton's avatar
Jacob Thornton committed
717
718
719
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
Mark Otto's avatar
Mark Otto committed
720
.actions .secondary-action {
Jacob Thornton's avatar
Jacob Thornton committed
721
722
  float: right;
}
Mark Otto's avatar
Mark Otto committed
723
.actions .secondary-action a {
Jacob Thornton's avatar
Jacob Thornton committed
724
725
  line-height: 30px;
}
Mark Otto's avatar
Mark Otto committed
726
.actions .secondary-action a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
727
728
729
730
  text-decoration: underline;
}
.help-inline, .help-block {
  font-size: 12px;
731
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
732
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
733
734
735
}
.help-inline {
  padding-left: 5px;
Jacob Thornton's avatar
Jacob Thornton committed
736
737
738
739
740
741
  *position: relative;
  /* IE6-7 */

  *top: -5px;
  /* IE6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
742
743
744
745
746
}
.help-block {
  display: block;
  max-width: 600px;
}
Mark Otto's avatar
Mark Otto committed
747
.inline-inputs {
748
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
749
}
Mark Otto's avatar
Mark Otto committed
750
.inline-inputs span, .inline-inputs input[type=text] {
Jacob Thornton's avatar
Jacob Thornton committed
751
752
  display: inline-block;
}
Mark Otto's avatar
Mark Otto committed
753
.inline-inputs input.mini {
Jacob Thornton's avatar
Jacob Thornton committed
754
755
  width: 60px;
}
Mark Otto's avatar
Mark Otto committed
756
.inline-inputs input.small {
Jacob Thornton's avatar
Jacob Thornton committed
757
758
  width: 90px;
}
Mark Otto's avatar
Mark Otto committed
759
.inline-inputs span {
Jacob Thornton's avatar
Jacob Thornton committed
760
761
  padding: 0 2px 0 1px;
}
762
763
764
765
.input-prepend input[type=text],
.input-append input[type=text],
.input-prepend input[type=password],
.input-append input[type=password] {
766
  -webkit-border-radius: 0 3px 3px 0;
Jacob Thornton's avatar
Jacob Thornton committed
767
768
769
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
Mark Otto's avatar
Mark Otto committed
770
.input-prepend .add-on, .input-append .add-on {
Jacob Thornton's avatar
Jacob Thornton committed
771
772
773
774
775
  background: #f5f5f5;
  float: left;
  display: block;
  width: auto;
  min-width: 16px;
776
  padding: 4px 4px 4px 5px;
Mark Otto's avatar
Mark Otto committed
777
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
778
779
780
781
782
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
783
  border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
784
  border-right-width: 0;
785
  -webkit-border-radius: 3px 0 0 3px;
Jacob Thornton's avatar
Jacob Thornton committed
786
787
788
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
Mark Otto's avatar
Mark Otto committed
789
.input-prepend .active, .input-append .active {
Jacob Thornton's avatar
Jacob Thornton committed
790
791
792
  background: #a9dba9;
  border-color: #46a546;
}
Jacob Thornton's avatar
Jacob Thornton committed
793
794
795
796
797
.input-prepend .add-on {
  *margin-top: 1px;
  /* IE6-7 */

}
798
.input-append input[type=text], .input-append input[type=password] {
Jacob Thornton's avatar
Jacob Thornton committed
799
  float: left;
800
  -webkit-border-radius: 3px 0 0 3px;
Jacob Thornton's avatar
Jacob Thornton committed
801
802
803
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
Mark Otto's avatar
Mark Otto committed
804
.input-append .add-on {
805
  -webkit-border-radius: 0 3px 3px 0;
Jacob Thornton's avatar
Jacob Thornton committed
806
807
808
809
810
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  border-right-width: 1px;
  border-left-width: 0;
}
Mark Otto's avatar
Mark Otto committed
811
.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
812
813
814
  margin: 0 0 5px;
  width: 100%;
}
Mark Otto's avatar
Mark Otto committed
815
.inputs-list li {
Jacob Thornton's avatar
Jacob Thornton committed
816
817
818
819
  display: block;
  padding: 0;
  width: 100%;
}
Mark Otto's avatar
Mark Otto committed
820
.inputs-list li label {
Jacob Thornton's avatar
Jacob Thornton committed
821
822
823
824
  display: block;
  float: none;
  width: auto;
  padding: 0;
825
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
826
827
828
  text-align: left;
  white-space: normal;
}
Mark Otto's avatar
Mark Otto committed
829
.inputs-list li label strong {
830
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
831
}
Mark Otto's avatar
Mark Otto committed
832
.inputs-list li label small {
Jacob Thornton's avatar
Jacob Thornton committed
833
  font-size: 12px;
834
  font-weight: normal;
Jacob Thornton's avatar
Jacob Thornton committed
835
}
Mark Otto's avatar
Mark Otto committed
836
.inputs-list li ul.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
837
838
839
840
  margin-left: 25px;
  margin-bottom: 10px;
  padding-top: 0;
}
Mark Otto's avatar
Mark Otto committed
841
.inputs-list li:first-child {
Jacob Thornton's avatar
Jacob Thornton committed
842
843
  padding-top: 5px;
}
Mark Otto's avatar
Mark Otto committed
844
.inputs-list input[type=radio], .inputs-list input[type=checkbox] {
Jacob Thornton's avatar
Jacob Thornton committed
845
846
  margin-bottom: 0;
}
847
848
849
form.form-stacked {
  padding-left: 20px;
}
Jacob Thornton's avatar
Jacob Thornton committed
850
form.form-stacked fieldset {
851
  padding-top: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
852
853
854
855
856
857
858
859
860
861
862
863
864
}
form.form-stacked legend {
  margin-left: 0;
}
form.form-stacked 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
865
form.form-stacked .clearfix {
866
  margin-bottom: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
867
}
Mark Otto's avatar
Mark Otto committed
868
form.form-stacked .clearfix div.input {
Jacob Thornton's avatar
Jacob Thornton committed
869
870
  margin-left: 0;
}
Mark Otto's avatar
Mark Otto committed
871
form.form-stacked .inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
872
873
  margin-bottom: 0;
}
Mark Otto's avatar
Mark Otto committed
874
form.form-stacked .inputs-list li {
Jacob Thornton's avatar
Jacob Thornton committed
875
876
  padding-top: 0;
}
Mark Otto's avatar
Mark Otto committed
877
form.form-stacked .inputs-list li label {
Jacob Thornton's avatar
Jacob Thornton committed
878
879
880
  font-weight: normal;
  padding-top: 0;
}
Mark Otto's avatar
Mark Otto committed
881
form.form-stacked div.error {
882
883
884
885
886
887
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-top: 0;
  margin-left: -10px;
}
Mark Otto's avatar
Mark Otto committed
888
form.form-stacked .actions {
889
890
891
  margin-left: -20px;
  padding-left: 20px;
}
892
893
/*
 * Tables.less
894
 * Tables for, you guessed it, tabular data
895
 * ---------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
896
897
table {
  width: 100%;
898
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
899
900
  padding: 0;
  border-collapse: separate;
901
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
902
903
904
}
table th, table td {
  padding: 10px 10px 9px;
905
  line-height: 13.5px;
906
  text-align: left;
Jacob Thornton's avatar
Jacob Thornton committed
907
908
909
910
911
912
913
914
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
table th {
  padding-top: 9px;
  font-weight: bold;
  border-bottom-width: 2px;
}
915
.zebra-striped tbody tr:nth-child(odd) td {
916
  background-color: #f9f9f9;
Jacob Thornton's avatar
Jacob Thornton committed
917
}
918
.zebra-striped tbody tr:hover td {
919
  background-color: #f5f5f5;
Jacob Thornton's avatar
Jacob Thornton committed
920
}
921
.zebra-striped .header {
Jacob Thornton's avatar
Jacob Thornton committed
922
  cursor: pointer;
923
}
924
.zebra-striped .header:after {
925
  content: "";
926
927
  float: right;
  margin-top: 7px;
928
929
930
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #000 transparent;
931
  visibility: hidden;
Jacob Thornton's avatar
Jacob Thornton committed
932
}
933
.zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
Jacob Thornton's avatar
Jacob Thornton committed
934
  background-color: rgba(141, 192, 219, 0.25);
935
936
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 3px 3px 0 0;
Jacob Thornton's avatar
Jacob Thornton committed
937
938
939
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
940
.zebra-striped .header:hover:after {
941
  visibility: visible;
Jacob Thornton's avatar
Jacob Thornton committed
942
}
943
.zebra-striped .headerSortDown:after, .zebra-striped .headerSortDown:hover:after {
944
945
946
947
948
949
  visibility: visible;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
950
.zebra-striped .headerSortUp:after {
951
952
953
954
955
956
957
958
959
960
961
962
  border-bottom: none;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  visibility: visible;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
Jacob Thornton's avatar
Jacob Thornton committed
963
}
964
table .blue {
965
966
  color: #049cdb;
  border-bottom-color: #049cdb;
Jacob Thornton's avatar
Jacob Thornton committed
967
}
968
table .headerSortUp.blue, table .headerSortDown.blue {
969
  background-color: #ade6fe;
Jacob Thornton's avatar
Jacob Thornton committed
970
}
971
table .green {
Jacob Thornton's avatar
Jacob Thornton committed
972
973
974
  color: #46a546;
  border-bottom-color: #46a546;
}
975
table .headerSortUp.green, table .headerSortDown.green {
Jacob Thornton's avatar
Jacob Thornton committed
976
977
  background-color: #cdeacd;
}
978
table .red {
Jacob Thornton's avatar
Jacob Thornton committed
979
980
981
  color: #9d261d;
  border-bottom-color: #9d261d;
}
982
table .headerSortUp.red, table .headerSortDown.red {
Jacob Thornton's avatar
Jacob Thornton committed
983
984
  background-color: #f4c8c5;
}
985
table .yellow {
Jacob Thornton's avatar
Jacob Thornton committed
986
987
988
  color: #ffc40d;
  border-bottom-color: #ffc40d;
}
989
table .headerSortUp.yellow, table .headerSortDown.yellow {
Jacob Thornton's avatar
Jacob Thornton committed
990
991
  background-color: #fff6d9;
}
992
table .orange {
Jacob Thornton's avatar
Jacob Thornton committed
993
994
995
  color: #f89406;
  border-bottom-color: #f89406;
}
996
table .headerSortUp.orange, table .headerSortDown.orange {
Jacob Thornton's avatar
Jacob Thornton committed
997
998
  background-color: #fee9cc;
}
999
table .purple {
Jacob Thornton's avatar
Jacob Thornton committed
1000
  color: #7a43b6;
For faster browsing, not all history is shown. View entire blame