bootstrap.css 54.2 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
Jacob Thornton's avatar
Jacob Thornton committed
2
 * Bootstrap v1.2.0
Mark Otto's avatar
Mark Otto committed
3
4
5
6
7
8
 *
 * Copyright 2011 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
Mark Otto's avatar
Mark Otto committed
9
 * Date: Mon Oct 17 12:44:52 PDT 2011
Mark Otto's avatar
Mark Otto committed
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).
Mark Otto's avatar
Mark Otto committed
13
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
88
89
90
91
92
93
94
95
96
 * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
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: "";
}
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:focus {
  outline: thin dotted;
}
97
98
99
a:hover, a:active {
  outline: 0;
}
Mark Otto's avatar
Mark Otto committed
100
101
102
103
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
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
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button, input {
  line-height: normal;
  *overflow: visible;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
173
174
175
/* Variables.less
 * Variables to customize the look and feel of Bootstrap
 * ----------------------------------------------------- */
176
/* Mixins.less
177
 * Snippets of reusable CSS to develop faster and keep code readable
178
 * ----------------------------------------------------------------- */
Mark Otto's avatar
Mark Otto committed
179
180
181
182
/*
 * Scaffolding
 * Basic and global styles for generating a grid system, structural layout, and page templates
 * ------------------------------------------------------------------------------------------- */
183
html, body {
184
  background-color: #ffffff;
185
186
187
188
189
190
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
191
  color: #404040;
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
}
.container {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  zoom: 1;
}
.container:before, .container:after {
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
.container:after {
  clear: both;
}
208
.fluid-container {
209
  position: relative;
Mark Otto's avatar
Mark Otto committed
210
  min-width: 940px;
211
212
213
214
  padding-left: 20px;
  padding-right: 20px;
  zoom: 1;
}
215
.fluid-container:before, .fluid-container:after {
216
217
218
219
220
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
221
.fluid-container:after {
222
223
  clear: both;
}
224
.fluid-sidebar-left, .fluid-sidebar-right {
225
226
  width: 220px;
}
227
228
229
230
231
232
233
.fluid-sidebar-left {
  float: left;
}
.fluid-sidebar-right {
  float: right;
}
.fluid-content {
Mark Otto's avatar
Mark Otto committed
234
  margin-left: 240px;
235
}
236
237
238
239
.fluid-container.reverse .fluid-content {
  margin-left: 0;
  margin-right: 240px;
}
240
241
242
243
244
245
246
a {
  color: #0069d6;
  text-decoration: none;
  line-height: inherit;
  font-weight: inherit;
}
a:hover {
247
  color: #00438a;
248
249
250
251
252
253
254
255
  text-decoration: underline;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
Mark Otto's avatar
Mark Otto committed
256
257
258
259
260
261
.hide {
  display: none;
}
.show {
  display: block;
}
Mark Otto's avatar
Mark Otto committed
262
.row {
263
  margin-left: -20px;
Mark Otto's avatar
Mark Otto committed
264
265
266
267
268
  zoom: 1;
}
.row:before, .row:after {
  display: table;
  content: "";
269
270
  zoom: 1;
  *display: inline;
Mark Otto's avatar
Mark Otto committed
271
272
273
274
}
.row:after {
  clear: both;
}
275
[class*="span"] {
Mark Otto's avatar
Mark Otto committed
276
277
278
279
  display: inline;
  float: left;
  margin-left: 20px;
}
280
.span1 {
281
  width: 60px;
Mark Otto's avatar
Mark Otto committed
282
}
283
.span2 {
284
  width: 140px;
Mark Otto's avatar
Mark Otto committed
285
}
286
.span3 {
287
  width: 220px;
Mark Otto's avatar
Mark Otto committed
288
}
289
.span4 {
290
  width: 300px;
Mark Otto's avatar
Mark Otto committed
291
}
292
.span5 {
293
  width: 380px;
Mark Otto's avatar
Mark Otto committed
294
}
295
.span6 {
296
  width: 460px;
Mark Otto's avatar
Mark Otto committed
297
}
298
.span7 {
299
  width: 540px;
Mark Otto's avatar
Mark Otto committed
300
}
301
.span8 {
302
  width: 620px;
Mark Otto's avatar
Mark Otto committed
303
}
304
.span9 {
305
  width: 700px;
Mark Otto's avatar
Mark Otto committed
306
}
307
.span10 {
308
  width: 780px;
Mark Otto's avatar
Mark Otto committed
309
}
310
.span11 {
311
  width: 860px;
Mark Otto's avatar
Mark Otto committed
312
}
313
.span12 {
Mark Otto's avatar
Mark Otto committed
314
315
  width: 940px;
}
316
.offset1 {
317
  margin-left: 100px;
Mark Otto's avatar
Mark Otto committed
318
}
319
.offset2 {
320
  margin-left: 180px;
Mark Otto's avatar
Mark Otto committed
321
}
322
.offset3 {
323
  margin-left: 260px;
Mark Otto's avatar
Mark Otto committed
324
}
325
.offset4 {
326
  margin-left: 340px;
Mark Otto's avatar
Mark Otto committed
327
}
328
.offset5 {
329
  margin-left: 420px;
Mark Otto's avatar
Mark Otto committed
330
}
331
.offset6 {
332
  margin-left: 500px;
Mark Otto's avatar
Mark Otto committed
333
}
334
.offset7 {
335
  margin-left: 580px;
Mark Otto's avatar
Mark Otto committed
336
}
337
.offset8 {
338
  margin-left: 660px;
Mark Otto's avatar
Mark Otto committed
339
}
340
.offset9 {
341
  margin-left: 740px;
Mark Otto's avatar
Mark Otto committed
342
}
343
.offset10 {
344
  margin-left: 820px;
Mark Otto's avatar
Mark Otto committed
345
}
346
.offset11 {
347
  margin-left: 900px;
Mark Otto's avatar
Mark Otto committed
348
349
350
351
352
}
/* Typography.less
 * Headings, body text, lists, code, and more for a versatile and durable typography system
 * ---------------------------------------------------------------------------------------- */
p {
353
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
Mark Otto's avatar
Mark Otto committed
354
355
356
357
358
359
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 9px;
}
p small {
  font-size: 11px;
360
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
361
362
363
364
365
366
367
368
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
369
  color: #404040;
Mark Otto's avatar
Mark Otto committed
370
371
372
373
374
375
376
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
377
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
378
379
380
381
382
383
384
385
386
387
}
h1 {
  font-size: 30px;
  line-height: 36px;
}
h1 small {
  font-size: 18px;
}
h2 {
  font-size: 24px;
388
  line-height: 36px;
Mark Otto's avatar
Mark Otto committed
389
390
391
392
393
}
h2 small {
  font-size: 14px;
}
h3 {
394
  line-height: 27px;
Mark Otto's avatar
Mark Otto committed
395
396
397
398
399
400
401
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h4 {
  font-size: 16px;
Mark Otto's avatar
Mark Otto committed
402
  line-height: 36px;
Mark Otto's avatar
Mark Otto committed
403
404
405
406
407
408
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
409
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
410
411
412
}
h6 {
  font-size: 13px;
Mark Otto's avatar
Mark Otto committed
413
  line-height: 18px;
414
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
  text-transform: uppercase;
}
ul, ol {
  margin: 0 0 18px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: 18px;
434
  color: #404040;
Mark Otto's avatar
Mark Otto committed
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}
dl {
  margin-bottom: 18px;
}
dl dt, dl dd {
  line-height: 18px;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-left: 9px;
}
hr {
453
  margin: 20px 0 19px;
Mark Otto's avatar
Mark Otto committed
454
455
456
457
458
459
460
461
462
463
464
465
466
  border: 0;
  border-bottom: 1px solid #eee;
}
strong {
  font-style: inherit;
  font-weight: bold;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
467
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
}
blockquote {
  margin-bottom: 18px;
  border-left: 5px solid #eee;
  padding-left: 15px;
}
blockquote p {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0;
}
blockquote small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
485
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
486
487
488
489
490
491
492
493
494
495
496
}
blockquote small:before {
  content: '\2014 \00A0';
}
address {
  display: block;
  line-height: 18px;
  margin-bottom: 18px;
}
code, pre {
  padding: 0 3px 2px;
497
  font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
Mark Otto's avatar
Mark Otto committed
498
499
500
501
502
503
504
505
506
507
508
509
510
  font-size: 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  background-color: #fee9cc;
  color: rgba(0, 0, 0, 0.75);
  padding: 1px 3px;
}
pre {
  background-color: #f5f5f5;
  display: block;
511
  padding: 8.5px;
Mark Otto's avatar
Mark Otto committed
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
  margin: 0 0 18px;
  line-height: 18px;
  font-size: 12px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/* Forms.less
 * Base styles for various input types, form layouts, and states
 * ------------------------------------------------------------- */
form {
  margin-bottom: 18px;
}
530
legend {
Mark Otto's avatar
Mark Otto committed
531
  display: block;
532
533
  width: 100%;
  margin-bottom: 27px;
534
  font-size: 19.5px;
535
  line-height: 36px;
536
  color: #404040;
537
  border-bottom: 1px solid #eee;
Mark Otto's avatar
Mark Otto committed
538
539
540
541
542
543
544
545
546
547
}
label,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
}
548
549
550
label {
  display: block;
  margin-bottom: 5px;
551
  color: #404040;
Mark Otto's avatar
Mark Otto committed
552
553
554
555
556
557
558
}
input,
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 210px;
559
  height: 18px;
Mark Otto's avatar
Mark Otto committed
560
561
562
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
563
  color: #808080;
Mark Otto's avatar
Mark Otto committed
564
565
566
567
568
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
569
/* Mini reset for unique input types */
Mark Otto's avatar
Mark Otto committed
570
571
572
input[type=checkbox], input[type=radio] {
  width: auto;
  height: auto;
573
  padding: 0;
Mark Otto's avatar
Mark Otto committed
574
  margin: 3px 0;
Mark Otto's avatar
Mark Otto committed
575
576
577
  *margin-top: 0;
  /* IE6-7 */

578
579
  line-height: normal;
  border: none;
580
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
581
582
}
input[type=file] {
583
  background-color: #ffffff;
584
  background-color: initial;
585
586
587
  padding: initial;
  border: initial;
  line-height: initial;
Mark Otto's avatar
Mark Otto committed
588
589
590
591
592
593
594
595
596
597
598
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input[type=button], input[type=reset], input[type=submit] {
  width: auto;
  height: auto;
}
select, input[type=file] {
  height: 27px;
  line-height: 27px;
599
600
601
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */

Mark Otto's avatar
Mark Otto committed
602
}
Mark Otto's avatar
Mark Otto committed
603
select[multiple] {
604
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
605
606
  height: inherit;
}
Mark Otto's avatar
Mark Otto committed
607
608
609
textarea {
  height: auto;
}
Mark Otto's avatar
Mark Otto committed
610
input, textarea {
Mark Otto's avatar
Mark Otto committed
611
612
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
Jacob Thornton's avatar
Jacob Thornton committed
613
614
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
Mark Otto's avatar
Mark Otto committed
615
616
617
618
619
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -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);
}
Mark Otto's avatar
Mark Otto committed
620
input:focus, textarea:focus {
Jacob Thornton's avatar
Jacob Thornton committed
621
  outline: 0;
Mark Otto's avatar
Mark Otto committed
622
623
624
625
626
  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);
}
Mark Otto's avatar
Mark Otto committed
627
628
629
630
631
632
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 1px dotted #666;
}
633
.input-mini {
Mark Otto's avatar
Mark Otto committed
634
635
  width: 60px;
}
636
.input-small {
Mark Otto's avatar
Mark Otto committed
637
638
  width: 90px;
}
639
.input-medium {
Mark Otto's avatar
Mark Otto committed
640
641
  width: 150px;
}
642
.input-large {
Mark Otto's avatar
Mark Otto committed
643
644
  width: 210px;
}
645
.input-xlarge {
Mark Otto's avatar
Mark Otto committed
646
647
  width: 270px;
}
648
.input-xxlarge {
Mark Otto's avatar
Mark Otto committed
649
650
  width: 530px;
}
651
input.span1, textarea.span1, select.span1 {
652
653
  display: inline-block;
  float: none;
654
  width: 50px;
655
656
657
  margin-left: 0;
}
input.span2, textarea.span2, select.span2 {
658
659
  display: inline-block;
  float: none;
660
  width: 150px;
661
662
663
  margin-left: 0;
}
input.span3, textarea.span3, select.span3 {
664
665
  display: inline-block;
  float: none;
666
  width: 250px;
667
668
669
  margin-left: 0;
}
input.span4, textarea.span4, select.span4 {
670
671
  display: inline-block;
  float: none;
672
  width: 350px;
673
674
675
  margin-left: 0;
}
input.span5, textarea.span5, select.span5 {
676
677
  display: inline-block;
  float: none;
678
  width: 450px;
679
680
681
  margin-left: 0;
}
input.span6, textarea.span6, select.span6 {
682
683
  display: inline-block;
  float: none;
684
  width: 550px;
685
686
687
  margin-left: 0;
}
input.span7, textarea.span7, select.span7 {
688
689
  display: inline-block;
  float: none;
690
  width: 650px;
691
692
693
  margin-left: 0;
}
input.span8, textarea.span8, select.span8 {
694
695
  display: inline-block;
  float: none;
696
  width: 750px;
697
698
699
  margin-left: 0;
}
input.span9, textarea.span9, select.span9 {
700
701
  display: inline-block;
  float: none;
702
  width: 850px;
703
704
705
  margin-left: 0;
}
input.span10, textarea.span10, select.span10 {
706
707
  display: inline-block;
  float: none;
708
  width: 950px;
709
710
711
  margin-left: 0;
}
input.span11, textarea.span11, select.span11 {
712
713
  display: inline-block;
  float: none;
714
  width: 1050px;
715
716
717
  margin-left: 0;
}
input.span12, textarea.span12, select.span12 {
718
719
  display: inline-block;
  float: none;
720
  width: 1150px;
721
722
723
  margin-left: 0;
}
input.span13, textarea.span13, select.span13 {
724
725
  display: inline-block;
  float: none;
726
  width: 1250px;
727
728
729
  margin-left: 0;
}
input.span14, textarea.span14, select.span14 {
730
731
  display: inline-block;
  float: none;
732
  width: 1350px;
733
734
735
  margin-left: 0;
}
input.span15, textarea.span15, select.span15 {
736
737
  display: inline-block;
  float: none;
738
  width: 1450px;
739
740
741
  margin-left: 0;
}
input.span16, textarea.span16, select.span16 {
742
743
  display: inline-block;
  float: none;
744
  width: 1550px;
745
746
  margin-left: 0;
}
747
748
749
750
751
752
753
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
754
  border-color: #ddd;
755
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
756
}
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
.has-error {
  background: #f8dcda;
  padding: 9px 0;
  margin: -10px 0 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.has-error > label, .has-error span.help-inline, .has-error span.help-block {
  color: #9d261d;
}
.has-error input, .has-error textarea, .has-error select {
  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);
}
.has-error input:focus, .has-error textarea:focus, .has-error select:focus {
  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);
}
.has-error .input-prepend span.add-on, .has-error .input-append span.add-on {
  background: #f4c8c5;
  border-color: #c87872;
  color: #b9554d;
}
.form-actions {
  padding: 17px 20px 18px;
Mark Otto's avatar
Mark Otto committed
787
788
  margin-top: 18px;
  margin-bottom: 18px;
789
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
790
791
  border-top: 1px solid #ddd;
}
792
793
794
795
796
797
798
799
.uneditable-input {
  background-color: #ffffff;
  display: block;
  border-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
800
}
801
:-moz-placeholder {
802
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
803
}
804
::-webkit-input-placeholder {
805
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
806
}
807
808
809
.help-text {
  margin-top: 5px;
  margin-bottom: 0;
810
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
811
812
}
.help-inline {
813
  display: inline;
Mark Otto's avatar
Mark Otto committed
814
815
816
817
818
819
820
821
822
823
824
825
826
  padding-left: 5px;
  *position: relative;
  /* IE6-7 */

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

}
.help-block {
  display: block;
  max-width: 600px;
}
.inline-inputs {
827
  color: #808080;
Mark Otto's avatar
Mark Otto committed
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
}
.inline-inputs span, .inline-inputs input {
  display: inline-block;
}
.inline-inputs input.mini {
  width: 60px;
}
.inline-inputs input.small {
  width: 90px;
}
.inline-inputs span {
  padding: 0 2px 0 1px;
}
.input-prepend input, .input-append input {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-prepend .add-on, .input-append .add-on {
847
  position: relative;
Jacob Thornton's avatar
Jacob Thornton committed
848
849
  background: #f5f5f5;
  border: 1px solid #ccc;
850
  z-index: 2;
Mark Otto's avatar
Mark Otto committed
851
852
853
854
  float: left;
  display: block;
  width: auto;
  min-width: 16px;
855
  height: 18px;
Mark Otto's avatar
Mark Otto committed
856
  padding: 4px 4px 4px 5px;
857
  margin-right: -1px;
Mark Otto's avatar
Mark Otto committed
858
859
  font-weight: normal;
  line-height: 18px;
860
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
861
  text-align: center;
862
  text-shadow: 0 1px 0 #ffffff;
Mark Otto's avatar
Mark Otto committed
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-prepend .active, .input-append .active {
  background: #a9dba9;
  border-color: #46a546;
}
.input-prepend .add-on {
  *margin-top: 1px;
  /* IE6-7 */

}
.input-append input {
  float: left;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-append .add-on {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
886
887
  margin-right: 0;
  margin-left: -1px;
Mark Otto's avatar
Mark Otto committed
888
}
889
890
891
892
893
.form-search .search-query {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
894
895
.control-group {
  margin-bottom: 18px;
Mark Otto's avatar
Mark Otto committed
896
}
897
.control-group > label {
Mark Otto's avatar
Mark Otto committed
898
899
  font-weight: bold;
}
900
901
902
903
904
.form-horizontal .control-group > label {
  float: left;
  width: 130px;
  padding-top: 5px;
  text-align: right;
Mark Otto's avatar
Mark Otto committed
905
}
906
907
.form-horizontal .controls {
  margin-left: 150px;
Mark Otto's avatar
Mark Otto committed
908
}
909
910
.form-horizontal .control-list {
  padding-top: 6px;
Mark Otto's avatar
Mark Otto committed
911
}
912
913
.form-horizontal .form-actions {
  padding-left: 150px;
Mark Otto's avatar
Mark Otto committed
914
915
916
917
918
919
920
921
922
}
/*
 * Tables.less
 * Tables for, you guessed it, tabular data
 * ---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 18px;
  padding: 0;
923
  border-collapse: separate;
924
925
926
  *border-collapse: collapse;
  /* IE7, collapse table to remove spacing */

Mark Otto's avatar
Mark Otto committed
927
  font-size: 13px;
928
929
930
931
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
932
933
934
}
table th, table td {
  padding: 10px 10px 9px;
935
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
936
937
938
939
940
  text-align: left;
}
table th {
  padding-top: 9px;
  font-weight: bold;
941
  vertical-align: middle;
942
  border-bottom: 1px solid #ddd;
Mark Otto's avatar
Mark Otto committed
943
}
944
945
946
table td {
  vertical-align: top;
}
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
table th + th, table td + td {
  border-left: 1px solid #ddd;
}
table tr + tr td {
  border-top: 1px solid #ddd;
}
table tbody tr:first-child td:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}
table tbody tr:first-child td:last-child {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}
table tbody tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
}
table tbody tr:last-child td:last-child {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}
Mark Otto's avatar
Mark Otto committed
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.zebra-striped tbody tr:nth-child(odd) td {
  background-color: #f9f9f9;
}
.zebra-striped tbody tr:hover td {
  background-color: #f5f5f5;
}
.zebra-striped .header {
  cursor: pointer;
}
.zebra-striped .header:after {
  content: "";
  float: right;
  margin-top: 7px;
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #000 transparent;
  visibility: hidden;
}
.zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
  background-color: rgba(141, 192, 219, 0.25);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
.zebra-striped .header:hover:after {
  visibility: visible;
}
.zebra-striped .headerSortDown:after, .zebra-striped .headerSortDown:hover:after {
  visibility: visible;
  filter: alpha(opacity=60);
For faster browsing, not all history is shown. View entire blame