jombo 0.0.1.beta25 → 0.0.1.beta26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +9 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +5 -4
- data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +7 -5
- data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +16 -7
- data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +8 -4
- data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +11 -7
- data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +11 -6
- data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +3 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +40 -21
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +345 -0
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +1557 -1482
- metadata +3 -2
@@ -6,7 +6,6 @@
|
|
6
6
|
* http://www.apache.org/licenses/LICENSE-2.0
|
7
7
|
*
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
* Date: Mon Jan 23 15:15:08 PST 2012
|
10
9
|
*/
|
11
10
|
article,
|
12
11
|
aside,
|
@@ -35,6 +34,8 @@ html {
|
|
35
34
|
}
|
36
35
|
a:focus {
|
37
36
|
outline: thin dotted;
|
37
|
+
outline: 5px auto -webkit-focus-ring-color;
|
38
|
+
outline-offset: -2px;
|
38
39
|
}
|
39
40
|
a:hover, a:active {
|
40
41
|
outline: 0;
|
@@ -63,8 +64,7 @@ select,
|
|
63
64
|
textarea {
|
64
65
|
margin: 0;
|
65
66
|
font-size: 100%;
|
66
|
-
vertical-align:
|
67
|
-
*vertical-align: middle;
|
67
|
+
vertical-align: middle;
|
68
68
|
}
|
69
69
|
button, input {
|
70
70
|
*overflow: visible;
|
@@ -102,55 +102,6 @@ body {
|
|
102
102
|
color: #555555;
|
103
103
|
background-color: #ffffff;
|
104
104
|
}
|
105
|
-
.container {
|
106
|
-
width: 940px;
|
107
|
-
margin-left: auto;
|
108
|
-
margin-right: auto;
|
109
|
-
*zoom: 1;
|
110
|
-
}
|
111
|
-
.container:before, .container:after {
|
112
|
-
display: table;
|
113
|
-
content: "";
|
114
|
-
}
|
115
|
-
.container:after {
|
116
|
-
clear: both;
|
117
|
-
}
|
118
|
-
.fluid-container {
|
119
|
-
position: relative;
|
120
|
-
min-width: 940px;
|
121
|
-
padding-left: 20px;
|
122
|
-
padding-right: 20px;
|
123
|
-
*zoom: 1;
|
124
|
-
}
|
125
|
-
.fluid-container:before, .fluid-container:after {
|
126
|
-
display: table;
|
127
|
-
content: "";
|
128
|
-
}
|
129
|
-
.fluid-container:after {
|
130
|
-
clear: both;
|
131
|
-
}
|
132
|
-
.fluid-sidebar {
|
133
|
-
width: 220px;
|
134
|
-
margin: 0 20px 18px;
|
135
|
-
}
|
136
|
-
.sidebar-left {
|
137
|
-
padding-left: 260px;
|
138
|
-
}
|
139
|
-
.sidebar-right {
|
140
|
-
padding-right: 260px;
|
141
|
-
}
|
142
|
-
.sidebar-left .fluid-sidebar {
|
143
|
-
float: left;
|
144
|
-
margin-left: -240px;
|
145
|
-
}
|
146
|
-
.sidebar-right .fluid-sidebar {
|
147
|
-
float: right;
|
148
|
-
margin-right: -240px;
|
149
|
-
}
|
150
|
-
.fluid-content {
|
151
|
-
float: left;
|
152
|
-
width: 100%;
|
153
|
-
}
|
154
105
|
a {
|
155
106
|
color: #0088cc;
|
156
107
|
text-decoration: none;
|
@@ -243,6 +194,55 @@ a:hover {
|
|
243
194
|
.offset11 {
|
244
195
|
margin-left: 900px;
|
245
196
|
}
|
197
|
+
.container {
|
198
|
+
width: 940px;
|
199
|
+
margin-left: auto;
|
200
|
+
margin-right: auto;
|
201
|
+
*zoom: 1;
|
202
|
+
}
|
203
|
+
.container:before, .container:after {
|
204
|
+
display: table;
|
205
|
+
content: "";
|
206
|
+
}
|
207
|
+
.container:after {
|
208
|
+
clear: both;
|
209
|
+
}
|
210
|
+
.fluid-container {
|
211
|
+
position: relative;
|
212
|
+
min-width: 940px;
|
213
|
+
padding-left: 20px;
|
214
|
+
padding-right: 20px;
|
215
|
+
*zoom: 1;
|
216
|
+
}
|
217
|
+
.fluid-container:before, .fluid-container:after {
|
218
|
+
display: table;
|
219
|
+
content: "";
|
220
|
+
}
|
221
|
+
.fluid-container:after {
|
222
|
+
clear: both;
|
223
|
+
}
|
224
|
+
.fluid-sidebar {
|
225
|
+
width: 220px;
|
226
|
+
margin: 0 20px 18px;
|
227
|
+
}
|
228
|
+
.sidebar-left {
|
229
|
+
padding-left: 260px;
|
230
|
+
}
|
231
|
+
.sidebar-right {
|
232
|
+
padding-right: 260px;
|
233
|
+
}
|
234
|
+
.sidebar-left .fluid-sidebar {
|
235
|
+
float: left;
|
236
|
+
margin-left: -240px;
|
237
|
+
}
|
238
|
+
.sidebar-right .fluid-sidebar {
|
239
|
+
float: right;
|
240
|
+
margin-right: -240px;
|
241
|
+
}
|
242
|
+
.fluid-content {
|
243
|
+
float: left;
|
244
|
+
width: 100%;
|
245
|
+
}
|
246
246
|
p {
|
247
247
|
margin: 0 0 9px;
|
248
248
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
@@ -253,6 +253,12 @@ p small {
|
|
253
253
|
font-size: 11px;
|
254
254
|
color: #999999;
|
255
255
|
}
|
256
|
+
.lead {
|
257
|
+
margin-bottom: 18px;
|
258
|
+
font-size: 20px;
|
259
|
+
font-weight: 200;
|
260
|
+
line-height: 27px;
|
261
|
+
}
|
256
262
|
h1,
|
257
263
|
h2,
|
258
264
|
h3,
|
@@ -311,6 +317,14 @@ h6 {
|
|
311
317
|
color: #999999;
|
312
318
|
text-transform: uppercase;
|
313
319
|
}
|
320
|
+
.page-header {
|
321
|
+
padding-bottom: 17px;
|
322
|
+
margin: 18px 0;
|
323
|
+
border-bottom: 1px solid #eeeeee;
|
324
|
+
}
|
325
|
+
.page-header h1 {
|
326
|
+
line-height: 1;
|
327
|
+
}
|
314
328
|
ul, ol {
|
315
329
|
padding: 0;
|
316
330
|
margin: 0 0 9px 25px;
|
@@ -408,6 +422,12 @@ address {
|
|
408
422
|
line-height: 18px;
|
409
423
|
font-style: normal;
|
410
424
|
}
|
425
|
+
small {
|
426
|
+
font-size: 100%;
|
427
|
+
}
|
428
|
+
cite {
|
429
|
+
font-style: normal;
|
430
|
+
}
|
411
431
|
code, pre {
|
412
432
|
padding: 0 3px 2px;
|
413
433
|
font-family: Menlo, Monaco, "Courier New", monospace;
|
@@ -418,8 +438,10 @@ code, pre {
|
|
418
438
|
border-radius: 3px;
|
419
439
|
}
|
420
440
|
code {
|
421
|
-
padding:
|
422
|
-
|
441
|
+
padding: 3px 4px;
|
442
|
+
color: #d14;
|
443
|
+
background-color: #f7f7f9;
|
444
|
+
border: 1px solid #e1e1e8;
|
423
445
|
}
|
424
446
|
pre {
|
425
447
|
display: block;
|
@@ -444,12 +466,6 @@ pre code {
|
|
444
466
|
padding: 0;
|
445
467
|
background-color: transparent;
|
446
468
|
}
|
447
|
-
small {
|
448
|
-
font-size: 100%;
|
449
|
-
}
|
450
|
-
cite {
|
451
|
-
font-style: normal;
|
452
|
-
}
|
453
469
|
form {
|
454
470
|
margin: 0 0 18px;
|
455
471
|
}
|
@@ -468,7 +484,6 @@ legend {
|
|
468
484
|
color: #333333;
|
469
485
|
border: 0;
|
470
486
|
border-bottom: 1px solid #eee;
|
471
|
-
-webkit-margin-collapse: separate;
|
472
487
|
}
|
473
488
|
label,
|
474
489
|
input,
|
@@ -489,7 +504,7 @@ input,
|
|
489
504
|
textarea,
|
490
505
|
select,
|
491
506
|
.uneditable-input {
|
492
|
-
display: block;
|
507
|
+
display: inline-block;
|
493
508
|
width: 210px;
|
494
509
|
height: 18px;
|
495
510
|
padding: 4px;
|
@@ -502,19 +517,27 @@ select,
|
|
502
517
|
-moz-border-radius: 3px;
|
503
518
|
border-radius: 3px;
|
504
519
|
}
|
505
|
-
|
520
|
+
.uneditable-textarea {
|
521
|
+
width: auto;
|
522
|
+
height: auto;
|
523
|
+
}
|
524
|
+
label input, label textarea, label select {
|
525
|
+
display: block;
|
526
|
+
}
|
527
|
+
input[type="image"], input[type="checkbox"], input[type="radio"] {
|
506
528
|
width: auto;
|
507
529
|
height: auto;
|
508
530
|
padding: 0;
|
509
531
|
margin: 3px 0;
|
510
532
|
*margin-top: 0;
|
511
|
-
/*
|
533
|
+
/* IE7 */
|
512
534
|
|
513
535
|
line-height: normal;
|
514
|
-
border:
|
536
|
+
border: 0;
|
515
537
|
cursor: pointer;
|
538
|
+
border-radius: 0 \0/;
|
516
539
|
}
|
517
|
-
input[type=file] {
|
540
|
+
input[type="file"] {
|
518
541
|
padding: initial;
|
519
542
|
line-height: initial;
|
520
543
|
border: initial;
|
@@ -524,27 +547,27 @@ input[type=file] {
|
|
524
547
|
-moz-box-shadow: none;
|
525
548
|
box-shadow: none;
|
526
549
|
}
|
527
|
-
input[type=button], input[type=reset], input[type=submit] {
|
550
|
+
input[type="button"], input[type="reset"], input[type="submit"] {
|
528
551
|
width: auto;
|
529
552
|
height: auto;
|
530
553
|
}
|
531
|
-
select, input[type=file] {
|
532
|
-
height:
|
554
|
+
select, input[type="file"] {
|
555
|
+
height: 28px;
|
556
|
+
/* In IE7, the height of the select element cannot be changed by height, only font-size */
|
557
|
+
|
533
558
|
*margin-top: 4px;
|
534
559
|
/* For IE7, add top margin to align select with labels */
|
535
560
|
|
536
|
-
line-height:
|
561
|
+
line-height: 28px;
|
537
562
|
}
|
538
563
|
select {
|
539
564
|
width: 220px;
|
540
|
-
padding: 0;
|
541
|
-
vertical-align: middle;
|
542
565
|
background-color: #ffffff;
|
543
566
|
}
|
544
567
|
select[multiple], select[size] {
|
545
|
-
height:
|
568
|
+
height: auto;
|
546
569
|
}
|
547
|
-
input[type=image] {
|
570
|
+
input[type="image"] {
|
548
571
|
-webkit-box-shadow: none;
|
549
572
|
-moz-box-shadow: none;
|
550
573
|
box-shadow: none;
|
@@ -552,27 +575,34 @@ input[type=image] {
|
|
552
575
|
textarea {
|
553
576
|
height: auto;
|
554
577
|
}
|
578
|
+
input[type="hidden"] {
|
579
|
+
display: none;
|
580
|
+
}
|
555
581
|
.radio, .checkbox {
|
556
582
|
padding-left: 18px;
|
557
583
|
}
|
558
|
-
.radio input[type=radio], .checkbox input[type=checkbox] {
|
584
|
+
.radio input[type="radio"], .checkbox input[type="checkbox"] {
|
559
585
|
float: left;
|
560
586
|
margin-left: -18px;
|
561
587
|
}
|
562
588
|
.controls > .radio:first-child, .controls > .checkbox:first-child {
|
563
|
-
padding-top:
|
589
|
+
padding-top: 5px;
|
564
590
|
}
|
565
591
|
.radio.inline, .checkbox.inline {
|
566
592
|
display: inline-block;
|
567
593
|
margin-bottom: 0;
|
594
|
+
vertical-align: middle;
|
568
595
|
}
|
569
596
|
.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
|
570
597
|
margin-left: 10px;
|
571
598
|
}
|
599
|
+
.controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child {
|
600
|
+
padding-top: 5px;
|
601
|
+
}
|
572
602
|
input, textarea {
|
573
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
574
|
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
575
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
603
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
604
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
605
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
576
606
|
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
577
607
|
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
578
608
|
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
|
@@ -581,16 +611,21 @@ input, textarea {
|
|
581
611
|
}
|
582
612
|
input:focus, textarea:focus {
|
583
613
|
border-color: rgba(82, 168, 236, 0.8);
|
584
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
585
|
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
586
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.
|
614
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
615
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
616
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
587
617
|
outline: 0;
|
618
|
+
outline: thin dotted \9;
|
619
|
+
/* IE6-8 */
|
620
|
+
|
588
621
|
}
|
589
|
-
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
|
622
|
+
input[type="file"]:focus, input[type="checkbox"]:focus, select:focus {
|
590
623
|
-webkit-box-shadow: none;
|
591
624
|
-moz-box-shadow: none;
|
592
625
|
box-shadow: none;
|
593
|
-
outline:
|
626
|
+
outline: thin dotted;
|
627
|
+
outline: 5px auto -webkit-focus-ring-color;
|
628
|
+
outline-offset: -2px;
|
594
629
|
}
|
595
630
|
.input-mini {
|
596
631
|
width: 60px;
|
@@ -699,58 +734,58 @@ textarea[readonly] {
|
|
699
734
|
border-color: #ddd;
|
700
735
|
cursor: not-allowed;
|
701
736
|
}
|
702
|
-
.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
|
703
|
-
color: #b94a48;
|
704
|
-
}
|
705
|
-
.control-group.error input, .control-group.error textarea {
|
706
|
-
color: #b94a48;
|
707
|
-
border-color: #ee5f5b;
|
708
|
-
}
|
709
|
-
.control-group.error input:focus, .control-group.error textarea:focus {
|
710
|
-
border-color: #e9322d;
|
711
|
-
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
712
|
-
-moz-box-shadow: 0 0 6px #f8b9b7;
|
713
|
-
box-shadow: 0 0 6px #f8b9b7;
|
714
|
-
}
|
715
|
-
.control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
|
716
|
-
color: #b94a48;
|
717
|
-
background-color: #fce6e6;
|
718
|
-
border-color: #b94a48;
|
719
|
-
}
|
720
737
|
.control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline {
|
721
738
|
color: #c09853;
|
722
739
|
}
|
723
|
-
.control-group.warning input, .control-group.warning textarea {
|
740
|
+
.control-group.warning input, .control-group.warning select, .control-group.warning textarea {
|
724
741
|
color: #c09853;
|
725
|
-
border-color: #
|
742
|
+
border-color: #c09853;
|
726
743
|
}
|
727
|
-
.control-group.warning input:focus, .control-group.warning textarea:focus {
|
728
|
-
border-color: #
|
729
|
-
-webkit-box-shadow: 0 0 6px #
|
730
|
-
-moz-box-shadow: 0 0 6px #
|
731
|
-
box-shadow: 0 0 6px #
|
744
|
+
.control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
|
745
|
+
border-color: #a47e3c;
|
746
|
+
-webkit-box-shadow: 0 0 6px #dbc59e;
|
747
|
+
-moz-box-shadow: 0 0 6px #dbc59e;
|
748
|
+
box-shadow: 0 0 6px #dbc59e;
|
732
749
|
}
|
733
750
|
.control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
|
734
751
|
color: #c09853;
|
735
|
-
background-color: #
|
752
|
+
background-color: #fcf8e3;
|
736
753
|
border-color: #c09853;
|
737
754
|
}
|
755
|
+
.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
|
756
|
+
color: #b94a48;
|
757
|
+
}
|
758
|
+
.control-group.error input, .control-group.error select, .control-group.error textarea {
|
759
|
+
color: #b94a48;
|
760
|
+
border-color: #b94a48;
|
761
|
+
}
|
762
|
+
.control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
|
763
|
+
border-color: #953b39;
|
764
|
+
-webkit-box-shadow: 0 0 6px #d59392;
|
765
|
+
-moz-box-shadow: 0 0 6px #d59392;
|
766
|
+
box-shadow: 0 0 6px #d59392;
|
767
|
+
}
|
768
|
+
.control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
|
769
|
+
color: #b94a48;
|
770
|
+
background-color: #f2dede;
|
771
|
+
border-color: #b94a48;
|
772
|
+
}
|
738
773
|
.control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline {
|
739
774
|
color: #468847;
|
740
775
|
}
|
741
|
-
.control-group.success input, .control-group.success textarea {
|
776
|
+
.control-group.success input, .control-group.success select, .control-group.success textarea {
|
742
777
|
color: #468847;
|
743
|
-
border-color: #
|
778
|
+
border-color: #468847;
|
744
779
|
}
|
745
|
-
.control-group.success input:focus, .control-group.success textarea:focus {
|
746
|
-
border-color: #
|
747
|
-
-webkit-box-shadow: 0 0 6px #
|
748
|
-
-moz-box-shadow: 0 0 6px #
|
749
|
-
box-shadow: 0 0 6px #
|
780
|
+
.control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
|
781
|
+
border-color: #356635;
|
782
|
+
-webkit-box-shadow: 0 0 6px #7aba7b;
|
783
|
+
-moz-box-shadow: 0 0 6px #7aba7b;
|
784
|
+
box-shadow: 0 0 6px #7aba7b;
|
750
785
|
}
|
751
786
|
.control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
|
752
787
|
color: #468847;
|
753
|
-
background-color: #
|
788
|
+
background-color: #dff0d8;
|
754
789
|
border-color: #468847;
|
755
790
|
}
|
756
791
|
input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
|
@@ -791,13 +826,13 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
791
826
|
color: #999999;
|
792
827
|
}
|
793
828
|
.help-inline {
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
*top: -5px;
|
798
|
-
/* IE6-7 */
|
829
|
+
display: inline-block;
|
830
|
+
*display: inline;
|
831
|
+
/* IE7 inline-block hack */
|
799
832
|
|
800
|
-
|
833
|
+
*zoom: 1;
|
834
|
+
margin-bottom: 9px;
|
835
|
+
vertical-align: middle;
|
801
836
|
padding-left: 5px;
|
802
837
|
}
|
803
838
|
.input-prepend, .input-append {
|
@@ -822,6 +857,13 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
822
857
|
-moz-border-radius: 0 3px 3px 0;
|
823
858
|
border-radius: 0 3px 3px 0;
|
824
859
|
}
|
860
|
+
.input-prepend input:focus,
|
861
|
+
.input-append input:focus,
|
862
|
+
.input-prepend .uneditable-input:focus,
|
863
|
+
.input-append .uneditable-input:focus {
|
864
|
+
position: relative;
|
865
|
+
z-index: 2;
|
866
|
+
}
|
825
867
|
.input-prepend .uneditable-input, .input-append .uneditable-input {
|
826
868
|
border-left-color: #ccc;
|
827
869
|
}
|
@@ -869,6 +911,12 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
869
911
|
-moz-border-radius: 0 3px 3px 0;
|
870
912
|
border-radius: 0 3px 3px 0;
|
871
913
|
}
|
914
|
+
.input-append input:first-child {
|
915
|
+
*margin-left: -160px;
|
916
|
+
}
|
917
|
+
.input-append input:first-child + .add-on {
|
918
|
+
*margin-left: -21px;
|
919
|
+
}
|
872
920
|
.search-query {
|
873
921
|
padding-left: 14px;
|
874
922
|
padding-right: 14px;
|
@@ -886,6 +934,9 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
886
934
|
.form-search select,
|
887
935
|
.form-inline select,
|
888
936
|
.form-horizontal select,
|
937
|
+
.form-search .help-inline,
|
938
|
+
.form-inline .help-inline,
|
939
|
+
.form-horizontal .help-inline,
|
889
940
|
.form-search .uneditable-input,
|
890
941
|
.form-inline .uneditable-input,
|
891
942
|
.form-horizontal .uneditable-input {
|
@@ -898,8 +949,20 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
|
|
898
949
|
.control-group {
|
899
950
|
margin-bottom: 9px;
|
900
951
|
}
|
952
|
+
.form-horizontal legend + .control-group {
|
953
|
+
margin-top: 18px;
|
954
|
+
-webkit-margin-top-collapse: separate;
|
955
|
+
}
|
901
956
|
.form-horizontal .control-group {
|
902
957
|
margin-bottom: 18px;
|
958
|
+
*zoom: 1;
|
959
|
+
}
|
960
|
+
.form-horizontal .control-group:before, .form-horizontal .control-group:after {
|
961
|
+
display: table;
|
962
|
+
content: "";
|
963
|
+
}
|
964
|
+
.form-horizontal .control-group:after {
|
965
|
+
clear: both;
|
903
966
|
}
|
904
967
|
.form-horizontal .control-group > label {
|
905
968
|
float: left;
|
@@ -947,6 +1010,7 @@ table {
|
|
947
1010
|
.table-bordered {
|
948
1011
|
border: 1px solid #ddd;
|
949
1012
|
border-collapse: separate;
|
1013
|
+
*border-collapse: collapsed;
|
950
1014
|
-webkit-border-radius: 4px;
|
951
1015
|
-moz-border-radius: 4px;
|
952
1016
|
border-radius: 4px;
|
@@ -1043,353 +1107,417 @@ table .span12 {
|
|
1043
1107
|
width: 924px;
|
1044
1108
|
margin-left: 0;
|
1045
1109
|
}
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
table .header:after {
|
1050
|
-
content: "";
|
1051
|
-
float: right;
|
1052
|
-
margin-top: 7px;
|
1053
|
-
border-width: 0 4px 4px;
|
1054
|
-
border-style: solid;
|
1055
|
-
border-color: #000000 transparent;
|
1056
|
-
visibility: hidden;
|
1057
|
-
}
|
1058
|
-
table .headerSortUp, table .headerSortDown {
|
1059
|
-
background-color: #f7f7f9;
|
1060
|
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1061
|
-
}
|
1062
|
-
table .header:hover:after {
|
1063
|
-
visibility: visible;
|
1064
|
-
}
|
1065
|
-
table .headerSortDown:after, table .headerSortDown:hover:after {
|
1066
|
-
visibility: visible;
|
1067
|
-
filter: alpha(opacity=60);
|
1068
|
-
-moz-opacity: 0.6;
|
1069
|
-
opacity: 0.6;
|
1070
|
-
}
|
1071
|
-
table .headerSortUp:after {
|
1072
|
-
border-bottom: none;
|
1073
|
-
border-left: 4px solid transparent;
|
1074
|
-
border-right: 4px solid transparent;
|
1075
|
-
border-top: 4px solid #000000;
|
1076
|
-
visibility: visible;
|
1077
|
-
-webkit-box-shadow: none;
|
1078
|
-
-moz-box-shadow: none;
|
1079
|
-
box-shadow: none;
|
1080
|
-
filter: alpha(opacity=60);
|
1081
|
-
-moz-opacity: 0.6;
|
1082
|
-
opacity: 0.6;
|
1083
|
-
}
|
1084
|
-
i {
|
1085
|
-
background-image: url(docs/assets/img/glyphicons-halflings-sprite.png);
|
1086
|
-
background-position: 0 0;
|
1110
|
+
.icon {
|
1111
|
+
background-image: url(../img/glyphicons-halflings.png);
|
1112
|
+
background-position: 14px 14px;
|
1087
1113
|
background-repeat: no-repeat;
|
1088
1114
|
display: inline-block;
|
1089
1115
|
vertical-align: text-top;
|
1090
1116
|
width: 14px;
|
1091
1117
|
height: 14px;
|
1118
|
+
*margin-right: .3em;
|
1119
|
+
}
|
1120
|
+
.icon:last-child {
|
1121
|
+
*margin-left: 0;
|
1092
1122
|
}
|
1093
|
-
.
|
1123
|
+
.icon.white {
|
1124
|
+
background-image: url(../img/glyphicons-halflings-white.png);
|
1125
|
+
}
|
1126
|
+
.icon.glass {
|
1094
1127
|
background-position: 0 0;
|
1095
1128
|
}
|
1096
|
-
.music {
|
1129
|
+
.icon.music {
|
1097
1130
|
background-position: -24px 0;
|
1098
1131
|
}
|
1099
|
-
.search {
|
1132
|
+
.icon.search {
|
1100
1133
|
background-position: -48px 0;
|
1101
1134
|
}
|
1102
|
-
.envelope {
|
1135
|
+
.icon.envelope {
|
1103
1136
|
background-position: -72px 0;
|
1104
1137
|
}
|
1105
|
-
.heart {
|
1138
|
+
.icon.heart {
|
1106
1139
|
background-position: -96px 0;
|
1107
1140
|
}
|
1108
|
-
.star {
|
1141
|
+
.icon.star {
|
1109
1142
|
background-position: -120px 0;
|
1110
1143
|
}
|
1111
|
-
.star-empty {
|
1144
|
+
.icon.star-empty {
|
1112
1145
|
background-position: -144px 0;
|
1113
1146
|
}
|
1114
|
-
.user {
|
1147
|
+
.icon.user {
|
1115
1148
|
background-position: -168px 0;
|
1116
1149
|
}
|
1117
|
-
.film {
|
1150
|
+
.icon.film {
|
1118
1151
|
background-position: -192px 0;
|
1119
1152
|
}
|
1120
|
-
.th-large {
|
1153
|
+
.icon.th-large {
|
1121
1154
|
background-position: -216px 0;
|
1122
1155
|
}
|
1123
|
-
.th {
|
1156
|
+
.icon.th {
|
1124
1157
|
background-position: -240px 0;
|
1125
1158
|
}
|
1126
|
-
.th-list {
|
1159
|
+
.icon.th-list {
|
1127
1160
|
background-position: -264px 0;
|
1128
1161
|
}
|
1129
|
-
.ok {
|
1162
|
+
.icon.ok {
|
1130
1163
|
background-position: -288px 0;
|
1131
1164
|
}
|
1132
|
-
.remove {
|
1165
|
+
.icon.remove {
|
1133
1166
|
background-position: -312px 0;
|
1134
1167
|
}
|
1135
|
-
.zoom-in {
|
1168
|
+
.icon.zoom-in {
|
1136
1169
|
background-position: -336px 0;
|
1137
1170
|
}
|
1138
|
-
.zoom-out {
|
1171
|
+
.icon.zoom-out {
|
1139
1172
|
background-position: -360px 0;
|
1140
1173
|
}
|
1141
|
-
.off {
|
1174
|
+
.icon.off {
|
1142
1175
|
background-position: -384px 0;
|
1143
1176
|
}
|
1144
|
-
.signal {
|
1177
|
+
.icon.signal {
|
1145
1178
|
background-position: -408px 0;
|
1146
1179
|
}
|
1147
|
-
.cog {
|
1180
|
+
.icon.cog {
|
1148
1181
|
background-position: -432px 0;
|
1149
1182
|
}
|
1150
|
-
.trash {
|
1183
|
+
.icon.trash {
|
1151
1184
|
background-position: -456px 0;
|
1152
1185
|
}
|
1153
|
-
.home {
|
1186
|
+
.icon.home {
|
1154
1187
|
background-position: 0 -24px;
|
1155
1188
|
}
|
1156
|
-
.file {
|
1189
|
+
.icon.file {
|
1157
1190
|
background-position: -24px -24px;
|
1158
1191
|
}
|
1159
|
-
.time {
|
1192
|
+
.icon.time {
|
1160
1193
|
background-position: -48px -24px;
|
1161
1194
|
}
|
1162
|
-
.road {
|
1195
|
+
.icon.road {
|
1163
1196
|
background-position: -72px -24px;
|
1164
1197
|
}
|
1165
|
-
.download-alt {
|
1198
|
+
.icon.download-alt {
|
1166
1199
|
background-position: -96px -24px;
|
1167
1200
|
}
|
1168
|
-
.download {
|
1201
|
+
.icon.download {
|
1169
1202
|
background-position: -120px -24px;
|
1170
1203
|
}
|
1171
|
-
.upload {
|
1204
|
+
.icon.upload {
|
1172
1205
|
background-position: -144px -24px;
|
1173
1206
|
}
|
1174
|
-
.inbox {
|
1207
|
+
.icon.inbox {
|
1175
1208
|
background-position: -168px -24px;
|
1176
1209
|
}
|
1177
|
-
.play-circle {
|
1210
|
+
.icon.play-circle {
|
1178
1211
|
background-position: -192px -24px;
|
1179
1212
|
}
|
1180
|
-
.repeat {
|
1213
|
+
.icon.repeat {
|
1181
1214
|
background-position: -216px -24px;
|
1182
1215
|
}
|
1183
|
-
.refresh {
|
1216
|
+
.icon.refresh {
|
1184
1217
|
background-position: -240px -24px;
|
1185
1218
|
}
|
1186
|
-
.
|
1219
|
+
.icon.list-alt {
|
1187
1220
|
background-position: -264px -24px;
|
1188
1221
|
}
|
1189
|
-
.lock {
|
1190
|
-
background-position: -
|
1222
|
+
.icon.lock {
|
1223
|
+
background-position: -287px -24px;
|
1191
1224
|
}
|
1192
|
-
.flag {
|
1225
|
+
.icon.flag {
|
1193
1226
|
background-position: -312px -24px;
|
1194
1227
|
}
|
1195
|
-
.headphones {
|
1228
|
+
.icon.headphones {
|
1196
1229
|
background-position: -336px -24px;
|
1197
1230
|
}
|
1198
|
-
.volume-off {
|
1231
|
+
.icon.volume-off {
|
1199
1232
|
background-position: -360px -24px;
|
1200
1233
|
}
|
1201
|
-
.volume-down {
|
1234
|
+
.icon.volume-down {
|
1202
1235
|
background-position: -384px -24px;
|
1203
1236
|
}
|
1204
|
-
.volume-up {
|
1237
|
+
.icon.volume-up {
|
1205
1238
|
background-position: -408px -24px;
|
1206
1239
|
}
|
1207
|
-
.qrcode {
|
1240
|
+
.icon.qrcode {
|
1208
1241
|
background-position: -432px -24px;
|
1209
1242
|
}
|
1210
|
-
.barcode {
|
1243
|
+
.icon.barcode {
|
1211
1244
|
background-position: -456px -24px;
|
1212
1245
|
}
|
1213
|
-
.tag {
|
1246
|
+
.icon.tag {
|
1214
1247
|
background-position: 0 -48px;
|
1215
1248
|
}
|
1216
|
-
.tags {
|
1217
|
-
background-position: -
|
1249
|
+
.icon.tags {
|
1250
|
+
background-position: -25px -48px;
|
1218
1251
|
}
|
1219
|
-
.book {
|
1252
|
+
.icon.book {
|
1220
1253
|
background-position: -48px -48px;
|
1221
1254
|
}
|
1222
|
-
.bookmark {
|
1255
|
+
.icon.bookmark {
|
1223
1256
|
background-position: -72px -48px;
|
1224
1257
|
}
|
1225
|
-
.print {
|
1258
|
+
.icon.print {
|
1226
1259
|
background-position: -96px -48px;
|
1227
1260
|
}
|
1228
|
-
.camera {
|
1261
|
+
.icon.camera {
|
1229
1262
|
background-position: -120px -48px;
|
1230
1263
|
}
|
1231
|
-
.font {
|
1264
|
+
.icon.font {
|
1232
1265
|
background-position: -144px -48px;
|
1233
1266
|
}
|
1234
|
-
.bold {
|
1235
|
-
background-position: -
|
1267
|
+
.icon.bold {
|
1268
|
+
background-position: -167px -48px;
|
1236
1269
|
}
|
1237
|
-
.italic {
|
1270
|
+
.icon.italic {
|
1238
1271
|
background-position: -192px -48px;
|
1239
1272
|
}
|
1240
|
-
.text-height {
|
1273
|
+
.icon.text-height {
|
1241
1274
|
background-position: -216px -48px;
|
1242
1275
|
}
|
1243
|
-
.text-width {
|
1276
|
+
.icon.text-width {
|
1244
1277
|
background-position: -240px -48px;
|
1245
1278
|
}
|
1246
|
-
.align-left {
|
1279
|
+
.icon.align-left {
|
1247
1280
|
background-position: -264px -48px;
|
1248
1281
|
}
|
1249
|
-
.align-center {
|
1282
|
+
.icon.align-center {
|
1250
1283
|
background-position: -288px -48px;
|
1251
1284
|
}
|
1252
|
-
.align-right {
|
1285
|
+
.icon.align-right {
|
1253
1286
|
background-position: -312px -48px;
|
1254
1287
|
}
|
1255
|
-
.align-justify {
|
1288
|
+
.icon.align-justify {
|
1256
1289
|
background-position: -336px -48px;
|
1257
1290
|
}
|
1258
|
-
.list {
|
1291
|
+
.icon.list {
|
1259
1292
|
background-position: -360px -48px;
|
1260
1293
|
}
|
1261
|
-
.indent-left {
|
1294
|
+
.icon.indent-left {
|
1262
1295
|
background-position: -384px -48px;
|
1263
1296
|
}
|
1264
|
-
.indent-right {
|
1297
|
+
.icon.indent-right {
|
1265
1298
|
background-position: -408px -48px;
|
1266
1299
|
}
|
1267
|
-
.facetime-video {
|
1300
|
+
.icon.facetime-video {
|
1268
1301
|
background-position: -432px -48px;
|
1269
1302
|
}
|
1270
|
-
.picture {
|
1303
|
+
.icon.picture {
|
1271
1304
|
background-position: -456px -48px;
|
1272
1305
|
}
|
1273
|
-
.pencil {
|
1306
|
+
.icon.pencil {
|
1274
1307
|
background-position: 0 -72px;
|
1275
1308
|
}
|
1276
|
-
.map-marker {
|
1309
|
+
.icon.map-marker {
|
1277
1310
|
background-position: -24px -72px;
|
1278
1311
|
}
|
1279
|
-
.adjust {
|
1312
|
+
.icon.adjust {
|
1280
1313
|
background-position: -48px -72px;
|
1281
1314
|
}
|
1282
|
-
.tint {
|
1315
|
+
.icon.tint {
|
1283
1316
|
background-position: -72px -72px;
|
1284
1317
|
}
|
1285
|
-
.edit {
|
1318
|
+
.icon.edit {
|
1286
1319
|
background-position: -96px -72px;
|
1287
1320
|
}
|
1288
|
-
.share {
|
1321
|
+
.icon.share {
|
1289
1322
|
background-position: -120px -72px;
|
1290
1323
|
}
|
1291
|
-
.check {
|
1324
|
+
.icon.check {
|
1292
1325
|
background-position: -144px -72px;
|
1293
1326
|
}
|
1294
|
-
.move {
|
1327
|
+
.icon.move {
|
1295
1328
|
background-position: -168px -72px;
|
1296
1329
|
}
|
1297
|
-
.step-backward {
|
1330
|
+
.icon.step-backward {
|
1298
1331
|
background-position: -192px -72px;
|
1299
1332
|
}
|
1300
|
-
.fast-backward {
|
1333
|
+
.icon.fast-backward {
|
1301
1334
|
background-position: -216px -72px;
|
1302
1335
|
}
|
1303
|
-
.backward {
|
1336
|
+
.icon.backward {
|
1304
1337
|
background-position: -240px -72px;
|
1305
1338
|
}
|
1306
|
-
.play {
|
1339
|
+
.icon.play {
|
1307
1340
|
background-position: -264px -72px;
|
1308
1341
|
}
|
1309
|
-
.pause {
|
1342
|
+
.icon.pause {
|
1310
1343
|
background-position: -288px -72px;
|
1311
1344
|
}
|
1312
|
-
.stop {
|
1345
|
+
.icon.stop {
|
1313
1346
|
background-position: -312px -72px;
|
1314
1347
|
}
|
1315
|
-
.forward {
|
1348
|
+
.icon.forward {
|
1316
1349
|
background-position: -336px -72px;
|
1317
1350
|
}
|
1318
|
-
.fast-forward {
|
1351
|
+
.icon.fast-forward {
|
1319
1352
|
background-position: -360px -72px;
|
1320
1353
|
}
|
1321
|
-
.step-forward {
|
1354
|
+
.icon.step-forward {
|
1322
1355
|
background-position: -384px -72px;
|
1323
1356
|
}
|
1324
|
-
.eject {
|
1357
|
+
.icon.eject {
|
1325
1358
|
background-position: -408px -72px;
|
1326
1359
|
}
|
1327
|
-
.chevron-left {
|
1360
|
+
.icon.chevron-left {
|
1328
1361
|
background-position: -432px -72px;
|
1329
1362
|
}
|
1330
|
-
.chevron-right {
|
1363
|
+
.icon.chevron-right {
|
1331
1364
|
background-position: -456px -72px;
|
1332
1365
|
}
|
1333
|
-
.
|
1366
|
+
.icon.plus-sign {
|
1367
|
+
background-position: 0 -96px;
|
1368
|
+
}
|
1369
|
+
.icon.minus-sign {
|
1370
|
+
background-position: -24px -96px;
|
1371
|
+
}
|
1372
|
+
.icon.remove-sign {
|
1373
|
+
background-position: -48px -96px;
|
1374
|
+
}
|
1375
|
+
.icon.ok-sign {
|
1376
|
+
background-position: -72px -96px;
|
1377
|
+
}
|
1378
|
+
.icon.question-sign {
|
1379
|
+
background-position: -96px -96px;
|
1380
|
+
}
|
1381
|
+
.icon.info-sign {
|
1382
|
+
background-position: -120px -96px;
|
1383
|
+
}
|
1384
|
+
.icon.screenshot {
|
1385
|
+
background-position: -144px -96px;
|
1386
|
+
}
|
1387
|
+
.icon.remove-circle {
|
1388
|
+
background-position: -168px -96px;
|
1389
|
+
}
|
1390
|
+
.icon.ok-circle {
|
1391
|
+
background-position: -192px -96px;
|
1392
|
+
}
|
1393
|
+
.icon.ban-circle {
|
1394
|
+
background-position: -216px -96px;
|
1395
|
+
}
|
1396
|
+
.icon.arrow-left {
|
1334
1397
|
background-position: -240px -96px;
|
1335
1398
|
}
|
1336
|
-
.arrow-right {
|
1399
|
+
.icon.arrow-right {
|
1337
1400
|
background-position: -264px -96px;
|
1338
1401
|
}
|
1339
|
-
.arrow-up {
|
1340
|
-
background-position: -
|
1402
|
+
.icon.arrow-up {
|
1403
|
+
background-position: -289px -96px;
|
1341
1404
|
}
|
1342
|
-
.arrow-down {
|
1405
|
+
.icon.arrow-down {
|
1343
1406
|
background-position: -312px -96px;
|
1344
1407
|
}
|
1345
|
-
.share-alt {
|
1408
|
+
.icon.share-alt {
|
1346
1409
|
background-position: -336px -96px;
|
1347
1410
|
}
|
1348
|
-
.resize-full {
|
1411
|
+
.icon.resize-full {
|
1349
1412
|
background-position: -360px -96px;
|
1350
1413
|
}
|
1351
|
-
.resize-small {
|
1414
|
+
.icon.resize-small {
|
1352
1415
|
background-position: -384px -96px;
|
1353
1416
|
}
|
1354
|
-
.plus {
|
1417
|
+
.icon.plus {
|
1355
1418
|
background-position: -408px -96px;
|
1356
1419
|
}
|
1357
|
-
.minus {
|
1358
|
-
background-position: -
|
1420
|
+
.icon.minus {
|
1421
|
+
background-position: -433px -96px;
|
1359
1422
|
}
|
1360
|
-
.asterisk {
|
1423
|
+
.icon.asterisk {
|
1361
1424
|
background-position: -456px -96px;
|
1362
1425
|
}
|
1426
|
+
.icon.exclamation-sign {
|
1427
|
+
background-position: 0 -120px;
|
1428
|
+
}
|
1429
|
+
.icon.gift {
|
1430
|
+
background-position: -24px -120px;
|
1431
|
+
}
|
1432
|
+
.icon.leaf {
|
1433
|
+
background-position: -48px -120px;
|
1434
|
+
}
|
1435
|
+
.icon.fire {
|
1436
|
+
background-position: -72px -120px;
|
1437
|
+
}
|
1438
|
+
.icon.eye-open {
|
1439
|
+
background-position: -96px -120px;
|
1440
|
+
}
|
1441
|
+
.icon.eye-close {
|
1442
|
+
background-position: -120px -120px;
|
1443
|
+
}
|
1444
|
+
.icon.warning-sign {
|
1445
|
+
background-position: -144px -120px;
|
1446
|
+
}
|
1447
|
+
.icon.plane {
|
1448
|
+
background-position: -168px -120px;
|
1449
|
+
}
|
1450
|
+
.icon.calendar {
|
1451
|
+
background-position: -192px -120px;
|
1452
|
+
}
|
1453
|
+
.icon.random {
|
1454
|
+
background-position: -216px -120px;
|
1455
|
+
}
|
1456
|
+
.icon.comment {
|
1457
|
+
background-position: -240px -120px;
|
1458
|
+
}
|
1459
|
+
.icon.magnet {
|
1460
|
+
background-position: -264px -120px;
|
1461
|
+
}
|
1462
|
+
.icon.chevron-up {
|
1463
|
+
background-position: -288px -120px;
|
1464
|
+
}
|
1465
|
+
.icon.chevron-down {
|
1466
|
+
background-position: -313px -119px;
|
1467
|
+
}
|
1468
|
+
.icon.retweet {
|
1469
|
+
background-position: -336px -120px;
|
1470
|
+
}
|
1471
|
+
.icon.shopping-cart {
|
1472
|
+
background-position: -360px -120px;
|
1473
|
+
}
|
1474
|
+
.icon.folder-close {
|
1475
|
+
background-position: -384px -120px;
|
1476
|
+
}
|
1477
|
+
.icon.folder-open {
|
1478
|
+
background-position: -408px -120px;
|
1479
|
+
}
|
1480
|
+
.icon.resize-vertical {
|
1481
|
+
background-position: -432px -119px;
|
1482
|
+
}
|
1483
|
+
.icon.resize-horizontal {
|
1484
|
+
background-position: -456px -118px;
|
1485
|
+
}
|
1363
1486
|
.dropdown {
|
1364
1487
|
position: relative;
|
1365
1488
|
}
|
1489
|
+
.dropdown-toggle {
|
1490
|
+
*margin-bottom: -3px;
|
1491
|
+
}
|
1492
|
+
.dropdown-toggle:active, .open .dropdown-toggle {
|
1493
|
+
outline: 0;
|
1494
|
+
}
|
1366
1495
|
.caret {
|
1367
1496
|
display: inline-block;
|
1368
1497
|
width: 0;
|
1369
1498
|
height: 0;
|
1370
1499
|
text-indent: -99999px;
|
1500
|
+
*text-indent: 0;
|
1371
1501
|
vertical-align: top;
|
1372
1502
|
border-left: 4px solid transparent;
|
1373
1503
|
border-right: 4px solid transparent;
|
1374
1504
|
border-top: 4px solid #000000;
|
1375
|
-
filter: alpha(opacity=30);
|
1376
|
-
-moz-opacity: 0.3;
|
1377
1505
|
opacity: 0.3;
|
1506
|
+
filter: alpha(opacity=30);
|
1378
1507
|
content: "\2193";
|
1379
1508
|
}
|
1380
1509
|
.dropdown .caret {
|
1381
1510
|
margin-top: 8px;
|
1382
1511
|
margin-left: 2px;
|
1383
|
-
*margin-top: 7px;
|
1384
1512
|
}
|
1385
1513
|
.dropdown:hover .caret, .open.dropdown .caret {
|
1386
|
-
filter: alpha(opacity=100);
|
1387
|
-
-moz-opacity: 1;
|
1388
1514
|
opacity: 1;
|
1515
|
+
filter: alpha(opacity=100);
|
1389
1516
|
}
|
1390
1517
|
.dropdown-menu {
|
1391
1518
|
position: absolute;
|
1392
1519
|
top: 100%;
|
1520
|
+
left: 0;
|
1393
1521
|
z-index: 1000;
|
1394
1522
|
float: left;
|
1395
1523
|
display: none;
|
@@ -1413,16 +1541,22 @@ i {
|
|
1413
1541
|
-webkit-background-clip: padding-box;
|
1414
1542
|
-moz-background-clip: padding;
|
1415
1543
|
background-clip: padding-box;
|
1416
|
-
zoom: 1;
|
1417
1544
|
*border-right-width: 2px;
|
1418
1545
|
*border-bottom-width: 2px;
|
1419
1546
|
}
|
1547
|
+
.dropdown-menu.bottom-up {
|
1548
|
+
top: auto;
|
1549
|
+
bottom: 100%;
|
1550
|
+
margin-bottom: 2px;
|
1551
|
+
}
|
1420
1552
|
.dropdown-menu .divider {
|
1421
1553
|
height: 1px;
|
1422
1554
|
margin: 5px 1px;
|
1423
1555
|
overflow: hidden;
|
1424
1556
|
background-color: #e5e5e5;
|
1425
1557
|
border-bottom: 1px solid #ffffff;
|
1558
|
+
*width: 100%;
|
1559
|
+
*margin: -5px 0 5px;
|
1426
1560
|
}
|
1427
1561
|
.dropdown-menu a {
|
1428
1562
|
display: block;
|
@@ -1438,6 +1572,9 @@ i {
|
|
1438
1572
|
text-decoration: none;
|
1439
1573
|
background-color: #0088cc;
|
1440
1574
|
}
|
1575
|
+
.dropdown.open {
|
1576
|
+
*z-index: 1000;
|
1577
|
+
}
|
1441
1578
|
.dropdown.open .dropdown-toggle {
|
1442
1579
|
color: #ffffff;
|
1443
1580
|
background: #ccc;
|
@@ -1498,1167 +1635,1318 @@ i {
|
|
1498
1635
|
float: right;
|
1499
1636
|
font-size: 20px;
|
1500
1637
|
font-weight: bold;
|
1501
|
-
line-height:
|
1638
|
+
line-height: 18px;
|
1502
1639
|
color: #000000;
|
1503
1640
|
text-shadow: 0 1px 0 #ffffff;
|
1504
|
-
filter: alpha(opacity=20);
|
1505
|
-
-moz-opacity: 0.2;
|
1506
1641
|
opacity: 0.2;
|
1642
|
+
filter: alpha(opacity=20);
|
1507
1643
|
}
|
1508
1644
|
.close:hover {
|
1509
1645
|
color: #000000;
|
1510
1646
|
text-decoration: none;
|
1511
|
-
filter: alpha(opacity=40);
|
1512
|
-
-moz-opacity: 0.4;
|
1513
1647
|
opacity: 0.4;
|
1648
|
+
filter: alpha(opacity=40);
|
1514
1649
|
cursor: pointer;
|
1515
1650
|
}
|
1516
|
-
.
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1651
|
+
.btn.primary,
|
1652
|
+
.btn.primary:hover,
|
1653
|
+
.btn.danger,
|
1654
|
+
.btn.danger:hover,
|
1655
|
+
.btn.success,
|
1656
|
+
.btn.success:hover,
|
1657
|
+
.btn.info,
|
1658
|
+
.btn.info:hover {
|
1659
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1660
|
+
color: #ffffff;
|
1520
1661
|
}
|
1521
|
-
.
|
1522
|
-
|
1662
|
+
.btn.primary.active,
|
1663
|
+
.btn.danger.active,
|
1664
|
+
.btn.success.active,
|
1665
|
+
.btn.info.active {
|
1666
|
+
color: rgba(255, 255, 255, 0.75);
|
1523
1667
|
}
|
1524
|
-
.
|
1525
|
-
|
1526
|
-
background-
|
1668
|
+
.btn.primary {
|
1669
|
+
background-color: #006dcc;
|
1670
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
1671
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
1672
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
1673
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
1674
|
+
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
1675
|
+
background-image: linear-gradient(top, #0088cc, #0044cc);
|
1676
|
+
background-repeat: repeat-x;
|
1677
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
1678
|
+
border-color: #0044cc #0044cc #002a80;
|
1679
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1680
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1527
1681
|
}
|
1528
|
-
.
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1682
|
+
.btn.primary:hover,
|
1683
|
+
.btn.primary:active,
|
1684
|
+
.btn.primary.active,
|
1685
|
+
.btn.primary.disabled,
|
1686
|
+
.btn.primary[disabled] {
|
1687
|
+
background-color: #0044cc;
|
1532
1688
|
}
|
1533
|
-
.
|
1534
|
-
|
1535
|
-
padding: 3px 15px;
|
1536
|
-
margin-left: -15px;
|
1537
|
-
margin-right: -15px;
|
1538
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1689
|
+
.btn.primary:active, .btn.primary.active {
|
1690
|
+
background-color: #003399 \9;
|
1539
1691
|
}
|
1540
|
-
.
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1692
|
+
.btn.danger {
|
1693
|
+
background-color: #da4f49;
|
1694
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
1695
|
+
background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
|
1696
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
|
1697
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
|
1698
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
|
1699
|
+
background-image: linear-gradient(top, #ee5f5b, #bd362f);
|
1700
|
+
background-repeat: repeat-x;
|
1701
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
|
1702
|
+
border-color: #bd362f #bd362f #802420;
|
1703
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1704
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1546
1705
|
}
|
1547
|
-
.
|
1548
|
-
|
1706
|
+
.btn.danger:hover,
|
1707
|
+
.btn.danger:active,
|
1708
|
+
.btn.danger.active,
|
1709
|
+
.btn.danger.disabled,
|
1710
|
+
.btn.danger[disabled] {
|
1711
|
+
background-color: #bd362f;
|
1549
1712
|
}
|
1550
|
-
.
|
1551
|
-
color: #
|
1552
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
1553
|
-
background-color: #0088cc;
|
1713
|
+
.btn.danger:active, .btn.danger.active {
|
1714
|
+
background-color: #942a25 \9;
|
1554
1715
|
}
|
1555
|
-
.
|
1556
|
-
|
1716
|
+
.btn.success {
|
1717
|
+
background-color: #5bb75b;
|
1718
|
+
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
1719
|
+
background-image: -ms-linear-gradient(top, #62c462, #51a351);
|
1720
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
|
1721
|
+
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
|
1722
|
+
background-image: -o-linear-gradient(top, #62c462, #51a351);
|
1723
|
+
background-image: linear-gradient(top, #62c462, #51a351);
|
1724
|
+
background-repeat: repeat-x;
|
1725
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
|
1726
|
+
border-color: #51a351 #51a351 #387038;
|
1727
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1728
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1557
1729
|
}
|
1558
|
-
.
|
1559
|
-
.
|
1560
|
-
.
|
1561
|
-
.
|
1562
|
-
|
1563
|
-
|
1730
|
+
.btn.success:hover,
|
1731
|
+
.btn.success:active,
|
1732
|
+
.btn.success.active,
|
1733
|
+
.btn.success.disabled,
|
1734
|
+
.btn.success[disabled] {
|
1735
|
+
background-color: #51a351;
|
1564
1736
|
}
|
1565
|
-
.
|
1566
|
-
|
1737
|
+
.btn.success:active, .btn.success.active {
|
1738
|
+
background-color: #408140 \9;
|
1567
1739
|
}
|
1568
|
-
.
|
1569
|
-
|
1740
|
+
.btn.info {
|
1741
|
+
background-color: #49afcd;
|
1742
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
1743
|
+
background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
|
1744
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
|
1745
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
|
1746
|
+
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
|
1747
|
+
background-image: linear-gradient(top, #5bc0de, #2f96b4);
|
1748
|
+
background-repeat: repeat-x;
|
1749
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
|
1750
|
+
border-color: #2f96b4 #2f96b4 #1f6377;
|
1751
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1752
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1570
1753
|
}
|
1571
|
-
.
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1754
|
+
.btn.info:hover,
|
1755
|
+
.btn.info:active,
|
1756
|
+
.btn.info.active,
|
1757
|
+
.btn.info.disabled,
|
1758
|
+
.btn.info[disabled] {
|
1759
|
+
background-color: #2f96b4;
|
1576
1760
|
}
|
1577
|
-
.
|
1578
|
-
|
1761
|
+
.btn.info:active, .btn.info.active {
|
1762
|
+
background-color: #24748c \9;
|
1579
1763
|
}
|
1580
|
-
.
|
1581
|
-
|
1764
|
+
.btn {
|
1765
|
+
display: inline-block;
|
1766
|
+
padding: 4px 10px 4px;
|
1767
|
+
font-size: 13px;
|
1768
|
+
line-height: 18px;
|
1769
|
+
color: #333333;
|
1770
|
+
text-align: center;
|
1771
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1772
|
+
background-color: #fafafa;
|
1773
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
1774
|
+
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1775
|
+
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
1776
|
+
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1777
|
+
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1778
|
+
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1779
|
+
background-repeat: no-repeat;
|
1780
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
1781
|
+
border: 1px solid #ccc;
|
1782
|
+
border-bottom-color: #bbb;
|
1783
|
+
-webkit-border-radius: 4px;
|
1784
|
+
-moz-border-radius: 4px;
|
1785
|
+
border-radius: 4px;
|
1786
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1787
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1788
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1789
|
+
cursor: pointer;
|
1790
|
+
*margin-left: .3em;
|
1582
1791
|
}
|
1583
|
-
.
|
1584
|
-
|
1585
|
-
padding-bottom: 9px;
|
1586
|
-
border: 1px solid transparent;
|
1587
|
-
-webkit-border-radius: 4px 4px 0 0;
|
1588
|
-
-moz-border-radius: 4px 4px 0 0;
|
1589
|
-
border-radius: 4px 4px 0 0;
|
1792
|
+
.btn:first-child {
|
1793
|
+
*margin-left: 0;
|
1590
1794
|
}
|
1591
|
-
.
|
1592
|
-
|
1795
|
+
.btn:hover {
|
1796
|
+
color: #333333;
|
1797
|
+
text-decoration: none;
|
1798
|
+
background-color: #e6e6e6;
|
1799
|
+
background-position: 0 -15px;
|
1800
|
+
-webkit-transition: background-position 0.1s linear;
|
1801
|
+
-moz-transition: background-position 0.1s linear;
|
1802
|
+
-ms-transition: background-position 0.1s linear;
|
1803
|
+
-o-transition: background-position 0.1s linear;
|
1804
|
+
transition: background-position 0.1s linear;
|
1593
1805
|
}
|
1594
|
-
.
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1806
|
+
.btn:focus {
|
1807
|
+
outline: thin dotted;
|
1808
|
+
outline: 5px auto -webkit-focus-ring-color;
|
1809
|
+
outline-offset: -2px;
|
1810
|
+
}
|
1811
|
+
.btn.active, .btn:active {
|
1812
|
+
background-image: none;
|
1813
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1814
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1815
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1816
|
+
background-color: #e6e6e6;
|
1817
|
+
background-color: #d9d9d9 \9;
|
1818
|
+
color: rgba(0, 0, 0, 0.5);
|
1819
|
+
outline: 0;
|
1820
|
+
}
|
1821
|
+
.btn.disabled, .btn[disabled] {
|
1599
1822
|
cursor: default;
|
1823
|
+
background-image: none;
|
1824
|
+
background-color: #e6e6e6;
|
1825
|
+
opacity: 0.65;
|
1826
|
+
filter: alpha(opacity=65);
|
1827
|
+
-webkit-box-shadow: none;
|
1828
|
+
-moz-box-shadow: none;
|
1829
|
+
box-shadow: none;
|
1600
1830
|
}
|
1601
|
-
.
|
1602
|
-
padding
|
1603
|
-
|
1604
|
-
|
1605
|
-
margin-bottom: 2px;
|
1831
|
+
.btn.large {
|
1832
|
+
padding: 9px 14px;
|
1833
|
+
font-size: 15px;
|
1834
|
+
line-height: normal;
|
1606
1835
|
-webkit-border-radius: 5px;
|
1607
1836
|
-moz-border-radius: 5px;
|
1608
1837
|
border-radius: 5px;
|
1609
1838
|
}
|
1610
|
-
.
|
1611
|
-
color: #ffffff;
|
1612
|
-
background-color: #0088cc;
|
1613
|
-
}
|
1614
|
-
.nav.stacked > li {
|
1615
|
-
float: none;
|
1616
|
-
}
|
1617
|
-
.nav.stacked > li > a {
|
1618
|
-
margin-right: 0;
|
1619
|
-
}
|
1620
|
-
.tabs.stacked {
|
1621
|
-
border-bottom: 0;
|
1622
|
-
}
|
1623
|
-
.tabs.stacked > li > a {
|
1624
|
-
border: 1px solid #ddd;
|
1625
|
-
-webkit-border-radius: 0;
|
1626
|
-
-moz-border-radius: 0;
|
1627
|
-
border-radius: 0;
|
1628
|
-
}
|
1629
|
-
.tabs.stacked > li:first-child > a {
|
1630
|
-
-webkit-border-radius: 4px 4px 0 0;
|
1631
|
-
-moz-border-radius: 4px 4px 0 0;
|
1632
|
-
border-radius: 4px 4px 0 0;
|
1633
|
-
}
|
1634
|
-
.tabs.stacked > li:last-child > a {
|
1635
|
-
-webkit-border-radius: 0 0 4px 4px;
|
1636
|
-
-moz-border-radius: 0 0 4px 4px;
|
1637
|
-
border-radius: 0 0 4px 4px;
|
1638
|
-
}
|
1639
|
-
.tabs.stacked > li > a:hover {
|
1640
|
-
border-color: #ddd;
|
1641
|
-
z-index: 2;
|
1642
|
-
}
|
1643
|
-
.pills.stacked > li > a {
|
1644
|
-
margin-bottom: 3px;
|
1645
|
-
}
|
1646
|
-
.pills.stacked > li:last-child > a {
|
1647
|
-
margin-bottom: 1px;
|
1648
|
-
}
|
1649
|
-
.pills .dropdown-menu, .tabs .dropdown-menu {
|
1839
|
+
.btn.large .icon {
|
1650
1840
|
margin-top: 1px;
|
1651
|
-
border-width: 1px;
|
1652
|
-
}
|
1653
|
-
.pills .dropdown-menu {
|
1654
|
-
-webkit-border-radius: 4px;
|
1655
|
-
-moz-border-radius: 4px;
|
1656
|
-
border-radius: 4px;
|
1657
|
-
}
|
1658
|
-
.tabs .dropdown-toggle .caret, .pills .dropdown-toggle .caret {
|
1659
|
-
border-top-color: #0088cc;
|
1660
|
-
margin-top: 6px;
|
1661
1841
|
}
|
1662
|
-
.
|
1663
|
-
|
1842
|
+
.btn.small {
|
1843
|
+
padding: 5px 9px;
|
1844
|
+
font-size: 11px;
|
1845
|
+
line-height: 16px;
|
1664
1846
|
}
|
1665
|
-
.
|
1666
|
-
|
1847
|
+
.btn.small .icon {
|
1848
|
+
margin-top: -1px;
|
1667
1849
|
}
|
1668
|
-
.
|
1669
|
-
|
1670
|
-
|
1850
|
+
button.btn, input[type="submit"].btn {
|
1851
|
+
*padding-top: 2px;
|
1852
|
+
*padding-bottom: 2px;
|
1671
1853
|
}
|
1672
|
-
.
|
1673
|
-
|
1674
|
-
|
1675
|
-
border-color: #999999;
|
1854
|
+
button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner {
|
1855
|
+
padding: 0;
|
1856
|
+
border: 0;
|
1676
1857
|
}
|
1677
|
-
.
|
1678
|
-
|
1679
|
-
|
1680
|
-
-moz-opacity: 1;
|
1681
|
-
opacity: 1;
|
1858
|
+
button.btn.large, input[type="submit"].btn.large {
|
1859
|
+
*padding-top: 7px;
|
1860
|
+
*padding-bottom: 7px;
|
1682
1861
|
}
|
1683
|
-
.
|
1684
|
-
|
1862
|
+
button.btn.small, input[type="submit"].btn.small {
|
1863
|
+
*padding-top: 3px;
|
1864
|
+
*padding-bottom: 3px;
|
1685
1865
|
}
|
1686
|
-
.
|
1866
|
+
.btn-group {
|
1867
|
+
position: relative;
|
1687
1868
|
*zoom: 1;
|
1869
|
+
*margin-left: .3em;
|
1688
1870
|
}
|
1689
|
-
.
|
1871
|
+
.btn-group:before, .btn-group:after {
|
1690
1872
|
display: table;
|
1691
1873
|
content: "";
|
1692
1874
|
}
|
1693
|
-
.
|
1875
|
+
.btn-group:after {
|
1694
1876
|
clear: both;
|
1695
1877
|
}
|
1696
|
-
.
|
1697
|
-
|
1698
|
-
}
|
1699
|
-
.tab-content > .tab-pane, .pill-content > .pill-pane {
|
1700
|
-
display: none;
|
1878
|
+
.btn-group:first-child {
|
1879
|
+
*margin-left: 0;
|
1701
1880
|
}
|
1702
|
-
.
|
1703
|
-
|
1881
|
+
.btn-group + .btn-group {
|
1882
|
+
margin-left: 5px;
|
1704
1883
|
}
|
1705
|
-
.
|
1706
|
-
|
1884
|
+
.btn-toolbar {
|
1885
|
+
margin-top: 9px;
|
1886
|
+
margin-bottom: 9px;
|
1707
1887
|
}
|
1708
|
-
.
|
1709
|
-
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
-moz-border-radius: 0 0 4px 4px;
|
1715
|
-
border-radius: 0 0 4px 4px;
|
1716
|
-
}
|
1717
|
-
.tabs-below .tabs > li > a:hover {
|
1718
|
-
border-bottom-color: transparent;
|
1719
|
-
border-top-color: #ddd;
|
1888
|
+
.btn-toolbar .btn-group {
|
1889
|
+
display: inline-block;
|
1890
|
+
*display: inline;
|
1891
|
+
/* IE7 inline-block hack */
|
1892
|
+
|
1893
|
+
*zoom: 1;
|
1720
1894
|
}
|
1721
|
-
.
|
1722
|
-
|
1895
|
+
.btn-group .btn {
|
1896
|
+
position: relative;
|
1897
|
+
float: left;
|
1898
|
+
margin-left: -1px;
|
1899
|
+
-webkit-border-radius: 0;
|
1900
|
+
-moz-border-radius: 0;
|
1901
|
+
border-radius: 0;
|
1723
1902
|
}
|
1724
|
-
.
|
1725
|
-
|
1903
|
+
.btn-group .btn:first-child {
|
1904
|
+
margin-left: 0;
|
1905
|
+
-webkit-border-top-left-radius: 4px;
|
1906
|
+
-moz-border-radius-topleft: 4px;
|
1907
|
+
border-top-left-radius: 4px;
|
1908
|
+
-webkit-border-bottom-left-radius: 4px;
|
1909
|
+
-moz-border-radius-bottomleft: 4px;
|
1910
|
+
border-bottom-left-radius: 4px;
|
1726
1911
|
}
|
1727
|
-
.
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1912
|
+
.btn-group .btn:last-child, .btn-group .dropdown-toggle {
|
1913
|
+
-webkit-border-top-right-radius: 4px;
|
1914
|
+
-moz-border-radius-topright: 4px;
|
1915
|
+
border-top-right-radius: 4px;
|
1916
|
+
-webkit-border-bottom-right-radius: 4px;
|
1917
|
+
-moz-border-radius-bottomright: 4px;
|
1918
|
+
border-bottom-right-radius: 4px;
|
1731
1919
|
}
|
1732
|
-
.
|
1733
|
-
|
1734
|
-
|
1735
|
-
border-
|
1920
|
+
.btn-group .btn.large:first-child {
|
1921
|
+
margin-left: 0;
|
1922
|
+
-webkit-border-top-left-radius: 6px;
|
1923
|
+
-moz-border-radius-topleft: 6px;
|
1924
|
+
border-top-left-radius: 6px;
|
1925
|
+
-webkit-border-bottom-left-radius: 6px;
|
1926
|
+
-moz-border-radius-bottomleft: 6px;
|
1927
|
+
border-bottom-left-radius: 6px;
|
1736
1928
|
}
|
1737
|
-
.
|
1738
|
-
|
1739
|
-
-
|
1740
|
-
-
|
1741
|
-
border-radius:
|
1929
|
+
.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
|
1930
|
+
-webkit-border-top-right-radius: 6px;
|
1931
|
+
-moz-border-radius-topright: 6px;
|
1932
|
+
border-top-right-radius: 6px;
|
1933
|
+
-webkit-border-bottom-right-radius: 6px;
|
1934
|
+
-moz-border-radius-bottomright: 6px;
|
1935
|
+
border-bottom-right-radius: 6px;
|
1742
1936
|
}
|
1743
|
-
.
|
1744
|
-
|
1937
|
+
.btn-group .btn:hover,
|
1938
|
+
.btn-group .btn:focus,
|
1939
|
+
.btn-group .btn:active,
|
1940
|
+
.btn-group .btn.active {
|
1941
|
+
z-index: 2;
|
1745
1942
|
}
|
1746
|
-
.
|
1747
|
-
|
1943
|
+
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
|
1944
|
+
outline: 0;
|
1748
1945
|
}
|
1749
|
-
.
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1946
|
+
.btn-group .dropdown-toggle {
|
1947
|
+
padding-left: 8px;
|
1948
|
+
padding-right: 8px;
|
1949
|
+
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1950
|
+
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1951
|
+
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1952
|
+
*padding-top: 5px;
|
1953
|
+
*padding-bottom: 5px;
|
1753
1954
|
}
|
1754
|
-
.
|
1755
|
-
|
1756
|
-
-webkit-border-radius: 0 4px 4px 0;
|
1757
|
-
-moz-border-radius: 0 4px 4px 0;
|
1758
|
-
border-radius: 0 4px 4px 0;
|
1955
|
+
.btn-group.open {
|
1956
|
+
*z-index: 1000;
|
1759
1957
|
}
|
1760
|
-
.
|
1761
|
-
|
1958
|
+
.btn-group.open .dropdown-menu {
|
1959
|
+
display: block;
|
1960
|
+
margin-top: 1px;
|
1961
|
+
-webkit-border-radius: 5px;
|
1962
|
+
-moz-border-radius: 5px;
|
1963
|
+
border-radius: 5px;
|
1762
1964
|
}
|
1763
|
-
.
|
1764
|
-
|
1965
|
+
.btn-group.open .dropdown-toggle {
|
1966
|
+
background-image: none;
|
1967
|
+
-webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1968
|
+
-moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1969
|
+
box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1765
1970
|
}
|
1766
|
-
.
|
1767
|
-
|
1971
|
+
.btn .caret {
|
1972
|
+
margin-top: 7px;
|
1973
|
+
margin-left: 0;
|
1768
1974
|
}
|
1769
|
-
.
|
1770
|
-
|
1771
|
-
|
1772
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1773
|
-
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1774
|
-
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1775
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1776
|
-
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1777
|
-
background-image: -o-linear-gradient(top, #333333, #222222);
|
1778
|
-
background-image: linear-gradient(top, #333333, #222222);
|
1779
|
-
background-repeat: repeat-x;
|
1780
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1781
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1782
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1783
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1975
|
+
.btn:hover .caret, .open.btn-group .caret {
|
1976
|
+
opacity: 1;
|
1977
|
+
filter: alpha(opacity=100);
|
1784
1978
|
}
|
1785
|
-
.
|
1786
|
-
|
1787
|
-
|
1979
|
+
.primary .caret,
|
1980
|
+
.danger .caret,
|
1981
|
+
.info .caret,
|
1982
|
+
.success .caret {
|
1983
|
+
border-top-color: #ffffff;
|
1984
|
+
opacity: 0.75;
|
1985
|
+
filter: alpha(opacity=75);
|
1788
1986
|
}
|
1789
|
-
.
|
1790
|
-
|
1791
|
-
display: block;
|
1792
|
-
padding: 8px 20px 12px;
|
1793
|
-
margin-left: -20px;
|
1794
|
-
font-size: 20px;
|
1795
|
-
font-weight: 200;
|
1796
|
-
line-height: 1;
|
1797
|
-
color: #ffffff;
|
1987
|
+
.btn.small .caret {
|
1988
|
+
margin-top: 4px;
|
1798
1989
|
}
|
1799
|
-
.
|
1800
|
-
|
1801
|
-
|
1990
|
+
.alert {
|
1991
|
+
padding: 8px 35px 8px 14px;
|
1992
|
+
margin-bottom: 18px;
|
1993
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1994
|
+
background-color: #fcf8e3;
|
1995
|
+
border: 1px solid #fbeed5;
|
1996
|
+
-webkit-border-radius: 4px;
|
1997
|
+
-moz-border-radius: 4px;
|
1998
|
+
border-radius: 4px;
|
1802
1999
|
}
|
1803
|
-
.
|
1804
|
-
color: #
|
1805
|
-
background-color: transparent;
|
2000
|
+
.alert, .alert-heading {
|
2001
|
+
color: #c09853;
|
1806
2002
|
}
|
1807
|
-
.
|
1808
|
-
|
2003
|
+
.alert .close {
|
2004
|
+
position: relative;
|
2005
|
+
top: -2px;
|
2006
|
+
right: -21px;
|
2007
|
+
line-height: 18px;
|
1809
2008
|
}
|
1810
|
-
.
|
1811
|
-
|
2009
|
+
.alert-success {
|
2010
|
+
background-color: #dff0d8;
|
2011
|
+
border-color: #d6e9c6;
|
1812
2012
|
}
|
1813
|
-
.
|
1814
|
-
|
2013
|
+
.alert-success, .alert-success .alert-heading {
|
2014
|
+
color: #468847;
|
1815
2015
|
}
|
1816
|
-
.
|
1817
|
-
|
1818
|
-
|
2016
|
+
.alert-danger, .alert-error {
|
2017
|
+
background-color: #f2dede;
|
2018
|
+
border-color: #eed3d7;
|
1819
2019
|
}
|
1820
|
-
.
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
2020
|
+
.alert-danger,
|
2021
|
+
.alert-error,
|
2022
|
+
.alert-danger .alert-heading,
|
2023
|
+
.alert-error .alert-heading {
|
2024
|
+
color: #b94a48;
|
1825
2025
|
}
|
1826
|
-
.
|
1827
|
-
|
1828
|
-
|
1829
|
-
font-size: 13px;
|
1830
|
-
font-weight: normal;
|
1831
|
-
line-height: 1;
|
1832
|
-
color: #ffffff;
|
1833
|
-
color: rgba(255, 255, 255, 0.75);
|
1834
|
-
background: #444;
|
1835
|
-
background: rgba(255, 255, 255, 0.3);
|
1836
|
-
border: 1px solid #111;
|
1837
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1838
|
-
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1839
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1840
|
-
-webkit-transition: none;
|
1841
|
-
-moz-transition: none;
|
1842
|
-
-ms-transition: none;
|
1843
|
-
-o-transition: none;
|
1844
|
-
transition: none;
|
2026
|
+
.alert-info {
|
2027
|
+
background-color: #d9edf7;
|
2028
|
+
border-color: #bce8f1;
|
1845
2029
|
}
|
1846
|
-
.
|
1847
|
-
color: #
|
2030
|
+
.alert-info, .alert-info .alert-heading {
|
2031
|
+
color: #3a87ad;
|
1848
2032
|
}
|
1849
|
-
.
|
1850
|
-
|
2033
|
+
.alert-block {
|
2034
|
+
padding-top: 14px;
|
2035
|
+
padding-bottom: 14px;
|
1851
2036
|
}
|
1852
|
-
.
|
1853
|
-
|
1854
|
-
background-color: #999999;
|
1855
|
-
background-color: rgba(255, 255, 255, 0.5);
|
2037
|
+
.alert-block > p, .alert-block > ul {
|
2038
|
+
margin-bottom: 0;
|
1856
2039
|
}
|
1857
|
-
.
|
1858
|
-
|
1859
|
-
color: #333333;
|
1860
|
-
text-shadow: 0 1px 0 #ffffff;
|
1861
|
-
background-color: #ffffff;
|
1862
|
-
border: 0;
|
1863
|
-
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1864
|
-
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1865
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1866
|
-
outline: 0;
|
2040
|
+
.alert-block p + p {
|
2041
|
+
margin-top: 5px;
|
1867
2042
|
}
|
1868
|
-
.
|
2043
|
+
.nav {
|
2044
|
+
margin-left: 0;
|
1869
2045
|
margin-bottom: 18px;
|
2046
|
+
list-style: none;
|
1870
2047
|
}
|
1871
|
-
.
|
1872
|
-
padding-left: 20px;
|
1873
|
-
padding-right: 20px;
|
1874
|
-
-webkit-border-radius: 4px;
|
1875
|
-
-moz-border-radius: 4px;
|
1876
|
-
border-radius: 4px;
|
1877
|
-
}
|
1878
|
-
.navbar-fixed {
|
1879
|
-
position: fixed;
|
1880
|
-
top: 0;
|
1881
|
-
right: 0;
|
1882
|
-
left: 0;
|
1883
|
-
z-index: 1030;
|
1884
|
-
}
|
1885
|
-
.navbar .nav {
|
1886
|
-
position: relative;
|
1887
|
-
left: 0;
|
2048
|
+
.nav > li > a {
|
1888
2049
|
display: block;
|
1889
|
-
float: left;
|
1890
|
-
margin: 0 10px 0 0;
|
1891
2050
|
}
|
1892
|
-
.
|
1893
|
-
|
2051
|
+
.nav > li > a:hover {
|
2052
|
+
text-decoration: none;
|
2053
|
+
background-color: #eeeeee;
|
1894
2054
|
}
|
1895
|
-
.
|
2055
|
+
.nav.list {
|
2056
|
+
padding-left: 14px;
|
2057
|
+
padding-right: 14px;
|
2058
|
+
margin-bottom: 0;
|
2059
|
+
}
|
2060
|
+
.nav.list > li > a, .nav.list .nav-header {
|
1896
2061
|
display: block;
|
1897
|
-
|
2062
|
+
padding: 3px 15px;
|
2063
|
+
margin-left: -15px;
|
2064
|
+
margin-right: -15px;
|
2065
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1898
2066
|
}
|
1899
|
-
.
|
1900
|
-
|
1901
|
-
|
1902
|
-
line-height:
|
2067
|
+
.nav.list .nav-header {
|
2068
|
+
font-size: 11px;
|
2069
|
+
font-weight: bold;
|
2070
|
+
line-height: 18px;
|
1903
2071
|
color: #999999;
|
1904
|
-
text-
|
1905
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2072
|
+
text-transform: uppercase;
|
1906
2073
|
}
|
1907
|
-
.
|
1908
|
-
|
1909
|
-
color: #ffffff;
|
1910
|
-
text-decoration: none;
|
2074
|
+
.nav.list > li + .nav-header {
|
2075
|
+
margin-top: 9px;
|
1911
2076
|
}
|
1912
|
-
.
|
2077
|
+
.nav.list .active > a {
|
1913
2078
|
color: #ffffff;
|
1914
|
-
text-
|
1915
|
-
background-color: #
|
1916
|
-
background-color: rgba(0, 0, 0, 0.5);
|
1917
|
-
}
|
1918
|
-
.navbar .vertical-divider {
|
1919
|
-
height: 40px;
|
1920
|
-
width: 1px;
|
1921
|
-
margin: 0 5px;
|
1922
|
-
overflow: hidden;
|
1923
|
-
background-color: #222222;
|
1924
|
-
border-right: 1px solid #444;
|
1925
|
-
}
|
1926
|
-
.navbar .nav.pull-right {
|
1927
|
-
margin-left: 10px;
|
1928
|
-
margin-right: 0;
|
2079
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
2080
|
+
background-color: #0088cc;
|
1929
2081
|
}
|
1930
|
-
.
|
1931
|
-
margin-
|
1932
|
-
-webkit-border-radius: 4px;
|
1933
|
-
-moz-border-radius: 4px;
|
1934
|
-
border-radius: 4px;
|
2082
|
+
.nav.list .icon {
|
2083
|
+
margin-right: 2px;
|
1935
2084
|
}
|
1936
|
-
.
|
1937
|
-
|
1938
|
-
display: inline-block;
|
1939
|
-
border-left: 7px solid transparent;
|
1940
|
-
border-right: 7px solid transparent;
|
1941
|
-
border-bottom: 7px solid #ccc;
|
1942
|
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
1943
|
-
position: absolute;
|
1944
|
-
top: -7px;
|
1945
|
-
left: 9px;
|
2085
|
+
.tabs, .pills {
|
2086
|
+
*zoom: 1;
|
1946
2087
|
}
|
1947
|
-
.
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
position: absolute;
|
1954
|
-
top: -6px;
|
1955
|
-
left: 10px;
|
2088
|
+
.tabs:before,
|
2089
|
+
.pills:before,
|
2090
|
+
.tabs:after,
|
2091
|
+
.pills:after {
|
2092
|
+
display: table;
|
2093
|
+
content: "";
|
1956
2094
|
}
|
1957
|
-
.
|
1958
|
-
|
2095
|
+
.tabs:after, .pills:after {
|
2096
|
+
clear: both;
|
1959
2097
|
}
|
1960
|
-
.
|
1961
|
-
|
1962
|
-
-moz-opacity: 1;
|
1963
|
-
opacity: 1;
|
2098
|
+
.tabs > li, .pills > li {
|
2099
|
+
float: left;
|
1964
2100
|
}
|
1965
|
-
.
|
1966
|
-
|
2101
|
+
.tabs > li > a, .pills > li > a {
|
2102
|
+
padding-right: 12px;
|
2103
|
+
padding-left: 12px;
|
2104
|
+
margin-right: 2px;
|
2105
|
+
line-height: 14px;
|
1967
2106
|
}
|
1968
|
-
.
|
1969
|
-
|
2107
|
+
.tabs {
|
2108
|
+
border-bottom: 1px solid #ddd;
|
1970
2109
|
}
|
1971
|
-
.
|
1972
|
-
|
2110
|
+
.tabs > li {
|
2111
|
+
margin-bottom: -1px;
|
1973
2112
|
}
|
1974
|
-
.
|
1975
|
-
|
1976
|
-
|
2113
|
+
.tabs > li > a {
|
2114
|
+
padding-top: 9px;
|
2115
|
+
padding-bottom: 9px;
|
2116
|
+
border: 1px solid transparent;
|
2117
|
+
-webkit-border-radius: 4px 4px 0 0;
|
2118
|
+
-moz-border-radius: 4px 4px 0 0;
|
2119
|
+
border-radius: 4px 4px 0 0;
|
1977
2120
|
}
|
1978
|
-
.
|
1979
|
-
|
1980
|
-
right: 13px;
|
2121
|
+
.tabs > li > a:hover {
|
2122
|
+
border-color: #eeeeee #eeeeee #dddddd;
|
1981
2123
|
}
|
1982
|
-
.
|
1983
|
-
|
1984
|
-
|
1985
|
-
background-color: #f5f5f5;
|
1986
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
|
1987
|
-
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
1988
|
-
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
1989
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
|
1990
|
-
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
|
1991
|
-
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
|
1992
|
-
background-image: linear-gradient(top, #ffffff, #f5f5f5);
|
1993
|
-
background-repeat: repeat-x;
|
1994
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
|
2124
|
+
.tabs > .active > a, .tabs > .active > a:hover {
|
2125
|
+
color: #555555;
|
2126
|
+
background-color: #ffffff;
|
1995
2127
|
border: 1px solid #ddd;
|
1996
|
-
-
|
1997
|
-
|
1998
|
-
border-radius: 3px;
|
1999
|
-
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2000
|
-
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2001
|
-
box-shadow: inset 0 1px 0 #ffffff;
|
2002
|
-
}
|
2003
|
-
.breadcrumb li {
|
2004
|
-
display: inline;
|
2005
|
-
text-shadow: 0 1px 0 #ffffff;
|
2128
|
+
border-bottom-color: transparent;
|
2129
|
+
cursor: default;
|
2006
2130
|
}
|
2007
|
-
.
|
2008
|
-
padding:
|
2009
|
-
|
2131
|
+
.pills > li > a {
|
2132
|
+
padding-top: 8px;
|
2133
|
+
padding-bottom: 8px;
|
2134
|
+
margin-top: 2px;
|
2135
|
+
margin-bottom: 2px;
|
2136
|
+
-webkit-border-radius: 5px;
|
2137
|
+
-moz-border-radius: 5px;
|
2138
|
+
border-radius: 5px;
|
2010
2139
|
}
|
2011
|
-
.
|
2012
|
-
color: #
|
2140
|
+
.pills .active > a, .pills .active > a:hover {
|
2141
|
+
color: #ffffff;
|
2142
|
+
background-color: #0088cc;
|
2013
2143
|
}
|
2014
|
-
.
|
2015
|
-
|
2016
|
-
margin: 18px 0;
|
2144
|
+
.nav.stacked > li {
|
2145
|
+
float: none;
|
2017
2146
|
}
|
2018
|
-
.
|
2019
|
-
|
2020
|
-
*display: inline;
|
2021
|
-
/* IE7 inline-block hack */
|
2022
|
-
|
2023
|
-
*zoom: 1;
|
2024
|
-
margin-left: 0;
|
2025
|
-
margin-bottom: 0;
|
2026
|
-
-webkit-border-radius: 3px;
|
2027
|
-
-moz-border-radius: 3px;
|
2028
|
-
border-radius: 3px;
|
2029
|
-
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2030
|
-
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2031
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2147
|
+
.nav.stacked > li > a {
|
2148
|
+
margin-right: 0;
|
2032
2149
|
}
|
2033
|
-
.
|
2034
|
-
|
2150
|
+
.tabs.stacked {
|
2151
|
+
border-bottom: 0;
|
2035
2152
|
}
|
2036
|
-
.
|
2037
|
-
float: left;
|
2038
|
-
padding: 0 14px;
|
2039
|
-
line-height: 34px;
|
2040
|
-
text-decoration: none;
|
2153
|
+
.tabs.stacked > li > a {
|
2041
2154
|
border: 1px solid #ddd;
|
2042
|
-
border-
|
2155
|
+
-webkit-border-radius: 0;
|
2156
|
+
-moz-border-radius: 0;
|
2157
|
+
border-radius: 0;
|
2043
2158
|
}
|
2044
|
-
.
|
2045
|
-
|
2159
|
+
.tabs.stacked > li:first-child > a {
|
2160
|
+
-webkit-border-radius: 4px 4px 0 0;
|
2161
|
+
-moz-border-radius: 4px 4px 0 0;
|
2162
|
+
border-radius: 4px 4px 0 0;
|
2046
2163
|
}
|
2047
|
-
.
|
2048
|
-
|
2164
|
+
.tabs.stacked > li:last-child > a {
|
2165
|
+
-webkit-border-radius: 0 0 4px 4px;
|
2166
|
+
-moz-border-radius: 0 0 4px 4px;
|
2167
|
+
border-radius: 0 0 4px 4px;
|
2049
2168
|
}
|
2050
|
-
.
|
2051
|
-
color: #
|
2052
|
-
|
2053
|
-
cursor: default;
|
2169
|
+
.tabs.stacked > li > a:hover {
|
2170
|
+
border-color: #ddd;
|
2171
|
+
z-index: 2;
|
2054
2172
|
}
|
2055
|
-
.
|
2056
|
-
|
2057
|
-
-webkit-border-radius: 3px 0 0 3px;
|
2058
|
-
-moz-border-radius: 3px 0 0 3px;
|
2059
|
-
border-radius: 3px 0 0 3px;
|
2173
|
+
.pills.stacked > li > a {
|
2174
|
+
margin-bottom: 3px;
|
2060
2175
|
}
|
2061
|
-
.
|
2062
|
-
-
|
2063
|
-
-moz-border-radius: 0 3px 3px 0;
|
2064
|
-
border-radius: 0 3px 3px 0;
|
2176
|
+
.pills.stacked > li:last-child > a {
|
2177
|
+
margin-bottom: 1px;
|
2065
2178
|
}
|
2066
|
-
.
|
2067
|
-
|
2179
|
+
.pills .dropdown-menu, .tabs .dropdown-menu {
|
2180
|
+
margin-top: 1px;
|
2181
|
+
border-width: 1px;
|
2068
2182
|
}
|
2069
|
-
.
|
2070
|
-
|
2183
|
+
.pills .dropdown-menu {
|
2184
|
+
-webkit-border-radius: 4px;
|
2185
|
+
-moz-border-radius: 4px;
|
2186
|
+
border-radius: 4px;
|
2071
2187
|
}
|
2072
|
-
.
|
2073
|
-
|
2074
|
-
margin-
|
2075
|
-
list-style: none;
|
2076
|
-
text-align: center;
|
2077
|
-
*zoom: 1;
|
2188
|
+
.tabs .dropdown-toggle .caret, .pills .dropdown-toggle .caret {
|
2189
|
+
border-top-color: #0088cc;
|
2190
|
+
margin-top: 6px;
|
2078
2191
|
}
|
2079
|
-
.
|
2080
|
-
|
2081
|
-
content: "";
|
2192
|
+
.tabs .dropdown-toggle:hover .caret, .pills .dropdown-toggle:hover .caret {
|
2193
|
+
border-top-color: #005580;
|
2082
2194
|
}
|
2083
|
-
.
|
2084
|
-
|
2085
|
-
}
|
2086
|
-
.pager li {
|
2087
|
-
display: inline;
|
2088
|
-
}
|
2089
|
-
.pager a {
|
2090
|
-
display: inline-block;
|
2091
|
-
padding: 6px 15px;
|
2092
|
-
background-color: #f5f5f5;
|
2093
|
-
-webkit-border-radius: 15px;
|
2094
|
-
-moz-border-radius: 15px;
|
2095
|
-
border-radius: 15px;
|
2195
|
+
.tabs .active .dropdown-toggle .caret, .pills .active .dropdown-toggle .caret {
|
2196
|
+
border-top-color: #333333;
|
2096
2197
|
}
|
2097
|
-
.
|
2098
|
-
|
2198
|
+
.nav > .dropdown.active > a:hover {
|
2199
|
+
color: #000000;
|
2200
|
+
cursor: pointer;
|
2099
2201
|
}
|
2100
|
-
.
|
2101
|
-
|
2202
|
+
.tabs .open .dropdown-toggle, .pills .open .dropdown-toggle, .nav > .open.active > a:hover {
|
2203
|
+
color: #ffffff;
|
2204
|
+
background-color: #999999;
|
2205
|
+
border-color: #999999;
|
2102
2206
|
}
|
2103
|
-
.
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2107
|
-
bottom: 0;
|
2108
|
-
left: 0;
|
2109
|
-
z-index: 1040;
|
2110
|
-
background-color: #000000;
|
2207
|
+
.nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret {
|
2208
|
+
border-top-color: #ffffff;
|
2209
|
+
opacity: 1;
|
2210
|
+
filter: alpha(opacity=100);
|
2111
2211
|
}
|
2112
|
-
.
|
2113
|
-
|
2212
|
+
.tabs.stacked .open > a:hover {
|
2213
|
+
border-color: #999999;
|
2114
2214
|
}
|
2115
|
-
.
|
2116
|
-
|
2117
|
-
-moz-opacity: 0.8;
|
2118
|
-
opacity: 0.8;
|
2215
|
+
.tabbable {
|
2216
|
+
*zoom: 1;
|
2119
2217
|
}
|
2120
|
-
.
|
2121
|
-
|
2122
|
-
|
2123
|
-
left: 50%;
|
2124
|
-
z-index: 1050;
|
2125
|
-
max-height: 500px;
|
2126
|
-
overflow: auto;
|
2127
|
-
width: 560px;
|
2128
|
-
margin: -250px 0 0 -280px;
|
2129
|
-
background-color: #ffffff;
|
2130
|
-
border: 1px solid #999;
|
2131
|
-
border: 1px solid rgba(0, 0, 0, 0.3);
|
2132
|
-
*border: 1px solid #999;
|
2133
|
-
/* IE6-7 */
|
2134
|
-
|
2135
|
-
-webkit-border-radius: 6px;
|
2136
|
-
-moz-border-radius: 6px;
|
2137
|
-
border-radius: 6px;
|
2138
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2139
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2140
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2141
|
-
-webkit-background-clip: padding-box;
|
2142
|
-
-moz-background-clip: padding-box;
|
2143
|
-
background-clip: padding-box;
|
2218
|
+
.tabbable:before, .tabbable:after {
|
2219
|
+
display: table;
|
2220
|
+
content: "";
|
2144
2221
|
}
|
2145
|
-
.
|
2146
|
-
|
2147
|
-
-moz-transition: opacity .3s linear, top .3s ease-out;
|
2148
|
-
-ms-transition: opacity .3s linear, top .3s ease-out;
|
2149
|
-
-o-transition: opacity .3s linear, top .3s ease-out;
|
2150
|
-
transition: opacity .3s linear, top .3s ease-out;
|
2151
|
-
top: -25%;
|
2222
|
+
.tabbable:after {
|
2223
|
+
clear: both;
|
2152
2224
|
}
|
2153
|
-
.
|
2154
|
-
|
2225
|
+
.tabs-below .tabs, .tabs-right .tabs, .tabs-left .tabs {
|
2226
|
+
border-bottom: 0;
|
2155
2227
|
}
|
2156
|
-
.
|
2157
|
-
|
2158
|
-
border-bottom: 1px solid #eee;
|
2228
|
+
.tab-content > .tab-pane, .pill-content > .pill-pane {
|
2229
|
+
display: none;
|
2159
2230
|
}
|
2160
|
-
.
|
2161
|
-
|
2231
|
+
.tab-content > .active, .pill-content > .active {
|
2232
|
+
display: block;
|
2162
2233
|
}
|
2163
|
-
.
|
2164
|
-
|
2234
|
+
.tabs-below .tabs {
|
2235
|
+
border-top: 1px solid #ddd;
|
2165
2236
|
}
|
2166
|
-
.
|
2167
|
-
|
2237
|
+
.tabs-below .tabs > li {
|
2238
|
+
margin-top: -1px;
|
2168
2239
|
margin-bottom: 0;
|
2169
|
-
background-color: #f5f5f5;
|
2170
|
-
border-top: 1px solid #ddd;
|
2171
|
-
-webkit-border-radius: 0 0 6px 6px;
|
2172
|
-
-moz-border-radius: 0 0 6px 6px;
|
2173
|
-
border-radius: 0 0 6px 6px;
|
2174
|
-
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2175
|
-
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2176
|
-
box-shadow: inset 0 1px 0 #ffffff;
|
2177
|
-
*zoom: 1;
|
2178
2240
|
}
|
2179
|
-
.
|
2180
|
-
|
2181
|
-
|
2241
|
+
.tabs-below .tabs > li > a {
|
2242
|
+
-webkit-border-radius: 0 0 4px 4px;
|
2243
|
+
-moz-border-radius: 0 0 4px 4px;
|
2244
|
+
border-radius: 0 0 4px 4px;
|
2182
2245
|
}
|
2183
|
-
.
|
2184
|
-
|
2246
|
+
.tabs-below .tabs > li > a:hover {
|
2247
|
+
border-bottom-color: transparent;
|
2248
|
+
border-top-color: #ddd;
|
2185
2249
|
}
|
2186
|
-
.
|
2187
|
-
|
2188
|
-
margin-left: 5px;
|
2250
|
+
.tabs-below .tabs .active > a, .tabs-below .tabs .active > a:hover {
|
2251
|
+
border-color: transparent #ddd #ddd #ddd;
|
2189
2252
|
}
|
2190
|
-
.
|
2191
|
-
|
2192
|
-
z-index: 1020;
|
2193
|
-
display: block;
|
2194
|
-
visibility: visible;
|
2195
|
-
padding: 5px;
|
2196
|
-
font-size: 11px;
|
2197
|
-
filter: alpha(opacity=0);
|
2198
|
-
-moz-opacity: 0;
|
2199
|
-
opacity: 0;
|
2253
|
+
.tabs-left .tabs > li, .tabs-right .tabs > li {
|
2254
|
+
float: none;
|
2200
2255
|
}
|
2201
|
-
.
|
2202
|
-
|
2203
|
-
-
|
2204
|
-
|
2256
|
+
.tabs-left .tabs > li > a, .tabs-right .tabs > li > a {
|
2257
|
+
min-width: 74px;
|
2258
|
+
margin-right: 0;
|
2259
|
+
margin-bottom: 3px;
|
2205
2260
|
}
|
2206
|
-
.
|
2207
|
-
|
2261
|
+
.tabs-left .tabs {
|
2262
|
+
float: left;
|
2263
|
+
margin-right: 19px;
|
2264
|
+
border-right: 1px solid #ddd;
|
2208
2265
|
}
|
2209
|
-
.
|
2210
|
-
margin-
|
2266
|
+
.tabs-left .tabs > li > a {
|
2267
|
+
margin-right: -1px;
|
2268
|
+
-webkit-border-radius: 4px 0 0 4px;
|
2269
|
+
-moz-border-radius: 4px 0 0 4px;
|
2270
|
+
border-radius: 4px 0 0 4px;
|
2211
2271
|
}
|
2212
|
-
.
|
2213
|
-
|
2272
|
+
.tabs-left .tabs > li > a:hover {
|
2273
|
+
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
|
2214
2274
|
}
|
2215
|
-
.
|
2216
|
-
|
2275
|
+
.tabs-left .tabs .active > a, .tabs-left .tabs .active > a:hover {
|
2276
|
+
border-color: #ddd transparent #ddd #ddd;
|
2277
|
+
*border-right-color: #ffffff;
|
2217
2278
|
}
|
2218
|
-
.
|
2219
|
-
|
2220
|
-
left:
|
2221
|
-
|
2222
|
-
border-left: 5px solid transparent;
|
2223
|
-
border-right: 5px solid transparent;
|
2224
|
-
border-top: 5px solid #000000;
|
2279
|
+
.tabs-right .tabs {
|
2280
|
+
float: right;
|
2281
|
+
margin-left: 19px;
|
2282
|
+
border-left: 1px solid #ddd;
|
2225
2283
|
}
|
2226
|
-
.
|
2227
|
-
|
2228
|
-
|
2229
|
-
|
2230
|
-
border-
|
2231
|
-
border-bottom: 5px solid transparent;
|
2232
|
-
border-left: 5px solid #000000;
|
2284
|
+
.tabs-right .tabs > li > a {
|
2285
|
+
margin-left: -1px;
|
2286
|
+
-webkit-border-radius: 0 4px 4px 0;
|
2287
|
+
-moz-border-radius: 0 4px 4px 0;
|
2288
|
+
border-radius: 0 4px 4px 0;
|
2233
2289
|
}
|
2234
|
-
.
|
2235
|
-
|
2236
|
-
left: 50%;
|
2237
|
-
margin-left: -5px;
|
2238
|
-
border-left: 5px solid transparent;
|
2239
|
-
border-right: 5px solid transparent;
|
2240
|
-
border-bottom: 5px solid #000000;
|
2290
|
+
.tabs-right .tabs > li > a:hover {
|
2291
|
+
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
|
2241
2292
|
}
|
2242
|
-
.
|
2243
|
-
|
2244
|
-
left:
|
2245
|
-
margin-top: -5px;
|
2246
|
-
border-top: 5px solid transparent;
|
2247
|
-
border-bottom: 5px solid transparent;
|
2248
|
-
border-right: 5px solid #000000;
|
2293
|
+
.tabs-right .tabs .active > a, .tabs-right .tabs .active > a:hover {
|
2294
|
+
border-color: #ddd #ddd #ddd transparent;
|
2295
|
+
*border-left-color: #ffffff;
|
2249
2296
|
}
|
2250
|
-
.
|
2251
|
-
|
2252
|
-
padding: 3px 8px;
|
2253
|
-
color: #ffffff;
|
2254
|
-
text-align: center;
|
2255
|
-
text-decoration: none;
|
2256
|
-
background-color: #000000;
|
2257
|
-
-webkit-border-radius: 4px;
|
2258
|
-
-moz-border-radius: 4px;
|
2259
|
-
border-radius: 4px;
|
2297
|
+
.navbar {
|
2298
|
+
overflow: visible;
|
2260
2299
|
}
|
2261
|
-
.
|
2262
|
-
|
2263
|
-
|
2264
|
-
|
2300
|
+
.navbar-inner {
|
2301
|
+
background-color: #222222;
|
2302
|
+
background-color: #2c2c2c;
|
2303
|
+
background-image: -moz-linear-gradient(top, #333333, #222222);
|
2304
|
+
background-image: -ms-linear-gradient(top, #333333, #222222);
|
2305
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
|
2306
|
+
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
2307
|
+
background-image: -o-linear-gradient(top, #333333, #222222);
|
2308
|
+
background-image: linear-gradient(top, #333333, #222222);
|
2309
|
+
background-repeat: repeat-x;
|
2310
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
2311
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2312
|
+
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2313
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
2265
2314
|
}
|
2266
|
-
.
|
2267
|
-
position: absolute;
|
2268
|
-
top: 0;
|
2269
|
-
left: 0;
|
2270
|
-
z-index: 1010;
|
2315
|
+
.btn-navbar {
|
2271
2316
|
display: none;
|
2272
|
-
|
2317
|
+
float: right;
|
2318
|
+
padding: 7px 10px;
|
2319
|
+
margin-left: 5px;
|
2320
|
+
margin-right: 5px;
|
2321
|
+
background-color: #2c2c2c;
|
2322
|
+
background-image: -moz-linear-gradient(top, #333333, #222222);
|
2323
|
+
background-image: -ms-linear-gradient(top, #333333, #222222);
|
2324
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
|
2325
|
+
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
2326
|
+
background-image: -o-linear-gradient(top, #333333, #222222);
|
2327
|
+
background-image: linear-gradient(top, #333333, #222222);
|
2328
|
+
background-repeat: repeat-x;
|
2329
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
2330
|
+
border-color: #222222 #222222 #000000;
|
2331
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2332
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2333
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
2334
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
2335
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
2336
|
+
}
|
2337
|
+
.btn-navbar:hover,
|
2338
|
+
.btn-navbar:active,
|
2339
|
+
.btn-navbar.active,
|
2340
|
+
.btn-navbar.disabled,
|
2341
|
+
.btn-navbar[disabled] {
|
2342
|
+
background-color: #222222;
|
2273
2343
|
}
|
2274
|
-
.
|
2275
|
-
|
2344
|
+
.btn-navbar:active, .btn-navbar.active {
|
2345
|
+
background-color: #080808 \9;
|
2276
2346
|
}
|
2277
|
-
.
|
2278
|
-
|
2347
|
+
.btn-navbar .i-bar {
|
2348
|
+
display: block;
|
2349
|
+
width: 18px;
|
2350
|
+
height: 2px;
|
2351
|
+
background-color: #f5f5f5;
|
2352
|
+
-webkit-border-radius: 1px;
|
2353
|
+
-moz-border-radius: 1px;
|
2354
|
+
border-radius: 1px;
|
2355
|
+
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
2356
|
+
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
2357
|
+
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
2279
2358
|
}
|
2280
|
-
.
|
2281
|
-
margin-top:
|
2359
|
+
.btn-navbar .i-bar + .i-bar {
|
2360
|
+
margin-top: 3px;
|
2282
2361
|
}
|
2283
|
-
.
|
2284
|
-
|
2362
|
+
.navbar .brand:hover {
|
2363
|
+
text-decoration: none;
|
2285
2364
|
}
|
2286
|
-
.
|
2287
|
-
|
2288
|
-
|
2289
|
-
|
2290
|
-
|
2291
|
-
|
2292
|
-
|
2365
|
+
.navbar .brand {
|
2366
|
+
float: left;
|
2367
|
+
display: block;
|
2368
|
+
padding: 8px 20px 12px;
|
2369
|
+
margin-left: -20px;
|
2370
|
+
font-size: 20px;
|
2371
|
+
font-weight: 200;
|
2372
|
+
line-height: 1;
|
2373
|
+
color: #ffffff;
|
2293
2374
|
}
|
2294
|
-
.
|
2295
|
-
|
2296
|
-
|
2297
|
-
|
2298
|
-
border-top: 5px solid transparent;
|
2299
|
-
border-bottom: 5px solid transparent;
|
2300
|
-
border-right: 5px solid #000000;
|
2375
|
+
.navbar .navbar-text {
|
2376
|
+
margin-bottom: 0;
|
2377
|
+
line-height: 40px;
|
2378
|
+
color: #999999;
|
2301
2379
|
}
|
2302
|
-
.
|
2303
|
-
|
2304
|
-
|
2305
|
-
margin-left: -5px;
|
2306
|
-
border-left: 5px solid transparent;
|
2307
|
-
border-right: 5px solid transparent;
|
2308
|
-
border-bottom: 5px solid #000000;
|
2380
|
+
.navbar .navbar-text a:hover {
|
2381
|
+
color: #ffffff;
|
2382
|
+
background-color: transparent;
|
2309
2383
|
}
|
2310
|
-
.
|
2311
|
-
top:
|
2312
|
-
right: 0;
|
2313
|
-
margin-top: -5px;
|
2314
|
-
border-top: 5px solid transparent;
|
2315
|
-
border-bottom: 5px solid transparent;
|
2316
|
-
border-left: 5px solid #000000;
|
2384
|
+
.navbar .btn, .navbar .btn-group {
|
2385
|
+
margin-top: 5px;
|
2317
2386
|
}
|
2318
|
-
.
|
2319
|
-
|
2320
|
-
width: 0;
|
2321
|
-
height: 0;
|
2387
|
+
.navbar .btn-group .btn {
|
2388
|
+
margin-top: 0;
|
2322
2389
|
}
|
2323
|
-
.
|
2324
|
-
|
2325
|
-
width: 280px;
|
2326
|
-
overflow: hidden;
|
2327
|
-
background: #000000;
|
2328
|
-
background: rgba(0, 0, 0, 0.8);
|
2329
|
-
-webkit-border-radius: 6px;
|
2330
|
-
-moz-border-radius: 6px;
|
2331
|
-
border-radius: 6px;
|
2332
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2333
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2334
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2390
|
+
.navbar-form {
|
2391
|
+
margin-bottom: 0;
|
2335
2392
|
}
|
2336
|
-
.
|
2337
|
-
|
2338
|
-
|
2339
|
-
|
2340
|
-
border-bottom: 1px solid #eee;
|
2341
|
-
-webkit-border-radius: 3px 3px 0 0;
|
2342
|
-
-moz-border-radius: 3px 3px 0 0;
|
2343
|
-
border-radius: 3px 3px 0 0;
|
2393
|
+
.navbar-form input, .navbar-form select {
|
2394
|
+
display: inline-block;
|
2395
|
+
margin-top: 5px;
|
2396
|
+
margin-bottom: 0;
|
2344
2397
|
}
|
2345
|
-
.
|
2346
|
-
|
2347
|
-
background-color: #ffffff;
|
2348
|
-
-webkit-border-radius: 0 0 3px 3px;
|
2349
|
-
-moz-border-radius: 0 0 3px 3px;
|
2350
|
-
border-radius: 0 0 3px 3px;
|
2351
|
-
-webkit-background-clip: padding-box;
|
2352
|
-
-moz-background-clip: padding-box;
|
2353
|
-
background-clip: padding-box;
|
2398
|
+
.navbar-form .radio, .navbar-form .checkbox {
|
2399
|
+
margin-top: 5px;
|
2354
2400
|
}
|
2355
|
-
.
|
2401
|
+
.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
|
2402
|
+
margin-top: 3px;
|
2403
|
+
}
|
2404
|
+
.navbar-search {
|
2405
|
+
position: relative;
|
2406
|
+
float: left;
|
2407
|
+
margin-top: 6px;
|
2356
2408
|
margin-bottom: 0;
|
2357
2409
|
}
|
2358
|
-
.
|
2359
|
-
|
2360
|
-
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2364
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2410
|
+
.navbar-search .search-query {
|
2411
|
+
padding: 4px 9px;
|
2412
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2413
|
+
font-size: 13px;
|
2414
|
+
font-weight: normal;
|
2415
|
+
line-height: 1;
|
2365
2416
|
color: #ffffff;
|
2417
|
+
color: rgba(255, 255, 255, 0.75);
|
2418
|
+
background: #666;
|
2419
|
+
background: rgba(255, 255, 255, 0.3);
|
2420
|
+
border: 1px solid #111;
|
2421
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
2422
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
2423
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
2424
|
+
-webkit-transition: none;
|
2425
|
+
-moz-transition: none;
|
2426
|
+
-ms-transition: none;
|
2427
|
+
-o-transition: none;
|
2428
|
+
transition: none;
|
2366
2429
|
}
|
2367
|
-
.
|
2368
|
-
|
2369
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
2370
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
2371
|
-
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
2372
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
2373
|
-
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
2374
|
-
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
2375
|
-
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
2376
|
-
background-repeat: repeat-x;
|
2377
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
2378
|
-
border-color: #c43c35 #c43c35 #882a25;
|
2379
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2430
|
+
.navbar-search .search-query :-moz-placeholder {
|
2431
|
+
color: #eeeeee;
|
2380
2432
|
}
|
2381
|
-
.
|
2382
|
-
|
2383
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
2384
|
-
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
2385
|
-
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
2386
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
|
2387
|
-
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
2388
|
-
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
2389
|
-
background-image: linear-gradient(top, #62c462, #57a957);
|
2390
|
-
background-repeat: repeat-x;
|
2391
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
|
2392
|
-
border-color: #57a957 #57a957 #3d773d;
|
2393
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2433
|
+
.navbar-search .search-query::-webkit-input-placeholder {
|
2434
|
+
color: #eeeeee;
|
2394
2435
|
}
|
2395
|
-
.
|
2396
|
-
|
2397
|
-
background-
|
2398
|
-
background-
|
2399
|
-
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
2400
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
2401
|
-
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
2402
|
-
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
2403
|
-
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
2404
|
-
background-repeat: repeat-x;
|
2405
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
2406
|
-
border-color: #339bb9 #339bb9 #22697d;
|
2407
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2436
|
+
.navbar-search .search-query:hover {
|
2437
|
+
color: #ffffff;
|
2438
|
+
background-color: #999999;
|
2439
|
+
background-color: rgba(255, 255, 255, 0.5);
|
2408
2440
|
}
|
2409
|
-
.
|
2410
|
-
|
2411
|
-
padding: 5px 10px 6px;
|
2412
|
-
font-size: 13px;
|
2413
|
-
line-height: normal;
|
2441
|
+
.navbar-search .search-query:focus, .navbar-search .search-query.focused {
|
2442
|
+
padding: 5px 10px;
|
2414
2443
|
color: #333333;
|
2415
|
-
text-shadow: 0 1px
|
2416
|
-
background-color: #
|
2417
|
-
|
2418
|
-
|
2419
|
-
|
2420
|
-
|
2421
|
-
|
2422
|
-
|
2423
|
-
|
2424
|
-
|
2425
|
-
|
2426
|
-
|
2444
|
+
text-shadow: 0 1px 0 #ffffff;
|
2445
|
+
background-color: #ffffff;
|
2446
|
+
border: 0;
|
2447
|
+
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
2448
|
+
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
2449
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
2450
|
+
outline: 0;
|
2451
|
+
}
|
2452
|
+
.navbar-static {
|
2453
|
+
margin-bottom: 18px;
|
2454
|
+
}
|
2455
|
+
.navbar-static .navbar-inner {
|
2456
|
+
padding-left: 20px;
|
2457
|
+
padding-right: 20px;
|
2427
2458
|
-webkit-border-radius: 4px;
|
2428
2459
|
-moz-border-radius: 4px;
|
2429
2460
|
border-radius: 4px;
|
2430
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2431
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2432
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2433
|
-
cursor: pointer;
|
2434
|
-
-webkit-transition: 0.1s linear all;
|
2435
|
-
-moz-transition: 0.1s linear all;
|
2436
|
-
-ms-transition: 0.1s linear all;
|
2437
|
-
-o-transition: 0.1s linear all;
|
2438
|
-
transition: 0.1s linear all;
|
2439
2461
|
}
|
2440
|
-
.
|
2441
|
-
|
2462
|
+
.navbar-fixed-top {
|
2463
|
+
position: fixed;
|
2464
|
+
top: 0;
|
2465
|
+
right: 0;
|
2466
|
+
left: 0;
|
2467
|
+
z-index: 1030;
|
2468
|
+
}
|
2469
|
+
.navbar .nav {
|
2470
|
+
position: relative;
|
2471
|
+
left: 0;
|
2472
|
+
display: block;
|
2473
|
+
float: left;
|
2474
|
+
margin: 0 10px 0 0;
|
2475
|
+
}
|
2476
|
+
.navbar .nav.pull-right {
|
2477
|
+
float: right;
|
2478
|
+
}
|
2479
|
+
.navbar .nav > li {
|
2480
|
+
display: block;
|
2481
|
+
float: left;
|
2482
|
+
}
|
2483
|
+
.navbar .nav > li > a {
|
2484
|
+
float: none;
|
2485
|
+
padding: 10px 10px 11px;
|
2486
|
+
line-height: 19px;
|
2487
|
+
color: #999999;
|
2442
2488
|
text-decoration: none;
|
2443
|
-
|
2489
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2444
2490
|
}
|
2445
|
-
.
|
2446
|
-
|
2491
|
+
.navbar .nav > li > a:hover {
|
2492
|
+
background-color: transparent;
|
2493
|
+
color: #ffffff;
|
2494
|
+
text-decoration: none;
|
2447
2495
|
}
|
2448
|
-
.
|
2496
|
+
.navbar .nav .active > a, .navbar .nav .active > a:hover {
|
2449
2497
|
color: #ffffff;
|
2450
|
-
text-
|
2451
|
-
background-color: #
|
2452
|
-
background-
|
2453
|
-
|
2454
|
-
|
2455
|
-
|
2456
|
-
|
2457
|
-
|
2458
|
-
|
2498
|
+
text-decoration: none;
|
2499
|
+
background-color: #222222;
|
2500
|
+
background-color: rgba(0, 0, 0, 0.5);
|
2501
|
+
}
|
2502
|
+
.navbar .vertical-divider {
|
2503
|
+
height: 40px;
|
2504
|
+
width: 1px;
|
2505
|
+
margin: 0 5px;
|
2506
|
+
overflow: hidden;
|
2507
|
+
background-color: #222222;
|
2508
|
+
border-right: 1px solid #333333;
|
2509
|
+
}
|
2510
|
+
.navbar .nav.pull-right {
|
2511
|
+
margin-left: 10px;
|
2512
|
+
margin-right: 0;
|
2513
|
+
}
|
2514
|
+
.navbar .dropdown-menu {
|
2515
|
+
margin-top: 1px;
|
2516
|
+
-webkit-border-radius: 4px;
|
2517
|
+
-moz-border-radius: 4px;
|
2518
|
+
border-radius: 4px;
|
2519
|
+
}
|
2520
|
+
.navbar .dropdown-menu:before {
|
2521
|
+
content: '';
|
2522
|
+
display: inline-block;
|
2523
|
+
border-left: 7px solid transparent;
|
2524
|
+
border-right: 7px solid transparent;
|
2525
|
+
border-bottom: 7px solid #ccc;
|
2526
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
2527
|
+
position: absolute;
|
2528
|
+
top: -7px;
|
2529
|
+
left: 9px;
|
2530
|
+
}
|
2531
|
+
.navbar .dropdown-menu:after {
|
2532
|
+
content: '';
|
2533
|
+
display: inline-block;
|
2534
|
+
border-left: 6px solid transparent;
|
2535
|
+
border-right: 6px solid transparent;
|
2536
|
+
border-bottom: 6px solid #ffffff;
|
2537
|
+
position: absolute;
|
2538
|
+
top: -6px;
|
2539
|
+
left: 10px;
|
2540
|
+
}
|
2541
|
+
.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
|
2542
|
+
border-top-color: #ffffff;
|
2543
|
+
}
|
2544
|
+
.navbar .nav .active .caret {
|
2545
|
+
opacity: 1;
|
2546
|
+
filter: alpha(opacity=100);
|
2547
|
+
}
|
2548
|
+
.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
|
2549
|
+
background-color: transparent;
|
2550
|
+
}
|
2551
|
+
.navbar .nav .active > .dropdown-toggle:hover {
|
2552
|
+
color: #ffffff;
|
2553
|
+
}
|
2554
|
+
.navbar .nav.pull-right .dropdown-menu {
|
2555
|
+
left: auto;
|
2556
|
+
right: 0;
|
2557
|
+
}
|
2558
|
+
.navbar .nav.pull-right .dropdown-menu:before {
|
2559
|
+
left: auto;
|
2560
|
+
right: 12px;
|
2561
|
+
}
|
2562
|
+
.navbar .nav.pull-right .dropdown-menu:after {
|
2563
|
+
left: auto;
|
2564
|
+
right: 13px;
|
2565
|
+
}
|
2566
|
+
.breadcrumb {
|
2567
|
+
padding: 7px 14px;
|
2568
|
+
margin: 0 0 18px;
|
2569
|
+
background-color: #fbfbfb;
|
2570
|
+
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
2571
|
+
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
2572
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
|
2573
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
|
2574
|
+
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
|
2575
|
+
background-image: linear-gradient(top, #ffffff, #f5f5f5);
|
2459
2576
|
background-repeat: repeat-x;
|
2460
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#
|
2461
|
-
border
|
2462
|
-
border-
|
2577
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
|
2578
|
+
border: 1px solid #ddd;
|
2579
|
+
-webkit-border-radius: 3px;
|
2580
|
+
-moz-border-radius: 3px;
|
2581
|
+
border-radius: 3px;
|
2582
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2583
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2584
|
+
box-shadow: inset 0 1px 0 #ffffff;
|
2585
|
+
}
|
2586
|
+
.breadcrumb li {
|
2587
|
+
display: inline;
|
2588
|
+
text-shadow: 0 1px 0 #ffffff;
|
2589
|
+
}
|
2590
|
+
.breadcrumb .divider {
|
2591
|
+
padding: 0 5px;
|
2592
|
+
color: #999999;
|
2593
|
+
}
|
2594
|
+
.breadcrumb .active a {
|
2595
|
+
color: #333333;
|
2596
|
+
}
|
2597
|
+
.pagination {
|
2598
|
+
height: 36px;
|
2599
|
+
margin: 18px 0;
|
2600
|
+
}
|
2601
|
+
.pagination ul {
|
2602
|
+
display: inline-block;
|
2603
|
+
*display: inline;
|
2604
|
+
/* IE7 inline-block hack */
|
2605
|
+
|
2606
|
+
*zoom: 1;
|
2607
|
+
margin-left: 0;
|
2608
|
+
margin-bottom: 0;
|
2609
|
+
-webkit-border-radius: 3px;
|
2610
|
+
-moz-border-radius: 3px;
|
2611
|
+
border-radius: 3px;
|
2612
|
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2613
|
+
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2614
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
2615
|
+
}
|
2616
|
+
.pagination li {
|
2617
|
+
display: inline;
|
2618
|
+
}
|
2619
|
+
.pagination a {
|
2620
|
+
float: left;
|
2621
|
+
padding: 0 14px;
|
2622
|
+
line-height: 34px;
|
2623
|
+
text-decoration: none;
|
2624
|
+
border: 1px solid #ddd;
|
2625
|
+
border-left-width: 0;
|
2463
2626
|
}
|
2464
|
-
.
|
2465
|
-
background-
|
2466
|
-
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2467
|
-
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2468
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2627
|
+
.pagination a:hover, .pagination .active a {
|
2628
|
+
background-color: #f5f5f5;
|
2469
2629
|
}
|
2470
|
-
.
|
2471
|
-
|
2472
|
-
background-image: none;
|
2473
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2474
|
-
filter: alpha(opacity=65);
|
2475
|
-
-moz-opacity: 0.65;
|
2476
|
-
opacity: 0.65;
|
2477
|
-
-webkit-box-shadow: none;
|
2478
|
-
-moz-box-shadow: none;
|
2479
|
-
box-shadow: none;
|
2630
|
+
.pagination .active a {
|
2631
|
+
color: #999999;
|
2480
2632
|
}
|
2481
|
-
.
|
2633
|
+
.pagination .disabled a, .pagination .disabled a:hover {
|
2634
|
+
color: #999999;
|
2635
|
+
background-color: transparent;
|
2482
2636
|
cursor: default;
|
2483
|
-
background-image: none;
|
2484
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2485
|
-
filter: alpha(opacity=65);
|
2486
|
-
-moz-opacity: 0.65;
|
2487
|
-
opacity: 0.65;
|
2488
|
-
-webkit-box-shadow: none;
|
2489
|
-
-moz-box-shadow: none;
|
2490
|
-
box-shadow: none;
|
2491
2637
|
}
|
2492
|
-
.
|
2493
|
-
|
2494
|
-
|
2495
|
-
|
2496
|
-
|
2497
|
-
-moz-border-radius: 5px;
|
2498
|
-
border-radius: 5px;
|
2638
|
+
.pagination li:first-child a {
|
2639
|
+
border-left-width: 1px;
|
2640
|
+
-webkit-border-radius: 3px 0 0 3px;
|
2641
|
+
-moz-border-radius: 3px 0 0 3px;
|
2642
|
+
border-radius: 3px 0 0 3px;
|
2499
2643
|
}
|
2500
|
-
.
|
2501
|
-
|
2502
|
-
|
2644
|
+
.pagination li:last-child a {
|
2645
|
+
-webkit-border-radius: 0 3px 3px 0;
|
2646
|
+
-moz-border-radius: 0 3px 3px 0;
|
2647
|
+
border-radius: 0 3px 3px 0;
|
2503
2648
|
}
|
2504
|
-
|
2505
|
-
|
2649
|
+
.pagination-centered {
|
2650
|
+
text-align: center;
|
2506
2651
|
}
|
2507
|
-
|
2508
|
-
|
2509
|
-
border: 0;
|
2652
|
+
.pagination-right {
|
2653
|
+
text-align: right;
|
2510
2654
|
}
|
2511
|
-
.
|
2512
|
-
|
2655
|
+
.pager {
|
2656
|
+
margin-left: 0;
|
2657
|
+
margin-bottom: 18px;
|
2658
|
+
list-style: none;
|
2659
|
+
text-align: center;
|
2513
2660
|
*zoom: 1;
|
2514
2661
|
}
|
2515
|
-
.
|
2662
|
+
.pager:before, .pager:after {
|
2516
2663
|
display: table;
|
2517
2664
|
content: "";
|
2518
2665
|
}
|
2519
|
-
.
|
2666
|
+
.pager:after {
|
2520
2667
|
clear: both;
|
2521
2668
|
}
|
2522
|
-
.
|
2523
|
-
|
2669
|
+
.pager li {
|
2670
|
+
display: inline;
|
2524
2671
|
}
|
2525
|
-
.
|
2672
|
+
.pager a {
|
2526
2673
|
display: inline-block;
|
2674
|
+
padding: 6px 15px;
|
2675
|
+
background-color: #f5f5f5;
|
2676
|
+
-webkit-border-radius: 15px;
|
2677
|
+
-moz-border-radius: 15px;
|
2678
|
+
border-radius: 15px;
|
2527
2679
|
}
|
2528
|
-
.
|
2529
|
-
|
2680
|
+
.pager .next a {
|
2681
|
+
float: right;
|
2682
|
+
}
|
2683
|
+
.pager .previous a {
|
2530
2684
|
float: left;
|
2531
|
-
margin-left: -1px;
|
2532
|
-
-webkit-border-radius: 0;
|
2533
|
-
-moz-border-radius: 0;
|
2534
|
-
border-radius: 0;
|
2535
2685
|
}
|
2536
|
-
.
|
2537
|
-
|
2538
|
-
-webkit-border-top-left-radius: 4px;
|
2539
|
-
-moz-border-radius-topleft: 4px;
|
2540
|
-
border-top-left-radius: 4px;
|
2541
|
-
-webkit-border-bottom-left-radius: 4px;
|
2542
|
-
-moz-border-radius-bottomleft: 4px;
|
2543
|
-
border-bottom-left-radius: 4px;
|
2686
|
+
.modal-open .dropdown-menu {
|
2687
|
+
z-index: 2050;
|
2544
2688
|
}
|
2545
|
-
.
|
2546
|
-
-
|
2547
|
-
-moz-border-radius-topright: 4px;
|
2548
|
-
border-top-right-radius: 4px;
|
2549
|
-
-webkit-border-bottom-right-radius: 4px;
|
2550
|
-
-moz-border-radius-bottomright: 4px;
|
2551
|
-
border-bottom-right-radius: 4px;
|
2689
|
+
.modal-open .dropdown.open {
|
2690
|
+
*z-index: 2050;
|
2552
2691
|
}
|
2553
|
-
.
|
2554
|
-
|
2555
|
-
-webkit-border-top-left-radius: 6px;
|
2556
|
-
-moz-border-radius-topleft: 6px;
|
2557
|
-
border-top-left-radius: 6px;
|
2558
|
-
-webkit-border-bottom-left-radius: 6px;
|
2559
|
-
-moz-border-radius-bottomleft: 6px;
|
2560
|
-
border-bottom-left-radius: 6px;
|
2692
|
+
.modal-open .popover {
|
2693
|
+
z-index: 2060;
|
2561
2694
|
}
|
2562
|
-
.
|
2563
|
-
-
|
2564
|
-
-moz-border-radius-topright: 6px;
|
2565
|
-
border-top-right-radius: 6px;
|
2566
|
-
-webkit-border-bottom-right-radius: 6px;
|
2567
|
-
-moz-border-radius-bottomright: 6px;
|
2568
|
-
border-bottom-right-radius: 6px;
|
2695
|
+
.modal-open .tooltip {
|
2696
|
+
z-index: 2070;
|
2569
2697
|
}
|
2570
|
-
.
|
2571
|
-
|
2698
|
+
.modal-backdrop {
|
2699
|
+
position: fixed;
|
2700
|
+
top: 0;
|
2701
|
+
right: 0;
|
2702
|
+
bottom: 0;
|
2703
|
+
left: 0;
|
2704
|
+
z-index: 1040;
|
2705
|
+
background-color: #000000;
|
2572
2706
|
}
|
2573
|
-
.
|
2574
|
-
|
2575
|
-
padding-right: 8px;
|
2576
|
-
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2577
|
-
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2578
|
-
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2707
|
+
.modal-backdrop.fade {
|
2708
|
+
opacity: 0;
|
2579
2709
|
}
|
2580
|
-
.
|
2710
|
+
.modal-backdrop, .modal-backdrop.fade.in {
|
2711
|
+
opacity: 0.8;
|
2712
|
+
filter: alpha(opacity=80);
|
2713
|
+
}
|
2714
|
+
.modal {
|
2715
|
+
position: fixed;
|
2716
|
+
top: 50%;
|
2717
|
+
left: 50%;
|
2718
|
+
z-index: 1050;
|
2719
|
+
max-height: 500px;
|
2720
|
+
overflow: auto;
|
2721
|
+
width: 560px;
|
2722
|
+
margin: -250px 0 0 -280px;
|
2723
|
+
background-color: #ffffff;
|
2724
|
+
border: 1px solid #999;
|
2725
|
+
border: 1px solid rgba(0, 0, 0, 0.3);
|
2726
|
+
*border: 1px solid #999;
|
2727
|
+
/* IE6-7 */
|
2728
|
+
|
2729
|
+
-webkit-border-radius: 6px;
|
2730
|
+
-moz-border-radius: 6px;
|
2731
|
+
border-radius: 6px;
|
2732
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2733
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2734
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2735
|
+
-webkit-background-clip: padding-box;
|
2736
|
+
-moz-background-clip: padding-box;
|
2737
|
+
background-clip: padding-box;
|
2738
|
+
}
|
2739
|
+
.modal.fade {
|
2740
|
+
-webkit-transition: opacity .3s linear, top .3s ease-out;
|
2741
|
+
-moz-transition: opacity .3s linear, top .3s ease-out;
|
2742
|
+
-ms-transition: opacity .3s linear, top .3s ease-out;
|
2743
|
+
-o-transition: opacity .3s linear, top .3s ease-out;
|
2744
|
+
transition: opacity .3s linear, top .3s ease-out;
|
2745
|
+
top: -25%;
|
2746
|
+
}
|
2747
|
+
.modal.fade.in {
|
2748
|
+
top: 50%;
|
2749
|
+
}
|
2750
|
+
.modal-header {
|
2751
|
+
padding: 9px 15px;
|
2752
|
+
border-bottom: 1px solid #eee;
|
2753
|
+
}
|
2754
|
+
.modal-header .close {
|
2755
|
+
margin-top: 2px;
|
2756
|
+
}
|
2757
|
+
.modal-body {
|
2758
|
+
padding: 15px;
|
2759
|
+
}
|
2760
|
+
.modal-footer {
|
2761
|
+
padding: 14px 15px 15px;
|
2762
|
+
margin-bottom: 0;
|
2763
|
+
background-color: #f5f5f5;
|
2764
|
+
border-top: 1px solid #ddd;
|
2765
|
+
-webkit-border-radius: 0 0 6px 6px;
|
2766
|
+
-moz-border-radius: 0 0 6px 6px;
|
2767
|
+
border-radius: 0 0 6px 6px;
|
2768
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2769
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2770
|
+
box-shadow: inset 0 1px 0 #ffffff;
|
2771
|
+
*zoom: 1;
|
2772
|
+
}
|
2773
|
+
.modal-footer:before, .modal-footer:after {
|
2774
|
+
display: table;
|
2775
|
+
content: "";
|
2776
|
+
}
|
2777
|
+
.modal-footer:after {
|
2778
|
+
clear: both;
|
2779
|
+
}
|
2780
|
+
.modal-footer .btn {
|
2781
|
+
float: right;
|
2782
|
+
margin-left: 5px;
|
2783
|
+
margin-bottom: 0;
|
2784
|
+
}
|
2785
|
+
.tooltip {
|
2786
|
+
position: absolute;
|
2787
|
+
z-index: 1020;
|
2581
2788
|
display: block;
|
2582
|
-
|
2583
|
-
|
2584
|
-
-
|
2585
|
-
|
2789
|
+
visibility: visible;
|
2790
|
+
padding: 5px;
|
2791
|
+
font-size: 11px;
|
2792
|
+
opacity: 0;
|
2793
|
+
filter: alpha(opacity=0);
|
2586
2794
|
}
|
2587
|
-
.
|
2588
|
-
|
2795
|
+
.tooltip.in {
|
2796
|
+
opacity: 0.8;
|
2797
|
+
filter: alpha(opacity=80);
|
2589
2798
|
}
|
2590
|
-
.
|
2591
|
-
|
2592
|
-
-webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2593
|
-
-moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2594
|
-
box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2799
|
+
.tooltip.top {
|
2800
|
+
margin-top: -2px;
|
2595
2801
|
}
|
2596
|
-
.
|
2597
|
-
margin-
|
2598
|
-
|
2802
|
+
.tooltip.right {
|
2803
|
+
margin-left: 2px;
|
2804
|
+
}
|
2805
|
+
.tooltip.bottom {
|
2806
|
+
margin-top: 2px;
|
2807
|
+
}
|
2808
|
+
.tooltip.left {
|
2809
|
+
margin-left: -2px;
|
2810
|
+
}
|
2811
|
+
.tooltip.top .tooltip-arrow {
|
2812
|
+
bottom: 0;
|
2813
|
+
left: 50%;
|
2814
|
+
margin-left: -5px;
|
2815
|
+
border-left: 5px solid transparent;
|
2816
|
+
border-right: 5px solid transparent;
|
2817
|
+
border-top: 5px solid #000000;
|
2818
|
+
}
|
2819
|
+
.tooltip.left .tooltip-arrow {
|
2820
|
+
top: 50%;
|
2821
|
+
right: 0;
|
2822
|
+
margin-top: -5px;
|
2823
|
+
border-top: 5px solid transparent;
|
2824
|
+
border-bottom: 5px solid transparent;
|
2825
|
+
border-left: 5px solid #000000;
|
2826
|
+
}
|
2827
|
+
.tooltip.bottom .tooltip-arrow {
|
2828
|
+
top: 0;
|
2829
|
+
left: 50%;
|
2830
|
+
margin-left: -5px;
|
2831
|
+
border-left: 5px solid transparent;
|
2832
|
+
border-right: 5px solid transparent;
|
2833
|
+
border-bottom: 5px solid #000000;
|
2599
2834
|
}
|
2600
|
-
.
|
2601
|
-
|
2602
|
-
|
2603
|
-
|
2604
|
-
border-top
|
2605
|
-
|
2606
|
-
-
|
2607
|
-
opacity: 0.75;
|
2835
|
+
.tooltip.right .tooltip-arrow {
|
2836
|
+
top: 50%;
|
2837
|
+
left: 0;
|
2838
|
+
margin-top: -5px;
|
2839
|
+
border-top: 5px solid transparent;
|
2840
|
+
border-bottom: 5px solid transparent;
|
2841
|
+
border-right: 5px solid #000000;
|
2608
2842
|
}
|
2609
|
-
.
|
2610
|
-
|
2611
|
-
|
2612
|
-
|
2613
|
-
|
2614
|
-
|
2843
|
+
.tooltip-inner {
|
2844
|
+
max-width: 200px;
|
2845
|
+
padding: 3px 8px;
|
2846
|
+
color: #ffffff;
|
2847
|
+
text-align: center;
|
2848
|
+
text-decoration: none;
|
2849
|
+
background-color: #000000;
|
2615
2850
|
-webkit-border-radius: 4px;
|
2616
2851
|
-moz-border-radius: 4px;
|
2617
2852
|
border-radius: 4px;
|
2618
2853
|
}
|
2619
|
-
.
|
2620
|
-
|
2854
|
+
.tooltip-arrow {
|
2855
|
+
position: absolute;
|
2856
|
+
width: 0;
|
2857
|
+
height: 0;
|
2621
2858
|
}
|
2622
|
-
.
|
2623
|
-
|
2624
|
-
|
2625
|
-
|
2626
|
-
|
2627
|
-
|
2859
|
+
.popover {
|
2860
|
+
position: absolute;
|
2861
|
+
top: 0;
|
2862
|
+
left: 0;
|
2863
|
+
z-index: 1010;
|
2864
|
+
display: none;
|
2865
|
+
padding: 5px;
|
2628
2866
|
}
|
2629
|
-
.
|
2630
|
-
|
2631
|
-
border-color: #cfe8c4;
|
2867
|
+
.popover.top {
|
2868
|
+
margin-top: -5px;
|
2632
2869
|
}
|
2633
|
-
.
|
2634
|
-
|
2870
|
+
.popover.right {
|
2871
|
+
margin-left: 5px;
|
2635
2872
|
}
|
2636
|
-
.
|
2637
|
-
|
2638
|
-
border-color: #e9c7c7;
|
2873
|
+
.popover.bottom {
|
2874
|
+
margin-top: 5px;
|
2639
2875
|
}
|
2640
|
-
.
|
2641
|
-
|
2642
|
-
.alert-danger .alert-heading,
|
2643
|
-
.alert-error .alert-heading {
|
2644
|
-
color: #B94A48;
|
2876
|
+
.popover.left {
|
2877
|
+
margin-left: -5px;
|
2645
2878
|
}
|
2646
|
-
.
|
2647
|
-
|
2648
|
-
|
2879
|
+
.popover.top .arrow {
|
2880
|
+
bottom: 0;
|
2881
|
+
left: 50%;
|
2882
|
+
margin-left: -5px;
|
2883
|
+
border-left: 5px solid transparent;
|
2884
|
+
border-right: 5px solid transparent;
|
2885
|
+
border-top: 5px solid #000000;
|
2649
2886
|
}
|
2650
|
-
.
|
2651
|
-
|
2887
|
+
.popover.right .arrow {
|
2888
|
+
top: 50%;
|
2889
|
+
left: 0;
|
2890
|
+
margin-top: -5px;
|
2891
|
+
border-top: 5px solid transparent;
|
2892
|
+
border-bottom: 5px solid transparent;
|
2893
|
+
border-right: 5px solid #000000;
|
2652
2894
|
}
|
2653
|
-
.
|
2654
|
-
|
2655
|
-
|
2895
|
+
.popover.bottom .arrow {
|
2896
|
+
top: 0;
|
2897
|
+
left: 50%;
|
2898
|
+
margin-left: -5px;
|
2899
|
+
border-left: 5px solid transparent;
|
2900
|
+
border-right: 5px solid transparent;
|
2901
|
+
border-bottom: 5px solid #000000;
|
2656
2902
|
}
|
2657
|
-
.
|
2658
|
-
|
2903
|
+
.popover.left .arrow {
|
2904
|
+
top: 50%;
|
2905
|
+
right: 0;
|
2906
|
+
margin-top: -5px;
|
2907
|
+
border-top: 5px solid transparent;
|
2908
|
+
border-bottom: 5px solid transparent;
|
2909
|
+
border-left: 5px solid #000000;
|
2659
2910
|
}
|
2660
|
-
.
|
2661
|
-
|
2911
|
+
.popover .arrow {
|
2912
|
+
position: absolute;
|
2913
|
+
width: 0;
|
2914
|
+
height: 0;
|
2915
|
+
}
|
2916
|
+
.popover .inner {
|
2917
|
+
padding: 3px;
|
2918
|
+
width: 280px;
|
2919
|
+
overflow: hidden;
|
2920
|
+
background: #000000;
|
2921
|
+
background: rgba(0, 0, 0, 0.8);
|
2922
|
+
-webkit-border-radius: 6px;
|
2923
|
+
-moz-border-radius: 6px;
|
2924
|
+
border-radius: 6px;
|
2925
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2926
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2927
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2928
|
+
}
|
2929
|
+
.popover .title {
|
2930
|
+
padding: 9px 15px;
|
2931
|
+
line-height: 1;
|
2932
|
+
background-color: #f5f5f5;
|
2933
|
+
border-bottom: 1px solid #eee;
|
2934
|
+
-webkit-border-radius: 3px 3px 0 0;
|
2935
|
+
-moz-border-radius: 3px 3px 0 0;
|
2936
|
+
border-radius: 3px 3px 0 0;
|
2937
|
+
}
|
2938
|
+
.popover .content {
|
2939
|
+
padding: 14px;
|
2940
|
+
background-color: #ffffff;
|
2941
|
+
-webkit-border-radius: 0 0 3px 3px;
|
2942
|
+
-moz-border-radius: 0 0 3px 3px;
|
2943
|
+
border-radius: 0 0 3px 3px;
|
2944
|
+
-webkit-background-clip: padding-box;
|
2945
|
+
-moz-background-clip: padding-box;
|
2946
|
+
background-clip: padding-box;
|
2947
|
+
}
|
2948
|
+
.popover .content p, .popover .content ul, .popover .content ol {
|
2949
|
+
margin-bottom: 0;
|
2662
2950
|
}
|
2663
2951
|
.thumbnails {
|
2664
2952
|
margin-left: -20px;
|
@@ -2713,16 +3001,16 @@ a.thumbnail:hover {
|
|
2713
3001
|
border-radius: 3px;
|
2714
3002
|
}
|
2715
3003
|
.label.important {
|
2716
|
-
background-color: #
|
3004
|
+
background-color: #b94a48;
|
2717
3005
|
}
|
2718
3006
|
.label.warning {
|
2719
3007
|
background-color: #f89406;
|
2720
3008
|
}
|
2721
3009
|
.label.success {
|
2722
|
-
background-color: #
|
3010
|
+
background-color: #468847;
|
2723
3011
|
}
|
2724
|
-
.label.
|
2725
|
-
background-color: #
|
3012
|
+
.label.info {
|
3013
|
+
background-color: #3a87ad;
|
2726
3014
|
}
|
2727
3015
|
@-webkit-keyframes progress-bar-stripes {
|
2728
3016
|
from {
|
@@ -2732,7 +3020,7 @@ a.thumbnail:hover {
|
|
2732
3020
|
background-position: 40px 0;
|
2733
3021
|
}
|
2734
3022
|
}
|
2735
|
-
|
3023
|
+
@-moz-keyframes progress-bar-stripes {
|
2736
3024
|
from {
|
2737
3025
|
background-position: 0 0;
|
2738
3026
|
}
|
@@ -2740,19 +3028,22 @@ a.thumbnail:hover {
|
|
2740
3028
|
background-position: 40px 0;
|
2741
3029
|
}
|
2742
3030
|
}
|
2743
|
-
|
2744
|
-
|
2745
|
-
|
2746
|
-
|
3031
|
+
@keyframes progress-bar-stripes {
|
3032
|
+
from {
|
3033
|
+
background-position: 0 0;
|
3034
|
+
}
|
3035
|
+
to {
|
3036
|
+
background-position: 40px 0;
|
3037
|
+
}
|
2747
3038
|
}
|
2748
3039
|
.progress {
|
3040
|
+
overflow: hidden;
|
2749
3041
|
height: 18px;
|
2750
3042
|
margin-bottom: 18px;
|
2751
|
-
background-color: #
|
2752
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f9f9f9));
|
3043
|
+
background-color: #f7f7f7;
|
2753
3044
|
background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2754
3045
|
background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2755
|
-
background-image: -webkit-gradient(linear,
|
3046
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
|
2756
3047
|
background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2757
3048
|
background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2758
3049
|
background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
|
@@ -2761,15 +3052,21 @@ a.thumbnail:hover {
|
|
2761
3052
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2762
3053
|
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2763
3054
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
3055
|
+
-webkit-border-radius: 4px;
|
3056
|
+
-moz-border-radius: 4px;
|
3057
|
+
border-radius: 4px;
|
2764
3058
|
}
|
2765
3059
|
.progress .bar {
|
2766
3060
|
width: 0%;
|
2767
3061
|
height: 18px;
|
2768
|
-
|
2769
|
-
|
3062
|
+
color: #ffffff;
|
3063
|
+
font-size: 12px;
|
3064
|
+
text-align: center;
|
3065
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
3066
|
+
background-color: #0e90d2;
|
2770
3067
|
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
|
2771
3068
|
background-image: -ms-linear-gradient(top, #149bdf, #0480be);
|
2772
|
-
background-image: -webkit-gradient(linear,
|
3069
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
|
2773
3070
|
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
|
2774
3071
|
background-image: -o-linear-gradient(top, #149bdf, #0480be);
|
2775
3072
|
background-image: linear-gradient(top, #149bdf, #0480be);
|
@@ -2806,11 +3103,10 @@ a.thumbnail:hover {
|
|
2806
3103
|
animation: progress-bar-stripes 2s linear infinite;
|
2807
3104
|
}
|
2808
3105
|
.progress.danger .bar {
|
2809
|
-
background-color: #
|
2810
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
3106
|
+
background-color: #dd514c;
|
2811
3107
|
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
2812
3108
|
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
2813
|
-
background-image: -webkit-gradient(linear,
|
3109
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
|
2814
3110
|
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
2815
3111
|
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
2816
3112
|
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
@@ -2827,11 +3123,10 @@ a.thumbnail:hover {
|
|
2827
3123
|
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2828
3124
|
}
|
2829
3125
|
.progress.success .bar {
|
2830
|
-
background-color: #
|
2831
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
3126
|
+
background-color: #5eb95e;
|
2832
3127
|
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
2833
3128
|
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
2834
|
-
background-image: -webkit-gradient(linear,
|
3129
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
|
2835
3130
|
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
2836
3131
|
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
2837
3132
|
background-image: linear-gradient(top, #62c462, #57a957);
|
@@ -2848,11 +3143,10 @@ a.thumbnail:hover {
|
|
2848
3143
|
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2849
3144
|
}
|
2850
3145
|
.progress.info .bar {
|
2851
|
-
background-color: #
|
2852
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
3146
|
+
background-color: #4bb1cf;
|
2853
3147
|
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
2854
3148
|
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
2855
|
-
background-image: -webkit-gradient(linear,
|
3149
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
|
2856
3150
|
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
2857
3151
|
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
2858
3152
|
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
@@ -2872,17 +3166,18 @@ a.thumbnail:hover {
|
|
2872
3166
|
margin-bottom: 18px;
|
2873
3167
|
}
|
2874
3168
|
.accordion-group {
|
2875
|
-
|
3169
|
+
margin-bottom: 2px;
|
3170
|
+
border: 1px solid #e5e5e5;
|
2876
3171
|
-webkit-border-radius: 4px;
|
2877
3172
|
-moz-border-radius: 4px;
|
2878
3173
|
border-radius: 4px;
|
2879
3174
|
}
|
2880
3175
|
.accordion-heading {
|
2881
|
-
padding: 8px 15px;
|
2882
3176
|
border-bottom: 0;
|
2883
3177
|
}
|
2884
|
-
.accordion-
|
2885
|
-
|
3178
|
+
.accordion-heading .accordion-toggle {
|
3179
|
+
display: block;
|
3180
|
+
padding: 8px 15px;
|
2886
3181
|
}
|
2887
3182
|
.accordion-inner {
|
2888
3183
|
padding: 9px 15px;
|
@@ -2906,6 +3201,10 @@ a.thumbnail:hover {
|
|
2906
3201
|
-o-transition: 0.6s ease-in-out left;
|
2907
3202
|
transition: 0.6s ease-in-out left;
|
2908
3203
|
}
|
3204
|
+
.carousel .item > img {
|
3205
|
+
display: block;
|
3206
|
+
line-height: 1;
|
3207
|
+
}
|
2909
3208
|
.carousel .active, .carousel .next, .carousel .prev {
|
2910
3209
|
display: block;
|
2911
3210
|
}
|
@@ -2942,13 +3241,15 @@ a.thumbnail:hover {
|
|
2942
3241
|
font-size: 60px;
|
2943
3242
|
font-weight: 100;
|
2944
3243
|
line-height: 30px;
|
2945
|
-
color: #
|
3244
|
+
color: #ffffff;
|
2946
3245
|
text-align: center;
|
2947
|
-
background: #
|
2948
|
-
|
2949
|
-
-webkit-border-radius:
|
2950
|
-
-moz-border-radius:
|
2951
|
-
border-radius:
|
3246
|
+
background: #222222;
|
3247
|
+
border: 3px solid #ffffff;
|
3248
|
+
-webkit-border-radius: 23px;
|
3249
|
+
-moz-border-radius: 23px;
|
3250
|
+
border-radius: 23px;
|
3251
|
+
opacity: 0.5;
|
3252
|
+
filter: alpha(opacity=50);
|
2952
3253
|
}
|
2953
3254
|
.carousel-control.right {
|
2954
3255
|
left: auto;
|
@@ -2957,8 +3258,8 @@ a.thumbnail:hover {
|
|
2957
3258
|
.carousel-control:hover {
|
2958
3259
|
color: #ffffff;
|
2959
3260
|
text-decoration: none;
|
2960
|
-
|
2961
|
-
|
3261
|
+
opacity: 0.9;
|
3262
|
+
filter: alpha(opacity=90);
|
2962
3263
|
}
|
2963
3264
|
.carousel-caption {
|
2964
3265
|
position: absolute;
|
@@ -2972,6 +3273,25 @@ a.thumbnail:hover {
|
|
2972
3273
|
.carousel-caption h4, .carousel-caption p {
|
2973
3274
|
color: #ffffff;
|
2974
3275
|
}
|
3276
|
+
.hero-unit {
|
3277
|
+
padding: 60px;
|
3278
|
+
margin-bottom: 30px;
|
3279
|
+
background-color: #f5f5f5;
|
3280
|
+
-webkit-border-radius: 6px;
|
3281
|
+
-moz-border-radius: 6px;
|
3282
|
+
border-radius: 6px;
|
3283
|
+
}
|
3284
|
+
.hero-unit h1 {
|
3285
|
+
margin-bottom: 0;
|
3286
|
+
font-size: 60px;
|
3287
|
+
line-height: 1;
|
3288
|
+
letter-spacing: -1px;
|
3289
|
+
}
|
3290
|
+
.hero-unit p {
|
3291
|
+
font-size: 18px;
|
3292
|
+
font-weight: 200;
|
3293
|
+
line-height: 27px;
|
3294
|
+
}
|
2975
3295
|
.pull-right {
|
2976
3296
|
float: right;
|
2977
3297
|
}
|
@@ -2987,248 +3307,3 @@ a.thumbnail:hover {
|
|
2987
3307
|
.invisible {
|
2988
3308
|
visibility: hidden;
|
2989
3309
|
}
|
2990
|
-
.hidden {
|
2991
|
-
display: none;
|
2992
|
-
visibility: hidden;
|
2993
|
-
}
|
2994
|
-
@media (max-width: 480px) {
|
2995
|
-
.navbar .nav {
|
2996
|
-
position: absolute;
|
2997
|
-
top: 0;
|
2998
|
-
left: 0;
|
2999
|
-
width: 180px;
|
3000
|
-
padding-top: 40px;
|
3001
|
-
list-style: none;
|
3002
|
-
}
|
3003
|
-
.navbar .nav, .navbar .nav > li:last-child a {
|
3004
|
-
-webkit-border-radius: 0 0 4px 0;
|
3005
|
-
-moz-border-radius: 0 0 4px 0;
|
3006
|
-
border-radius: 0 0 4px 0;
|
3007
|
-
}
|
3008
|
-
.navbar .nav > li {
|
3009
|
-
float: none;
|
3010
|
-
display: none;
|
3011
|
-
}
|
3012
|
-
.navbar .nav > li > a {
|
3013
|
-
float: none;
|
3014
|
-
background-color: #222;
|
3015
|
-
}
|
3016
|
-
.navbar .nav > .active {
|
3017
|
-
display: block;
|
3018
|
-
position: absolute;
|
3019
|
-
top: 0;
|
3020
|
-
left: 0;
|
3021
|
-
}
|
3022
|
-
.navbar .nav > .active > a {
|
3023
|
-
background-color: transparent;
|
3024
|
-
}
|
3025
|
-
.navbar .nav > .active > a:hover {
|
3026
|
-
background-color: #333;
|
3027
|
-
}
|
3028
|
-
.navbar .nav > .active > a:after {
|
3029
|
-
display: inline-block;
|
3030
|
-
width: 0;
|
3031
|
-
height: 0;
|
3032
|
-
margin-top: 8px;
|
3033
|
-
margin-left: 6px;
|
3034
|
-
text-indent: -99999px;
|
3035
|
-
vertical-align: top;
|
3036
|
-
border-left: 4px solid transparent;
|
3037
|
-
border-right: 4px solid transparent;
|
3038
|
-
border-top: 4px solid #ffffff;
|
3039
|
-
filter: alpha(opacity=100);
|
3040
|
-
-moz-opacity: 1;
|
3041
|
-
opacity: 1;
|
3042
|
-
content: "↓";
|
3043
|
-
}
|
3044
|
-
.navbar .nav:hover > li {
|
3045
|
-
display: block;
|
3046
|
-
}
|
3047
|
-
.navbar .nav:hover > li > a:hover {
|
3048
|
-
background-color: #333;
|
3049
|
-
}
|
3050
|
-
.form-horizontal .control-group > label {
|
3051
|
-
float: none;
|
3052
|
-
width: auto;
|
3053
|
-
padding-top: 0;
|
3054
|
-
text-align: left;
|
3055
|
-
}
|
3056
|
-
.form-horizontal .controls {
|
3057
|
-
margin-left: 0;
|
3058
|
-
}
|
3059
|
-
.form-horizontal .control-list {
|
3060
|
-
padding-top: 0;
|
3061
|
-
}
|
3062
|
-
.form-horizontal .form-actions {
|
3063
|
-
padding-left: 0;
|
3064
|
-
}
|
3065
|
-
.modal {
|
3066
|
-
position: absolute;
|
3067
|
-
top: 20px;
|
3068
|
-
left: 20px;
|
3069
|
-
right: 20px;
|
3070
|
-
width: auto;
|
3071
|
-
margin: 0;
|
3072
|
-
}
|
3073
|
-
.modal.fade.in {
|
3074
|
-
top: auto;
|
3075
|
-
}
|
3076
|
-
.modal-header .close {
|
3077
|
-
padding: 10px;
|
3078
|
-
}
|
3079
|
-
}
|
3080
|
-
@media (max-width: 768px) {
|
3081
|
-
.navbar-fixed {
|
3082
|
-
position: absolute;
|
3083
|
-
}
|
3084
|
-
.navbar-fixed .nav {
|
3085
|
-
float: none;
|
3086
|
-
}
|
3087
|
-
.container {
|
3088
|
-
width: auto;
|
3089
|
-
padding: 0 20px;
|
3090
|
-
}
|
3091
|
-
.row {
|
3092
|
-
margin-left: 0;
|
3093
|
-
}
|
3094
|
-
.row > [class*="span"] {
|
3095
|
-
float: none;
|
3096
|
-
display: block;
|
3097
|
-
width: auto;
|
3098
|
-
margin: 0;
|
3099
|
-
}
|
3100
|
-
}
|
3101
|
-
@media (min-width: 768px) and (max-width: 940px) {
|
3102
|
-
.container {
|
3103
|
-
width: 748px;
|
3104
|
-
}
|
3105
|
-
.span1 {
|
3106
|
-
width: 44px;
|
3107
|
-
}
|
3108
|
-
.span2 {
|
3109
|
-
width: 108px;
|
3110
|
-
}
|
3111
|
-
.span3 {
|
3112
|
-
width: 172px;
|
3113
|
-
}
|
3114
|
-
.span4 {
|
3115
|
-
width: 236px;
|
3116
|
-
}
|
3117
|
-
.span5 {
|
3118
|
-
width: 300px;
|
3119
|
-
}
|
3120
|
-
.span6 {
|
3121
|
-
width: 364px;
|
3122
|
-
}
|
3123
|
-
.span7 {
|
3124
|
-
width: 428px;
|
3125
|
-
}
|
3126
|
-
.span8 {
|
3127
|
-
width: 492px;
|
3128
|
-
}
|
3129
|
-
.span9 {
|
3130
|
-
width: 556px;
|
3131
|
-
}
|
3132
|
-
.span10 {
|
3133
|
-
width: 620px;
|
3134
|
-
}
|
3135
|
-
.span11 {
|
3136
|
-
width: 684px;
|
3137
|
-
}
|
3138
|
-
.span12 {
|
3139
|
-
width: 748px;
|
3140
|
-
}
|
3141
|
-
.offset1 {
|
3142
|
-
margin-left: 64px;
|
3143
|
-
}
|
3144
|
-
.offset2 {
|
3145
|
-
margin-left: 128px;
|
3146
|
-
}
|
3147
|
-
.offset3 {
|
3148
|
-
margin-left: 192px;
|
3149
|
-
}
|
3150
|
-
.offset4 {
|
3151
|
-
margin-left: 256px;
|
3152
|
-
}
|
3153
|
-
.offset5 {
|
3154
|
-
margin-left: 320px;
|
3155
|
-
}
|
3156
|
-
.offset6 {
|
3157
|
-
margin-left: 384px;
|
3158
|
-
}
|
3159
|
-
.offset7 {
|
3160
|
-
margin-left: 448px;
|
3161
|
-
}
|
3162
|
-
.offset8 {
|
3163
|
-
margin-left: 512px;
|
3164
|
-
}
|
3165
|
-
.offset9 {
|
3166
|
-
margin-left: 576px;
|
3167
|
-
}
|
3168
|
-
.offset10 {
|
3169
|
-
margin-left: 640px;
|
3170
|
-
}
|
3171
|
-
.offset11 {
|
3172
|
-
margin-left: 704px;
|
3173
|
-
}
|
3174
|
-
.offset12 {
|
3175
|
-
margin-left: 768px;
|
3176
|
-
}
|
3177
|
-
}
|
3178
|
-
/*
|
3179
|
-
@media (min-width: 1210px) {
|
3180
|
-
|
3181
|
-
// Reset grid variables
|
3182
|
-
@gridColumns: 12;
|
3183
|
-
@gridColumnWidth: 70px;
|
3184
|
-
@gridGutterWidth: 30px;
|
3185
|
-
@siteWidth: 1170px;
|
3186
|
-
|
3187
|
-
// Bring grid mixins to recalculate widths
|
3188
|
-
.columns(@columnSpan: 1) {
|
3189
|
-
width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1));
|
3190
|
-
}
|
3191
|
-
.offset(@columnOffset: 1) {
|
3192
|
-
margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) + @gridGutterWidth;
|
3193
|
-
}
|
3194
|
-
|
3195
|
-
.container {
|
3196
|
-
width: @siteWidth;
|
3197
|
-
}
|
3198
|
-
.row {
|
3199
|
-
margin-left: @gridGutterWidth * -1;
|
3200
|
-
}
|
3201
|
-
[class*="span"] {
|
3202
|
-
margin-left: @gridGutterWidth;
|
3203
|
-
}
|
3204
|
-
|
3205
|
-
// Default columns
|
3206
|
-
.span1 { .columns(1); }
|
3207
|
-
.span2 { .columns(2); }
|
3208
|
-
.span3 { .columns(3); }
|
3209
|
-
.span4 { .columns(4); }
|
3210
|
-
.span5 { .columns(5); }
|
3211
|
-
.span6 { .columns(6); }
|
3212
|
-
.span7 { .columns(7); }
|
3213
|
-
.span8 { .columns(8); }
|
3214
|
-
.span9 { .columns(9); }
|
3215
|
-
.span10 { .columns(10); }
|
3216
|
-
.span11 { .columns(11); }
|
3217
|
-
.span12 { .columns(12); }
|
3218
|
-
|
3219
|
-
// Offset column options
|
3220
|
-
.offset1 { .offset(1); }
|
3221
|
-
.offset2 { .offset(2); }
|
3222
|
-
.offset3 { .offset(3); }
|
3223
|
-
.offset4 { .offset(4); }
|
3224
|
-
.offset5 { .offset(5); }
|
3225
|
-
.offset6 { .offset(6); }
|
3226
|
-
.offset7 { .offset(7); }
|
3227
|
-
.offset8 { .offset(8); }
|
3228
|
-
.offset9 { .offset(9); }
|
3229
|
-
.offset10 { .offset(10); }
|
3230
|
-
.offset11 { .offset(11); }
|
3231
|
-
.offset12 { .offset(12); }
|
3232
|
-
|
3233
|
-
}
|
3234
|
-
*/
|