bootstrap-rails-engine 1.1.0 → 1.2.0
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/.gitignore +1 -0
- data/README.md +2 -2
- data/lib/bootstrap-rails-engine/version.rb +2 -2
- data/lib/bootstrap-rails-engine.rb +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap-datepicker.js +251 -172
- data/vendor/assets/javascripts/bootstrap/bootstrap.js +107 -109
- data/vendor/assets/javascripts/bootstrap/bootstrap.min.js +1 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap-datepicker.css +55 -5
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +56 -8
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.min.css +2 -2
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +567 -298
- data/vendor/assets/stylesheets/bootstrap/bootstrap.min.css +2 -2
- metadata +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Bootstrap v2.1
|
|
2
|
+
* Bootstrap v2.2.1
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2012 Twitter, Inc
|
|
5
5
|
* Licensed under the Apache License v2.0
|
|
@@ -67,6 +67,7 @@ sub {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
img {
|
|
70
|
+
width: auto\9;
|
|
70
71
|
height: auto;
|
|
71
72
|
max-width: 100%;
|
|
72
73
|
vertical-align: middle;
|
|
@@ -74,7 +75,8 @@ img {
|
|
|
74
75
|
-ms-interpolation-mode: bicubic;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
|
-
#map_canvas img
|
|
78
|
+
#map_canvas img,
|
|
79
|
+
.google-maps img {
|
|
78
80
|
max-width: none;
|
|
79
81
|
}
|
|
80
82
|
|
|
@@ -100,7 +102,7 @@ input::-moz-focus-inner {
|
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
button,
|
|
103
|
-
input[type="button"],
|
|
105
|
+
html input[type="button"],
|
|
104
106
|
input[type="reset"],
|
|
105
107
|
input[type="submit"] {
|
|
106
108
|
cursor: pointer;
|
|
@@ -215,6 +217,7 @@ a:hover {
|
|
|
215
217
|
|
|
216
218
|
[class*="span"] {
|
|
217
219
|
float: left;
|
|
220
|
+
min-height: 1px;
|
|
218
221
|
margin-left: 20px;
|
|
219
222
|
}
|
|
220
223
|
|
|
@@ -353,6 +356,10 @@ a:hover {
|
|
|
353
356
|
margin-left: 0;
|
|
354
357
|
}
|
|
355
358
|
|
|
359
|
+
.row-fluid .controls-row [class*="span"] + [class*="span"] {
|
|
360
|
+
margin-left: 2.127659574468085%;
|
|
361
|
+
}
|
|
362
|
+
|
|
356
363
|
.row-fluid .span12 {
|
|
357
364
|
width: 100%;
|
|
358
365
|
*width: 99.94680851063829%;
|
|
@@ -583,7 +590,7 @@ p {
|
|
|
583
590
|
|
|
584
591
|
.lead {
|
|
585
592
|
margin-bottom: 20px;
|
|
586
|
-
font-size:
|
|
593
|
+
font-size: 21px;
|
|
587
594
|
font-weight: 200;
|
|
588
595
|
line-height: 30px;
|
|
589
596
|
}
|
|
@@ -608,6 +615,38 @@ cite {
|
|
|
608
615
|
color: #999999;
|
|
609
616
|
}
|
|
610
617
|
|
|
618
|
+
.text-warning {
|
|
619
|
+
color: #c09853;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
a.text-warning:hover {
|
|
623
|
+
color: #a47e3c;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.text-error {
|
|
627
|
+
color: #b94a48;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
a.text-error:hover {
|
|
631
|
+
color: #953b39;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.text-info {
|
|
635
|
+
color: #3a87ad;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
a.text-info:hover {
|
|
639
|
+
color: #2d6987;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.text-success {
|
|
643
|
+
color: #468847;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
a.text-success:hover {
|
|
647
|
+
color: #356635;
|
|
648
|
+
}
|
|
649
|
+
|
|
611
650
|
h1,
|
|
612
651
|
h2,
|
|
613
652
|
h3,
|
|
@@ -617,7 +656,7 @@ h6 {
|
|
|
617
656
|
margin: 10px 0;
|
|
618
657
|
font-family: inherit;
|
|
619
658
|
font-weight: bold;
|
|
620
|
-
line-height:
|
|
659
|
+
line-height: 20px;
|
|
621
660
|
color: inherit;
|
|
622
661
|
text-rendering: optimizelegibility;
|
|
623
662
|
}
|
|
@@ -633,42 +672,42 @@ h6 small {
|
|
|
633
672
|
color: #999999;
|
|
634
673
|
}
|
|
635
674
|
|
|
636
|
-
h1
|
|
637
|
-
|
|
675
|
+
h1,
|
|
676
|
+
h2,
|
|
677
|
+
h3 {
|
|
638
678
|
line-height: 40px;
|
|
639
679
|
}
|
|
640
680
|
|
|
681
|
+
h1 {
|
|
682
|
+
font-size: 38.5px;
|
|
683
|
+
}
|
|
684
|
+
|
|
641
685
|
h2 {
|
|
642
|
-
font-size:
|
|
643
|
-
line-height: 40px;
|
|
686
|
+
font-size: 31.5px;
|
|
644
687
|
}
|
|
645
688
|
|
|
646
689
|
h3 {
|
|
647
|
-
font-size:
|
|
648
|
-
line-height: 40px;
|
|
690
|
+
font-size: 24.5px;
|
|
649
691
|
}
|
|
650
692
|
|
|
651
693
|
h4 {
|
|
652
|
-
font-size:
|
|
653
|
-
line-height: 20px;
|
|
694
|
+
font-size: 17.5px;
|
|
654
695
|
}
|
|
655
696
|
|
|
656
697
|
h5 {
|
|
657
698
|
font-size: 14px;
|
|
658
|
-
line-height: 20px;
|
|
659
699
|
}
|
|
660
700
|
|
|
661
701
|
h6 {
|
|
662
|
-
font-size:
|
|
663
|
-
line-height: 20px;
|
|
702
|
+
font-size: 11.9px;
|
|
664
703
|
}
|
|
665
704
|
|
|
666
705
|
h1 small {
|
|
667
|
-
font-size:
|
|
706
|
+
font-size: 24.5px;
|
|
668
707
|
}
|
|
669
708
|
|
|
670
709
|
h2 small {
|
|
671
|
-
font-size:
|
|
710
|
+
font-size: 17.5px;
|
|
672
711
|
}
|
|
673
712
|
|
|
674
713
|
h3 small {
|
|
@@ -725,9 +764,24 @@ dd {
|
|
|
725
764
|
margin-left: 10px;
|
|
726
765
|
}
|
|
727
766
|
|
|
767
|
+
.dl-horizontal {
|
|
768
|
+
*zoom: 1;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.dl-horizontal:before,
|
|
772
|
+
.dl-horizontal:after {
|
|
773
|
+
display: table;
|
|
774
|
+
line-height: 0;
|
|
775
|
+
content: "";
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.dl-horizontal:after {
|
|
779
|
+
clear: both;
|
|
780
|
+
}
|
|
781
|
+
|
|
728
782
|
.dl-horizontal dt {
|
|
729
783
|
float: left;
|
|
730
|
-
width:
|
|
784
|
+
width: 160px;
|
|
731
785
|
overflow: hidden;
|
|
732
786
|
clear: left;
|
|
733
787
|
text-align: right;
|
|
@@ -736,7 +790,7 @@ dd {
|
|
|
736
790
|
}
|
|
737
791
|
|
|
738
792
|
.dl-horizontal dd {
|
|
739
|
-
margin-left:
|
|
793
|
+
margin-left: 180px;
|
|
740
794
|
}
|
|
741
795
|
|
|
742
796
|
hr {
|
|
@@ -746,7 +800,8 @@ hr {
|
|
|
746
800
|
border-bottom: 1px solid #ffffff;
|
|
747
801
|
}
|
|
748
802
|
|
|
749
|
-
abbr[title]
|
|
803
|
+
abbr[title],
|
|
804
|
+
abbr[data-original-title] {
|
|
750
805
|
cursor: help;
|
|
751
806
|
border-bottom: 1px dotted #999999;
|
|
752
807
|
}
|
|
@@ -935,18 +990,20 @@ input[type="color"],
|
|
|
935
990
|
display: inline-block;
|
|
936
991
|
height: 20px;
|
|
937
992
|
padding: 4px 6px;
|
|
938
|
-
margin-bottom:
|
|
993
|
+
margin-bottom: 10px;
|
|
939
994
|
font-size: 14px;
|
|
940
995
|
line-height: 20px;
|
|
941
996
|
color: #555555;
|
|
942
|
-
-
|
|
943
|
-
|
|
944
|
-
|
|
997
|
+
vertical-align: middle;
|
|
998
|
+
-webkit-border-radius: 4px;
|
|
999
|
+
-moz-border-radius: 4px;
|
|
1000
|
+
border-radius: 4px;
|
|
945
1001
|
}
|
|
946
1002
|
|
|
947
1003
|
input,
|
|
948
|
-
textarea
|
|
949
|
-
|
|
1004
|
+
textarea,
|
|
1005
|
+
.uneditable-input {
|
|
1006
|
+
width: 206px;
|
|
950
1007
|
}
|
|
951
1008
|
|
|
952
1009
|
textarea {
|
|
@@ -1039,7 +1096,7 @@ input[type="file"] {
|
|
|
1039
1096
|
select {
|
|
1040
1097
|
width: 220px;
|
|
1041
1098
|
background-color: #ffffff;
|
|
1042
|
-
border: 1px solid #
|
|
1099
|
+
border: 1px solid #cccccc;
|
|
1043
1100
|
}
|
|
1044
1101
|
|
|
1045
1102
|
select[multiple],
|
|
@@ -1094,14 +1151,14 @@ textarea::-webkit-input-placeholder {
|
|
|
1094
1151
|
|
|
1095
1152
|
.radio,
|
|
1096
1153
|
.checkbox {
|
|
1097
|
-
min-height:
|
|
1098
|
-
padding-left:
|
|
1154
|
+
min-height: 20px;
|
|
1155
|
+
padding-left: 20px;
|
|
1099
1156
|
}
|
|
1100
1157
|
|
|
1101
1158
|
.radio input[type="radio"],
|
|
1102
1159
|
.checkbox input[type="checkbox"] {
|
|
1103
1160
|
float: left;
|
|
1104
|
-
margin-left: -
|
|
1161
|
+
margin-left: -20px;
|
|
1105
1162
|
}
|
|
1106
1163
|
|
|
1107
1164
|
.controls > .radio:first-child,
|
|
@@ -1268,10 +1325,16 @@ textarea.span1,
|
|
|
1268
1325
|
clear: both;
|
|
1269
1326
|
}
|
|
1270
1327
|
|
|
1271
|
-
.controls-row [class*="span"]
|
|
1328
|
+
.controls-row [class*="span"],
|
|
1329
|
+
.row-fluid .controls-row [class*="span"] {
|
|
1272
1330
|
float: left;
|
|
1273
1331
|
}
|
|
1274
1332
|
|
|
1333
|
+
.controls-row .checkbox[class*="span"],
|
|
1334
|
+
.controls-row .radio[class*="span"] {
|
|
1335
|
+
padding-top: 5px;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1275
1338
|
input[disabled],
|
|
1276
1339
|
select[disabled],
|
|
1277
1340
|
textarea[disabled],
|
|
@@ -1301,14 +1364,17 @@ input[type="checkbox"][readonly] {
|
|
|
1301
1364
|
.control-group.warning select,
|
|
1302
1365
|
.control-group.warning textarea {
|
|
1303
1366
|
color: #c09853;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.control-group.warning input,
|
|
1370
|
+
.control-group.warning select,
|
|
1371
|
+
.control-group.warning textarea {
|
|
1304
1372
|
border-color: #c09853;
|
|
1305
1373
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1306
1374
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1307
1375
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1308
1376
|
}
|
|
1309
1377
|
|
|
1310
|
-
.control-group.warning .checkbox:focus,
|
|
1311
|
-
.control-group.warning .radio:focus,
|
|
1312
1378
|
.control-group.warning input:focus,
|
|
1313
1379
|
.control-group.warning select:focus,
|
|
1314
1380
|
.control-group.warning textarea:focus {
|
|
@@ -1337,14 +1403,17 @@ input[type="checkbox"][readonly] {
|
|
|
1337
1403
|
.control-group.error select,
|
|
1338
1404
|
.control-group.error textarea {
|
|
1339
1405
|
color: #b94a48;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.control-group.error input,
|
|
1409
|
+
.control-group.error select,
|
|
1410
|
+
.control-group.error textarea {
|
|
1340
1411
|
border-color: #b94a48;
|
|
1341
1412
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1342
1413
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1343
1414
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1344
1415
|
}
|
|
1345
1416
|
|
|
1346
|
-
.control-group.error .checkbox:focus,
|
|
1347
|
-
.control-group.error .radio:focus,
|
|
1348
1417
|
.control-group.error input:focus,
|
|
1349
1418
|
.control-group.error select:focus,
|
|
1350
1419
|
.control-group.error textarea:focus {
|
|
@@ -1373,14 +1442,17 @@ input[type="checkbox"][readonly] {
|
|
|
1373
1442
|
.control-group.success select,
|
|
1374
1443
|
.control-group.success textarea {
|
|
1375
1444
|
color: #468847;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
.control-group.success input,
|
|
1448
|
+
.control-group.success select,
|
|
1449
|
+
.control-group.success textarea {
|
|
1376
1450
|
border-color: #468847;
|
|
1377
1451
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1378
1452
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1379
1453
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1380
1454
|
}
|
|
1381
1455
|
|
|
1382
|
-
.control-group.success .checkbox:focus,
|
|
1383
|
-
.control-group.success .radio:focus,
|
|
1384
1456
|
.control-group.success input:focus,
|
|
1385
1457
|
.control-group.success select:focus,
|
|
1386
1458
|
.control-group.success textarea:focus {
|
|
@@ -1397,6 +1469,45 @@ input[type="checkbox"][readonly] {
|
|
|
1397
1469
|
border-color: #468847;
|
|
1398
1470
|
}
|
|
1399
1471
|
|
|
1472
|
+
.control-group.info > label,
|
|
1473
|
+
.control-group.info .help-block,
|
|
1474
|
+
.control-group.info .help-inline {
|
|
1475
|
+
color: #3a87ad;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.control-group.info .checkbox,
|
|
1479
|
+
.control-group.info .radio,
|
|
1480
|
+
.control-group.info input,
|
|
1481
|
+
.control-group.info select,
|
|
1482
|
+
.control-group.info textarea {
|
|
1483
|
+
color: #3a87ad;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
.control-group.info input,
|
|
1487
|
+
.control-group.info select,
|
|
1488
|
+
.control-group.info textarea {
|
|
1489
|
+
border-color: #3a87ad;
|
|
1490
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1491
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1492
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.control-group.info input:focus,
|
|
1496
|
+
.control-group.info select:focus,
|
|
1497
|
+
.control-group.info textarea:focus {
|
|
1498
|
+
border-color: #2d6987;
|
|
1499
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
|
1500
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
|
1501
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
.control-group.info .input-prepend .add-on,
|
|
1505
|
+
.control-group.info .input-append .add-on {
|
|
1506
|
+
color: #3a87ad;
|
|
1507
|
+
background-color: #d9edf7;
|
|
1508
|
+
border-color: #3a87ad;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1400
1511
|
input:focus:required:invalid,
|
|
1401
1512
|
textarea:focus:required:invalid,
|
|
1402
1513
|
select:focus:required:invalid {
|
|
@@ -1458,6 +1569,17 @@ select:focus:required:invalid:focus {
|
|
|
1458
1569
|
white-space: nowrap;
|
|
1459
1570
|
}
|
|
1460
1571
|
|
|
1572
|
+
.input-append input,
|
|
1573
|
+
.input-prepend input,
|
|
1574
|
+
.input-append select,
|
|
1575
|
+
.input-prepend select,
|
|
1576
|
+
.input-append .uneditable-input,
|
|
1577
|
+
.input-prepend .uneditable-input,
|
|
1578
|
+
.input-append .dropdown-menu,
|
|
1579
|
+
.input-prepend .dropdown-menu {
|
|
1580
|
+
font-size: 14px;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1461
1583
|
.input-append input,
|
|
1462
1584
|
.input-prepend input,
|
|
1463
1585
|
.input-append select,
|
|
@@ -1467,11 +1589,10 @@ select:focus:required:invalid:focus {
|
|
|
1467
1589
|
position: relative;
|
|
1468
1590
|
margin-bottom: 0;
|
|
1469
1591
|
*margin-left: 0;
|
|
1470
|
-
font-size: 14px;
|
|
1471
1592
|
vertical-align: top;
|
|
1472
|
-
-webkit-border-radius: 0
|
|
1473
|
-
-moz-border-radius: 0
|
|
1474
|
-
border-radius: 0
|
|
1593
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1594
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1595
|
+
border-radius: 0 4px 4px 0;
|
|
1475
1596
|
}
|
|
1476
1597
|
|
|
1477
1598
|
.input-append input:focus,
|
|
@@ -1503,7 +1624,6 @@ select:focus:required:invalid:focus {
|
|
|
1503
1624
|
.input-prepend .add-on,
|
|
1504
1625
|
.input-append .btn,
|
|
1505
1626
|
.input-prepend .btn {
|
|
1506
|
-
margin-left: -1px;
|
|
1507
1627
|
vertical-align: top;
|
|
1508
1628
|
-webkit-border-radius: 0;
|
|
1509
1629
|
-moz-border-radius: 0;
|
|
@@ -1523,24 +1643,38 @@ select:focus:required:invalid:focus {
|
|
|
1523
1643
|
|
|
1524
1644
|
.input-prepend .add-on:first-child,
|
|
1525
1645
|
.input-prepend .btn:first-child {
|
|
1526
|
-
-webkit-border-radius:
|
|
1527
|
-
-moz-border-radius:
|
|
1528
|
-
border-radius:
|
|
1646
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1647
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1648
|
+
border-radius: 4px 0 0 4px;
|
|
1529
1649
|
}
|
|
1530
1650
|
|
|
1531
1651
|
.input-append input,
|
|
1532
1652
|
.input-append select,
|
|
1533
1653
|
.input-append .uneditable-input {
|
|
1534
|
-
-webkit-border-radius:
|
|
1535
|
-
-moz-border-radius:
|
|
1536
|
-
border-radius:
|
|
1654
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1655
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1656
|
+
border-radius: 4px 0 0 4px;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
.input-append input + .btn-group .btn,
|
|
1660
|
+
.input-append select + .btn-group .btn,
|
|
1661
|
+
.input-append .uneditable-input + .btn-group .btn {
|
|
1662
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1663
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1664
|
+
border-radius: 0 4px 4px 0;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.input-append .add-on,
|
|
1668
|
+
.input-append .btn,
|
|
1669
|
+
.input-append .btn-group {
|
|
1670
|
+
margin-left: -1px;
|
|
1537
1671
|
}
|
|
1538
1672
|
|
|
1539
1673
|
.input-append .add-on:last-child,
|
|
1540
1674
|
.input-append .btn:last-child {
|
|
1541
|
-
-webkit-border-radius: 0
|
|
1542
|
-
-moz-border-radius: 0
|
|
1543
|
-
border-radius: 0
|
|
1675
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1676
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1677
|
+
border-radius: 0 4px 4px 0;
|
|
1544
1678
|
}
|
|
1545
1679
|
|
|
1546
1680
|
.input-prepend.input-append input,
|
|
@@ -1551,20 +1685,32 @@ select:focus:required:invalid:focus {
|
|
|
1551
1685
|
border-radius: 0;
|
|
1552
1686
|
}
|
|
1553
1687
|
|
|
1688
|
+
.input-prepend.input-append input + .btn-group .btn,
|
|
1689
|
+
.input-prepend.input-append select + .btn-group .btn,
|
|
1690
|
+
.input-prepend.input-append .uneditable-input + .btn-group .btn {
|
|
1691
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1692
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1693
|
+
border-radius: 0 4px 4px 0;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1554
1696
|
.input-prepend.input-append .add-on:first-child,
|
|
1555
1697
|
.input-prepend.input-append .btn:first-child {
|
|
1556
1698
|
margin-right: -1px;
|
|
1557
|
-
-webkit-border-radius:
|
|
1558
|
-
-moz-border-radius:
|
|
1559
|
-
border-radius:
|
|
1699
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1700
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1701
|
+
border-radius: 4px 0 0 4px;
|
|
1560
1702
|
}
|
|
1561
1703
|
|
|
1562
1704
|
.input-prepend.input-append .add-on:last-child,
|
|
1563
1705
|
.input-prepend.input-append .btn:last-child {
|
|
1564
1706
|
margin-left: -1px;
|
|
1565
|
-
-webkit-border-radius: 0
|
|
1566
|
-
-moz-border-radius: 0
|
|
1567
|
-
border-radius: 0
|
|
1707
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1708
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1709
|
+
border-radius: 0 4px 4px 0;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.input-prepend.input-append .btn-group:first-child {
|
|
1713
|
+
margin-left: 0;
|
|
1568
1714
|
}
|
|
1569
1715
|
|
|
1570
1716
|
input.search-query {
|
|
@@ -1706,7 +1852,7 @@ legend + .control-group {
|
|
|
1706
1852
|
|
|
1707
1853
|
.form-horizontal .control-label {
|
|
1708
1854
|
float: left;
|
|
1709
|
-
width:
|
|
1855
|
+
width: 160px;
|
|
1710
1856
|
padding-top: 5px;
|
|
1711
1857
|
text-align: right;
|
|
1712
1858
|
}
|
|
@@ -1714,21 +1860,26 @@ legend + .control-group {
|
|
|
1714
1860
|
.form-horizontal .controls {
|
|
1715
1861
|
*display: inline-block;
|
|
1716
1862
|
*padding-left: 20px;
|
|
1717
|
-
margin-left:
|
|
1863
|
+
margin-left: 180px;
|
|
1718
1864
|
*margin-left: 0;
|
|
1719
1865
|
}
|
|
1720
1866
|
|
|
1721
1867
|
.form-horizontal .controls:first-child {
|
|
1722
|
-
*padding-left:
|
|
1868
|
+
*padding-left: 180px;
|
|
1723
1869
|
}
|
|
1724
1870
|
|
|
1725
1871
|
.form-horizontal .help-block {
|
|
1726
|
-
margin-top: 10px;
|
|
1727
1872
|
margin-bottom: 0;
|
|
1728
1873
|
}
|
|
1729
1874
|
|
|
1875
|
+
.form-horizontal input + .help-block,
|
|
1876
|
+
.form-horizontal select + .help-block,
|
|
1877
|
+
.form-horizontal textarea + .help-block {
|
|
1878
|
+
margin-top: 10px;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1730
1881
|
.form-horizontal .form-actions {
|
|
1731
|
-
padding-left:
|
|
1882
|
+
padding-left: 180px;
|
|
1732
1883
|
}
|
|
1733
1884
|
|
|
1734
1885
|
table {
|
|
@@ -1853,7 +2004,7 @@ table {
|
|
|
1853
2004
|
.table-bordered colgroup + tbody tr:first-child td:last-child {
|
|
1854
2005
|
-webkit-border-top-right-radius: 4px;
|
|
1855
2006
|
border-top-right-radius: 4px;
|
|
1856
|
-
-moz-border-
|
|
2007
|
+
-moz-border-radius-topright: 4px;
|
|
1857
2008
|
}
|
|
1858
2009
|
|
|
1859
2010
|
.table-striped tbody tr:nth-child(odd) td,
|
|
@@ -1866,167 +2017,129 @@ table {
|
|
|
1866
2017
|
background-color: #f5f5f5;
|
|
1867
2018
|
}
|
|
1868
2019
|
|
|
1869
|
-
table [class*=span],
|
|
1870
|
-
|
|
2020
|
+
table td[class*="span"],
|
|
2021
|
+
table th[class*="span"],
|
|
2022
|
+
.row-fluid table td[class*="span"],
|
|
2023
|
+
.row-fluid table th[class*="span"] {
|
|
1871
2024
|
display: table-cell;
|
|
1872
2025
|
float: none;
|
|
1873
2026
|
margin-left: 0;
|
|
1874
2027
|
}
|
|
1875
2028
|
|
|
1876
|
-
table .span1
|
|
2029
|
+
.table td.span1,
|
|
2030
|
+
.table th.span1 {
|
|
1877
2031
|
float: none;
|
|
1878
2032
|
width: 44px;
|
|
1879
2033
|
margin-left: 0;
|
|
1880
2034
|
}
|
|
1881
2035
|
|
|
1882
|
-
table .span2
|
|
2036
|
+
.table td.span2,
|
|
2037
|
+
.table th.span2 {
|
|
1883
2038
|
float: none;
|
|
1884
2039
|
width: 124px;
|
|
1885
2040
|
margin-left: 0;
|
|
1886
2041
|
}
|
|
1887
2042
|
|
|
1888
|
-
table .span3
|
|
2043
|
+
.table td.span3,
|
|
2044
|
+
.table th.span3 {
|
|
1889
2045
|
float: none;
|
|
1890
2046
|
width: 204px;
|
|
1891
2047
|
margin-left: 0;
|
|
1892
2048
|
}
|
|
1893
2049
|
|
|
1894
|
-
table .span4
|
|
2050
|
+
.table td.span4,
|
|
2051
|
+
.table th.span4 {
|
|
1895
2052
|
float: none;
|
|
1896
2053
|
width: 284px;
|
|
1897
2054
|
margin-left: 0;
|
|
1898
2055
|
}
|
|
1899
2056
|
|
|
1900
|
-
table .span5
|
|
2057
|
+
.table td.span5,
|
|
2058
|
+
.table th.span5 {
|
|
1901
2059
|
float: none;
|
|
1902
2060
|
width: 364px;
|
|
1903
2061
|
margin-left: 0;
|
|
1904
2062
|
}
|
|
1905
2063
|
|
|
1906
|
-
table .span6
|
|
2064
|
+
.table td.span6,
|
|
2065
|
+
.table th.span6 {
|
|
1907
2066
|
float: none;
|
|
1908
2067
|
width: 444px;
|
|
1909
2068
|
margin-left: 0;
|
|
1910
2069
|
}
|
|
1911
2070
|
|
|
1912
|
-
table .span7
|
|
2071
|
+
.table td.span7,
|
|
2072
|
+
.table th.span7 {
|
|
1913
2073
|
float: none;
|
|
1914
2074
|
width: 524px;
|
|
1915
2075
|
margin-left: 0;
|
|
1916
2076
|
}
|
|
1917
2077
|
|
|
1918
|
-
table .span8
|
|
2078
|
+
.table td.span8,
|
|
2079
|
+
.table th.span8 {
|
|
1919
2080
|
float: none;
|
|
1920
2081
|
width: 604px;
|
|
1921
2082
|
margin-left: 0;
|
|
1922
2083
|
}
|
|
1923
2084
|
|
|
1924
|
-
table .span9
|
|
2085
|
+
.table td.span9,
|
|
2086
|
+
.table th.span9 {
|
|
1925
2087
|
float: none;
|
|
1926
2088
|
width: 684px;
|
|
1927
2089
|
margin-left: 0;
|
|
1928
2090
|
}
|
|
1929
2091
|
|
|
1930
|
-
table .span10
|
|
2092
|
+
.table td.span10,
|
|
2093
|
+
.table th.span10 {
|
|
1931
2094
|
float: none;
|
|
1932
2095
|
width: 764px;
|
|
1933
2096
|
margin-left: 0;
|
|
1934
2097
|
}
|
|
1935
2098
|
|
|
1936
|
-
table .span11
|
|
2099
|
+
.table td.span11,
|
|
2100
|
+
.table th.span11 {
|
|
1937
2101
|
float: none;
|
|
1938
2102
|
width: 844px;
|
|
1939
2103
|
margin-left: 0;
|
|
1940
2104
|
}
|
|
1941
2105
|
|
|
1942
|
-
table .span12
|
|
2106
|
+
.table td.span12,
|
|
2107
|
+
.table th.span12 {
|
|
1943
2108
|
float: none;
|
|
1944
2109
|
width: 924px;
|
|
1945
2110
|
margin-left: 0;
|
|
1946
2111
|
}
|
|
1947
2112
|
|
|
1948
|
-
table .
|
|
1949
|
-
|
|
1950
|
-
width: 1004px;
|
|
1951
|
-
margin-left: 0;
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
table .span14 {
|
|
1955
|
-
float: none;
|
|
1956
|
-
width: 1084px;
|
|
1957
|
-
margin-left: 0;
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
table .span15 {
|
|
1961
|
-
float: none;
|
|
1962
|
-
width: 1164px;
|
|
1963
|
-
margin-left: 0;
|
|
1964
|
-
}
|
|
1965
|
-
|
|
1966
|
-
table .span16 {
|
|
1967
|
-
float: none;
|
|
1968
|
-
width: 1244px;
|
|
1969
|
-
margin-left: 0;
|
|
1970
|
-
}
|
|
1971
|
-
|
|
1972
|
-
table .span17 {
|
|
1973
|
-
float: none;
|
|
1974
|
-
width: 1324px;
|
|
1975
|
-
margin-left: 0;
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
table .span18 {
|
|
1979
|
-
float: none;
|
|
1980
|
-
width: 1404px;
|
|
1981
|
-
margin-left: 0;
|
|
1982
|
-
}
|
|
1983
|
-
|
|
1984
|
-
table .span19 {
|
|
1985
|
-
float: none;
|
|
1986
|
-
width: 1484px;
|
|
1987
|
-
margin-left: 0;
|
|
1988
|
-
}
|
|
1989
|
-
|
|
1990
|
-
table .span20 {
|
|
1991
|
-
float: none;
|
|
1992
|
-
width: 1564px;
|
|
1993
|
-
margin-left: 0;
|
|
2113
|
+
.table tbody tr.success td {
|
|
2114
|
+
background-color: #dff0d8;
|
|
1994
2115
|
}
|
|
1995
2116
|
|
|
1996
|
-
table .
|
|
1997
|
-
|
|
1998
|
-
width: 1644px;
|
|
1999
|
-
margin-left: 0;
|
|
2117
|
+
.table tbody tr.error td {
|
|
2118
|
+
background-color: #f2dede;
|
|
2000
2119
|
}
|
|
2001
2120
|
|
|
2002
|
-
table .
|
|
2003
|
-
|
|
2004
|
-
width: 1724px;
|
|
2005
|
-
margin-left: 0;
|
|
2121
|
+
.table tbody tr.warning td {
|
|
2122
|
+
background-color: #fcf8e3;
|
|
2006
2123
|
}
|
|
2007
2124
|
|
|
2008
|
-
table .
|
|
2009
|
-
|
|
2010
|
-
width: 1804px;
|
|
2011
|
-
margin-left: 0;
|
|
2125
|
+
.table tbody tr.info td {
|
|
2126
|
+
background-color: #d9edf7;
|
|
2012
2127
|
}
|
|
2013
2128
|
|
|
2014
|
-
table .
|
|
2015
|
-
|
|
2016
|
-
width: 1884px;
|
|
2017
|
-
margin-left: 0;
|
|
2129
|
+
.table-hover tbody tr.success:hover td {
|
|
2130
|
+
background-color: #d0e9c6;
|
|
2018
2131
|
}
|
|
2019
2132
|
|
|
2020
|
-
.table tbody tr.
|
|
2021
|
-
background-color: #
|
|
2133
|
+
.table-hover tbody tr.error:hover td {
|
|
2134
|
+
background-color: #ebcccc;
|
|
2022
2135
|
}
|
|
2023
2136
|
|
|
2024
|
-
.table tbody tr.
|
|
2025
|
-
background-color: #
|
|
2137
|
+
.table-hover tbody tr.warning:hover td {
|
|
2138
|
+
background-color: #faf2cc;
|
|
2026
2139
|
}
|
|
2027
2140
|
|
|
2028
|
-
.table tbody tr.info td {
|
|
2029
|
-
background-color: #
|
|
2141
|
+
.table-hover tbody tr.info:hover td {
|
|
2142
|
+
background-color: #c4e3f3;
|
|
2030
2143
|
}
|
|
2031
2144
|
|
|
2032
2145
|
[class^="icon-"],
|
|
@@ -2046,12 +2159,18 @@ table .span24 {
|
|
|
2046
2159
|
/* White icons with optional class, or on hover/active states of certain elements */
|
|
2047
2160
|
|
|
2048
2161
|
.icon-white,
|
|
2049
|
-
.nav > .active > a > [class^="icon-"],
|
|
2050
|
-
.nav > .active > a > [class*=" icon-"],
|
|
2162
|
+
.nav-pills > .active > a > [class^="icon-"],
|
|
2163
|
+
.nav-pills > .active > a > [class*=" icon-"],
|
|
2164
|
+
.nav-list > .active > a > [class^="icon-"],
|
|
2165
|
+
.nav-list > .active > a > [class*=" icon-"],
|
|
2166
|
+
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
|
2167
|
+
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
|
2051
2168
|
.dropdown-menu > li > a:hover > [class^="icon-"],
|
|
2052
2169
|
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
|
2053
2170
|
.dropdown-menu > .active > a > [class^="icon-"],
|
|
2054
|
-
.dropdown-menu > .active > a > [class*=" icon-"]
|
|
2171
|
+
.dropdown-menu > .active > a > [class*=" icon-"],
|
|
2172
|
+
.dropdown-submenu:hover > a > [class^="icon-"],
|
|
2173
|
+
.dropdown-submenu:hover > a > [class*=" icon-"] {
|
|
2055
2174
|
background-image: url("/assets/bootstrap/glyphicons-halflings-white.png");
|
|
2056
2175
|
}
|
|
2057
2176
|
|
|
@@ -2689,7 +2808,7 @@ table .span24 {
|
|
|
2689
2808
|
border-bottom: 1px solid #ffffff;
|
|
2690
2809
|
}
|
|
2691
2810
|
|
|
2692
|
-
.dropdown-menu a {
|
|
2811
|
+
.dropdown-menu li > a {
|
|
2693
2812
|
display: block;
|
|
2694
2813
|
padding: 3px 20px;
|
|
2695
2814
|
clear: both;
|
|
@@ -2704,7 +2823,6 @@ table .span24 {
|
|
|
2704
2823
|
.dropdown-submenu:hover > a {
|
|
2705
2824
|
color: #ffffff;
|
|
2706
2825
|
text-decoration: none;
|
|
2707
|
-
background-color: #0088cc;
|
|
2708
2826
|
background-color: #0081c2;
|
|
2709
2827
|
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
|
2710
2828
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
|
@@ -2712,23 +2830,22 @@ table .span24 {
|
|
|
2712
2830
|
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
|
2713
2831
|
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
2714
2832
|
background-repeat: repeat-x;
|
|
2715
|
-
filter: progid:
|
|
2833
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
|
2716
2834
|
}
|
|
2717
2835
|
|
|
2718
2836
|
.dropdown-menu .active > a,
|
|
2719
2837
|
.dropdown-menu .active > a:hover {
|
|
2720
|
-
color: #
|
|
2838
|
+
color: #333333;
|
|
2721
2839
|
text-decoration: none;
|
|
2722
|
-
background-color: #0088cc;
|
|
2723
2840
|
background-color: #0081c2;
|
|
2724
|
-
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
2725
2841
|
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
|
2726
2842
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
|
2727
2843
|
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
|
2728
2844
|
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
|
2845
|
+
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
2729
2846
|
background-repeat: repeat-x;
|
|
2730
2847
|
outline: 0;
|
|
2731
|
-
filter: progid:
|
|
2848
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
|
|
2732
2849
|
}
|
|
2733
2850
|
|
|
2734
2851
|
.dropdown-menu .disabled > a,
|
|
@@ -2740,6 +2857,7 @@ table .span24 {
|
|
|
2740
2857
|
text-decoration: none;
|
|
2741
2858
|
cursor: default;
|
|
2742
2859
|
background-color: transparent;
|
|
2860
|
+
background-image: none;
|
|
2743
2861
|
}
|
|
2744
2862
|
|
|
2745
2863
|
.open {
|
|
@@ -2759,7 +2877,7 @@ table .span24 {
|
|
|
2759
2877
|
.navbar-fixed-bottom .dropdown .caret {
|
|
2760
2878
|
border-top: 0;
|
|
2761
2879
|
border-bottom: 4px solid #000000;
|
|
2762
|
-
content: "
|
|
2880
|
+
content: "";
|
|
2763
2881
|
}
|
|
2764
2882
|
|
|
2765
2883
|
.dropup .dropdown-menu,
|
|
@@ -2783,10 +2901,20 @@ table .span24 {
|
|
|
2783
2901
|
border-radius: 0 6px 6px 6px;
|
|
2784
2902
|
}
|
|
2785
2903
|
|
|
2786
|
-
.dropdown-submenu:hover .dropdown-menu {
|
|
2904
|
+
.dropdown-submenu:hover > .dropdown-menu {
|
|
2787
2905
|
display: block;
|
|
2788
2906
|
}
|
|
2789
2907
|
|
|
2908
|
+
.dropup .dropdown-submenu > .dropdown-menu {
|
|
2909
|
+
top: auto;
|
|
2910
|
+
bottom: 0;
|
|
2911
|
+
margin-top: 0;
|
|
2912
|
+
margin-bottom: -2px;
|
|
2913
|
+
-webkit-border-radius: 5px 5px 5px 0;
|
|
2914
|
+
-moz-border-radius: 5px 5px 5px 0;
|
|
2915
|
+
border-radius: 5px 5px 5px 0;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2790
2918
|
.dropdown-submenu > a:after {
|
|
2791
2919
|
display: block;
|
|
2792
2920
|
float: right;
|
|
@@ -2805,6 +2933,18 @@ table .span24 {
|
|
|
2805
2933
|
border-left-color: #ffffff;
|
|
2806
2934
|
}
|
|
2807
2935
|
|
|
2936
|
+
.dropdown-submenu.pull-left {
|
|
2937
|
+
float: none;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.dropdown-submenu.pull-left > .dropdown-menu {
|
|
2941
|
+
left: -100%;
|
|
2942
|
+
margin-left: 10px;
|
|
2943
|
+
-webkit-border-radius: 6px 0 6px 6px;
|
|
2944
|
+
-moz-border-radius: 6px 0 6px 6px;
|
|
2945
|
+
border-radius: 6px 0 6px 6px;
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2808
2948
|
.dropdown .dropdown-menu .nav-header {
|
|
2809
2949
|
padding-right: 20px;
|
|
2810
2950
|
padding-left: 20px;
|
|
@@ -2866,7 +3006,6 @@ table .span24 {
|
|
|
2866
3006
|
position: relative;
|
|
2867
3007
|
height: 0;
|
|
2868
3008
|
overflow: hidden;
|
|
2869
|
-
overflow: visible \9;
|
|
2870
3009
|
-webkit-transition: height 0.35s ease;
|
|
2871
3010
|
-moz-transition: height 0.35s ease;
|
|
2872
3011
|
-o-transition: height 0.35s ease;
|
|
@@ -2907,7 +3046,7 @@ button.close {
|
|
|
2907
3046
|
.btn {
|
|
2908
3047
|
display: inline-block;
|
|
2909
3048
|
*display: inline;
|
|
2910
|
-
padding: 4px
|
|
3049
|
+
padding: 4px 12px;
|
|
2911
3050
|
margin-bottom: 0;
|
|
2912
3051
|
*margin-left: .3em;
|
|
2913
3052
|
font-size: 14px;
|
|
@@ -2920,22 +3059,22 @@ button.close {
|
|
|
2920
3059
|
cursor: pointer;
|
|
2921
3060
|
background-color: #f5f5f5;
|
|
2922
3061
|
*background-color: #e6e6e6;
|
|
3062
|
+
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
|
2923
3063
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
|
2924
3064
|
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
|
2925
3065
|
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
|
2926
3066
|
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
|
2927
|
-
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
|
2928
3067
|
background-repeat: repeat-x;
|
|
2929
3068
|
border: 1px solid #bbbbbb;
|
|
2930
3069
|
*border: 0;
|
|
2931
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2932
3070
|
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
|
3071
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2933
3072
|
border-bottom-color: #a2a2a2;
|
|
2934
3073
|
-webkit-border-radius: 4px;
|
|
2935
3074
|
-moz-border-radius: 4px;
|
|
2936
3075
|
border-radius: 4px;
|
|
2937
|
-
filter: progid:
|
|
2938
|
-
filter: progid:
|
|
3076
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
|
3077
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
2939
3078
|
*zoom: 1;
|
|
2940
3079
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2941
3080
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
@@ -3005,32 +3144,37 @@ button.close {
|
|
|
3005
3144
|
}
|
|
3006
3145
|
|
|
3007
3146
|
.btn-large {
|
|
3008
|
-
padding:
|
|
3009
|
-
font-size:
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
border-radius: 5px;
|
|
3147
|
+
padding: 11px 19px;
|
|
3148
|
+
font-size: 17.5px;
|
|
3149
|
+
-webkit-border-radius: 6px;
|
|
3150
|
+
-moz-border-radius: 6px;
|
|
3151
|
+
border-radius: 6px;
|
|
3014
3152
|
}
|
|
3015
3153
|
|
|
3016
|
-
.btn-large [class^="icon-"]
|
|
3154
|
+
.btn-large [class^="icon-"],
|
|
3155
|
+
.btn-large [class*=" icon-"] {
|
|
3017
3156
|
margin-top: 2px;
|
|
3018
3157
|
}
|
|
3019
3158
|
|
|
3020
3159
|
.btn-small {
|
|
3021
|
-
padding:
|
|
3022
|
-
font-size:
|
|
3023
|
-
|
|
3160
|
+
padding: 2px 10px;
|
|
3161
|
+
font-size: 11.9px;
|
|
3162
|
+
-webkit-border-radius: 3px;
|
|
3163
|
+
-moz-border-radius: 3px;
|
|
3164
|
+
border-radius: 3px;
|
|
3024
3165
|
}
|
|
3025
3166
|
|
|
3026
|
-
.btn-small [class^="icon-"]
|
|
3167
|
+
.btn-small [class^="icon-"],
|
|
3168
|
+
.btn-small [class*=" icon-"] {
|
|
3027
3169
|
margin-top: 0;
|
|
3028
3170
|
}
|
|
3029
3171
|
|
|
3030
3172
|
.btn-mini {
|
|
3031
|
-
padding:
|
|
3032
|
-
font-size:
|
|
3033
|
-
|
|
3173
|
+
padding: 1px 6px;
|
|
3174
|
+
font-size: 10.5px;
|
|
3175
|
+
-webkit-border-radius: 3px;
|
|
3176
|
+
-moz-border-radius: 3px;
|
|
3177
|
+
border-radius: 3px;
|
|
3034
3178
|
}
|
|
3035
3179
|
|
|
3036
3180
|
.btn-block {
|
|
@@ -3047,6 +3191,12 @@ button.close {
|
|
|
3047
3191
|
margin-top: 5px;
|
|
3048
3192
|
}
|
|
3049
3193
|
|
|
3194
|
+
input[type="submit"].btn-block,
|
|
3195
|
+
input[type="reset"].btn-block,
|
|
3196
|
+
input[type="button"].btn-block {
|
|
3197
|
+
width: 100%;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3050
3200
|
.btn-primary.active,
|
|
3051
3201
|
.btn-warning.active,
|
|
3052
3202
|
.btn-danger.active,
|
|
@@ -3066,16 +3216,16 @@ button.close {
|
|
|
3066
3216
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3067
3217
|
background-color: #006dcc;
|
|
3068
3218
|
*background-color: #0044cc;
|
|
3219
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
|
3069
3220
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
|
3070
3221
|
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
|
3071
3222
|
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
|
3072
3223
|
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
|
|
3073
|
-
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
|
3074
3224
|
background-repeat: repeat-x;
|
|
3075
3225
|
border-color: #0044cc #0044cc #002a80;
|
|
3076
3226
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3077
|
-
filter: progid:
|
|
3078
|
-
filter: progid:
|
|
3227
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
|
|
3228
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3079
3229
|
}
|
|
3080
3230
|
|
|
3081
3231
|
.btn-primary:hover,
|
|
@@ -3098,16 +3248,16 @@ button.close {
|
|
|
3098
3248
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3099
3249
|
background-color: #faa732;
|
|
3100
3250
|
*background-color: #f89406;
|
|
3251
|
+
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
|
3101
3252
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
|
|
3102
3253
|
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
|
|
3103
3254
|
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
|
3104
3255
|
background-image: linear-gradient(to bottom, #fbb450, #f89406);
|
|
3105
|
-
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
|
3106
3256
|
background-repeat: repeat-x;
|
|
3107
3257
|
border-color: #f89406 #f89406 #ad6704;
|
|
3108
3258
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3109
|
-
filter: progid:
|
|
3110
|
-
filter: progid:
|
|
3259
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
|
|
3260
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3111
3261
|
}
|
|
3112
3262
|
|
|
3113
3263
|
.btn-warning:hover,
|
|
@@ -3130,16 +3280,16 @@ button.close {
|
|
|
3130
3280
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3131
3281
|
background-color: #da4f49;
|
|
3132
3282
|
*background-color: #bd362f;
|
|
3283
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
|
3133
3284
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
|
|
3134
3285
|
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
|
|
3135
3286
|
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
|
|
3136
3287
|
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
|
|
3137
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
|
3138
3288
|
background-repeat: repeat-x;
|
|
3139
3289
|
border-color: #bd362f #bd362f #802420;
|
|
3140
3290
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3141
|
-
filter: progid:
|
|
3142
|
-
filter: progid:
|
|
3291
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
|
|
3292
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3143
3293
|
}
|
|
3144
3294
|
|
|
3145
3295
|
.btn-danger:hover,
|
|
@@ -3162,16 +3312,16 @@ button.close {
|
|
|
3162
3312
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3163
3313
|
background-color: #5bb75b;
|
|
3164
3314
|
*background-color: #51a351;
|
|
3315
|
+
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
|
3165
3316
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
|
|
3166
3317
|
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
|
|
3167
3318
|
background-image: -o-linear-gradient(top, #62c462, #51a351);
|
|
3168
3319
|
background-image: linear-gradient(to bottom, #62c462, #51a351);
|
|
3169
|
-
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
|
3170
3320
|
background-repeat: repeat-x;
|
|
3171
3321
|
border-color: #51a351 #51a351 #387038;
|
|
3172
3322
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3173
|
-
filter: progid:
|
|
3174
|
-
filter: progid:
|
|
3323
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
|
|
3324
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3175
3325
|
}
|
|
3176
3326
|
|
|
3177
3327
|
.btn-success:hover,
|
|
@@ -3194,16 +3344,16 @@ button.close {
|
|
|
3194
3344
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3195
3345
|
background-color: #49afcd;
|
|
3196
3346
|
*background-color: #2f96b4;
|
|
3347
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
|
3197
3348
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
|
|
3198
3349
|
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
|
|
3199
3350
|
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
|
|
3200
3351
|
background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
|
|
3201
|
-
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
|
3202
3352
|
background-repeat: repeat-x;
|
|
3203
3353
|
border-color: #2f96b4 #2f96b4 #1f6377;
|
|
3204
3354
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3205
|
-
filter: progid:
|
|
3206
|
-
filter: progid:
|
|
3355
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
|
|
3356
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3207
3357
|
}
|
|
3208
3358
|
|
|
3209
3359
|
.btn-info:hover,
|
|
@@ -3226,16 +3376,16 @@ button.close {
|
|
|
3226
3376
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3227
3377
|
background-color: #363636;
|
|
3228
3378
|
*background-color: #222222;
|
|
3379
|
+
background-image: -moz-linear-gradient(top, #444444, #222222);
|
|
3229
3380
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
|
|
3230
3381
|
background-image: -webkit-linear-gradient(top, #444444, #222222);
|
|
3231
3382
|
background-image: -o-linear-gradient(top, #444444, #222222);
|
|
3232
3383
|
background-image: linear-gradient(to bottom, #444444, #222222);
|
|
3233
|
-
background-image: -moz-linear-gradient(top, #444444, #222222);
|
|
3234
3384
|
background-repeat: repeat-x;
|
|
3235
3385
|
border-color: #222222 #222222 #000000;
|
|
3236
3386
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3237
|
-
filter: progid:
|
|
3238
|
-
filter: progid:
|
|
3387
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
|
|
3388
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3239
3389
|
}
|
|
3240
3390
|
|
|
3241
3391
|
.btn-inverse:hover,
|
|
@@ -3284,7 +3434,8 @@ input[type="submit"].btn.btn-mini {
|
|
|
3284
3434
|
}
|
|
3285
3435
|
|
|
3286
3436
|
.btn-link,
|
|
3287
|
-
.btn-link:active
|
|
3437
|
+
.btn-link:active,
|
|
3438
|
+
.btn-link[disabled] {
|
|
3288
3439
|
background-color: transparent;
|
|
3289
3440
|
background-image: none;
|
|
3290
3441
|
-webkit-box-shadow: none;
|
|
@@ -3307,11 +3458,20 @@ input[type="submit"].btn.btn-mini {
|
|
|
3307
3458
|
background-color: transparent;
|
|
3308
3459
|
}
|
|
3309
3460
|
|
|
3461
|
+
.btn-link[disabled]:hover {
|
|
3462
|
+
color: #333333;
|
|
3463
|
+
text-decoration: none;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3310
3466
|
.btn-group {
|
|
3311
3467
|
position: relative;
|
|
3468
|
+
display: inline-block;
|
|
3469
|
+
*display: inline;
|
|
3312
3470
|
*margin-left: .3em;
|
|
3313
3471
|
font-size: 0;
|
|
3314
3472
|
white-space: nowrap;
|
|
3473
|
+
vertical-align: middle;
|
|
3474
|
+
*zoom: 1;
|
|
3315
3475
|
}
|
|
3316
3476
|
|
|
3317
3477
|
.btn-group:first-child {
|
|
@@ -3328,14 +3488,6 @@ input[type="submit"].btn.btn-mini {
|
|
|
3328
3488
|
font-size: 0;
|
|
3329
3489
|
}
|
|
3330
3490
|
|
|
3331
|
-
.btn-toolbar .btn-group {
|
|
3332
|
-
display: inline-block;
|
|
3333
|
-
*display: inline;
|
|
3334
|
-
/* IE7 inline-block hack */
|
|
3335
|
-
|
|
3336
|
-
*zoom: 1;
|
|
3337
|
-
}
|
|
3338
|
-
|
|
3339
3491
|
.btn-toolbar .btn + .btn,
|
|
3340
3492
|
.btn-toolbar .btn-group + .btn,
|
|
3341
3493
|
.btn-toolbar .btn + .btn-group {
|
|
@@ -3504,8 +3656,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
3504
3656
|
}
|
|
3505
3657
|
|
|
3506
3658
|
.dropup .btn-large .caret {
|
|
3507
|
-
border-
|
|
3508
|
-
border-bottom: 5px solid #000000;
|
|
3659
|
+
border-bottom-width: 5px;
|
|
3509
3660
|
}
|
|
3510
3661
|
|
|
3511
3662
|
.btn-primary .caret,
|
|
@@ -3678,7 +3829,8 @@ input[type="submit"].btn.btn-mini {
|
|
|
3678
3829
|
background-color: #0088cc;
|
|
3679
3830
|
}
|
|
3680
3831
|
|
|
3681
|
-
.nav-list [class^="icon-"]
|
|
3832
|
+
.nav-list [class^="icon-"],
|
|
3833
|
+
.nav-list [class*=" icon-"] {
|
|
3682
3834
|
margin-right: 2px;
|
|
3683
3835
|
}
|
|
3684
3836
|
|
|
@@ -4018,7 +4170,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4018
4170
|
*z-index: 2;
|
|
4019
4171
|
margin-bottom: 20px;
|
|
4020
4172
|
overflow: visible;
|
|
4021
|
-
color: #
|
|
4173
|
+
color: #777777;
|
|
4022
4174
|
}
|
|
4023
4175
|
|
|
4024
4176
|
.navbar-inner {
|
|
@@ -4036,18 +4188,31 @@ input[type="submit"].btn.btn-mini {
|
|
|
4036
4188
|
-webkit-border-radius: 4px;
|
|
4037
4189
|
-moz-border-radius: 4px;
|
|
4038
4190
|
border-radius: 4px;
|
|
4039
|
-
filter: progid:
|
|
4191
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
|
4192
|
+
*zoom: 1;
|
|
4040
4193
|
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
4041
4194
|
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
4042
4195
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
4043
4196
|
}
|
|
4044
4197
|
|
|
4198
|
+
.navbar-inner:before,
|
|
4199
|
+
.navbar-inner:after {
|
|
4200
|
+
display: table;
|
|
4201
|
+
line-height: 0;
|
|
4202
|
+
content: "";
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
.navbar-inner:after {
|
|
4206
|
+
clear: both;
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4045
4209
|
.navbar .container {
|
|
4046
4210
|
width: auto;
|
|
4047
4211
|
}
|
|
4048
4212
|
|
|
4049
4213
|
.nav-collapse.collapse {
|
|
4050
4214
|
height: auto;
|
|
4215
|
+
overflow: visible;
|
|
4051
4216
|
}
|
|
4052
4217
|
|
|
4053
4218
|
.navbar .brand {
|
|
@@ -4057,7 +4222,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4057
4222
|
margin-left: -20px;
|
|
4058
4223
|
font-size: 20px;
|
|
4059
4224
|
font-weight: 200;
|
|
4060
|
-
color: #
|
|
4225
|
+
color: #777777;
|
|
4061
4226
|
text-shadow: 0 1px 0 #ffffff;
|
|
4062
4227
|
}
|
|
4063
4228
|
|
|
@@ -4071,7 +4236,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4071
4236
|
}
|
|
4072
4237
|
|
|
4073
4238
|
.navbar-link {
|
|
4074
|
-
color: #
|
|
4239
|
+
color: #777777;
|
|
4075
4240
|
}
|
|
4076
4241
|
|
|
4077
4242
|
.navbar-link:hover {
|
|
@@ -4087,11 +4252,13 @@ input[type="submit"].btn.btn-mini {
|
|
|
4087
4252
|
|
|
4088
4253
|
.navbar .btn,
|
|
4089
4254
|
.navbar .btn-group {
|
|
4090
|
-
margin-top:
|
|
4255
|
+
margin-top: 5px;
|
|
4091
4256
|
}
|
|
4092
4257
|
|
|
4093
|
-
.navbar .btn-group .btn
|
|
4094
|
-
|
|
4258
|
+
.navbar .btn-group .btn,
|
|
4259
|
+
.navbar .input-prepend .btn,
|
|
4260
|
+
.navbar .input-append .btn {
|
|
4261
|
+
margin-top: 0;
|
|
4095
4262
|
}
|
|
4096
4263
|
|
|
4097
4264
|
.navbar-form {
|
|
@@ -4162,7 +4329,6 @@ input[type="submit"].btn.btn-mini {
|
|
|
4162
4329
|
|
|
4163
4330
|
.navbar-static-top {
|
|
4164
4331
|
position: static;
|
|
4165
|
-
width: 100%;
|
|
4166
4332
|
margin-bottom: 0;
|
|
4167
4333
|
}
|
|
4168
4334
|
|
|
@@ -4182,9 +4348,12 @@ input[type="submit"].btn.btn-mini {
|
|
|
4182
4348
|
}
|
|
4183
4349
|
|
|
4184
4350
|
.navbar-fixed-top .navbar-inner,
|
|
4185
|
-
.navbar-fixed-bottom .navbar-inner,
|
|
4186
4351
|
.navbar-static-top .navbar-inner {
|
|
4187
|
-
border: 0;
|
|
4352
|
+
border-width: 0 0 1px;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.navbar-fixed-bottom .navbar-inner {
|
|
4356
|
+
border-width: 1px 0 0;
|
|
4188
4357
|
}
|
|
4189
4358
|
|
|
4190
4359
|
.navbar-fixed-top .navbar-inner,
|
|
@@ -4208,9 +4377,9 @@ input[type="submit"].btn.btn-mini {
|
|
|
4208
4377
|
|
|
4209
4378
|
.navbar-fixed-top .navbar-inner,
|
|
4210
4379
|
.navbar-static-top .navbar-inner {
|
|
4211
|
-
-webkit-box-shadow:
|
|
4212
|
-
-moz-box-shadow:
|
|
4213
|
-
box-shadow:
|
|
4380
|
+
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
|
4381
|
+
-moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
|
4382
|
+
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
|
4214
4383
|
}
|
|
4215
4384
|
|
|
4216
4385
|
.navbar-fixed-bottom {
|
|
@@ -4218,9 +4387,9 @@ input[type="submit"].btn.btn-mini {
|
|
|
4218
4387
|
}
|
|
4219
4388
|
|
|
4220
4389
|
.navbar-fixed-bottom .navbar-inner {
|
|
4221
|
-
-webkit-box-shadow:
|
|
4222
|
-
-moz-box-shadow:
|
|
4223
|
-
box-shadow:
|
|
4390
|
+
-webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
|
|
4391
|
+
-moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
|
|
4392
|
+
box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
|
|
4224
4393
|
}
|
|
4225
4394
|
|
|
4226
4395
|
.navbar .nav {
|
|
@@ -4233,6 +4402,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4233
4402
|
|
|
4234
4403
|
.navbar .nav.pull-right {
|
|
4235
4404
|
float: right;
|
|
4405
|
+
margin-right: 0;
|
|
4236
4406
|
}
|
|
4237
4407
|
|
|
4238
4408
|
.navbar .nav > li {
|
|
@@ -4242,7 +4412,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4242
4412
|
.navbar .nav > li > a {
|
|
4243
4413
|
float: none;
|
|
4244
4414
|
padding: 10px 15px 10px;
|
|
4245
|
-
color: #
|
|
4415
|
+
color: #777777;
|
|
4246
4416
|
text-decoration: none;
|
|
4247
4417
|
text-shadow: 0 1px 0 #ffffff;
|
|
4248
4418
|
}
|
|
@@ -4279,16 +4449,16 @@ input[type="submit"].btn.btn-mini {
|
|
|
4279
4449
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
4280
4450
|
background-color: #ededed;
|
|
4281
4451
|
*background-color: #e5e5e5;
|
|
4452
|
+
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
4282
4453
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
|
|
4283
4454
|
background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
4284
4455
|
background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
4285
4456
|
background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
|
|
4286
|
-
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
4287
4457
|
background-repeat: repeat-x;
|
|
4288
4458
|
border-color: #e5e5e5 #e5e5e5 #bfbfbf;
|
|
4289
4459
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
4290
|
-
filter: progid:
|
|
4291
|
-
filter: progid:
|
|
4460
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
|
|
4461
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
4292
4462
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
|
4293
4463
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
|
4294
4464
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
|
@@ -4372,8 +4542,8 @@ input[type="submit"].btn.btn-mini {
|
|
|
4372
4542
|
}
|
|
4373
4543
|
|
|
4374
4544
|
.navbar .nav li.dropdown > .dropdown-toggle .caret {
|
|
4375
|
-
border-top-color: #
|
|
4376
|
-
border-bottom-color: #
|
|
4545
|
+
border-top-color: #777777;
|
|
4546
|
+
border-bottom-color: #777777;
|
|
4377
4547
|
}
|
|
4378
4548
|
|
|
4379
4549
|
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
|
|
@@ -4425,7 +4595,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4425
4595
|
background-image: linear-gradient(to bottom, #222222, #111111);
|
|
4426
4596
|
background-repeat: repeat-x;
|
|
4427
4597
|
border-color: #252525;
|
|
4428
|
-
filter: progid:
|
|
4598
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
|
|
4429
4599
|
}
|
|
4430
4600
|
|
|
4431
4601
|
.navbar-inverse .brand,
|
|
@@ -4527,16 +4697,16 @@ input[type="submit"].btn.btn-mini {
|
|
|
4527
4697
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
4528
4698
|
background-color: #0e0e0e;
|
|
4529
4699
|
*background-color: #040404;
|
|
4700
|
+
background-image: -moz-linear-gradient(top, #151515, #040404);
|
|
4530
4701
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
|
|
4531
4702
|
background-image: -webkit-linear-gradient(top, #151515, #040404);
|
|
4532
4703
|
background-image: -o-linear-gradient(top, #151515, #040404);
|
|
4533
4704
|
background-image: linear-gradient(to bottom, #151515, #040404);
|
|
4534
|
-
background-image: -moz-linear-gradient(top, #151515, #040404);
|
|
4535
4705
|
background-repeat: repeat-x;
|
|
4536
4706
|
border-color: #040404 #040404 #000000;
|
|
4537
4707
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
4538
|
-
filter: progid:
|
|
4539
|
-
filter: progid:
|
|
4708
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
|
|
4709
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
4540
4710
|
}
|
|
4541
4711
|
|
|
4542
4712
|
.navbar-inverse .btn-navbar:hover,
|
|
@@ -4581,7 +4751,6 @@ input[type="submit"].btn.btn-mini {
|
|
|
4581
4751
|
}
|
|
4582
4752
|
|
|
4583
4753
|
.pagination {
|
|
4584
|
-
height: 40px;
|
|
4585
4754
|
margin: 20px 0;
|
|
4586
4755
|
}
|
|
4587
4756
|
|
|
@@ -4590,63 +4759,69 @@ input[type="submit"].btn.btn-mini {
|
|
|
4590
4759
|
*display: inline;
|
|
4591
4760
|
margin-bottom: 0;
|
|
4592
4761
|
margin-left: 0;
|
|
4593
|
-
-webkit-border-radius:
|
|
4594
|
-
-moz-border-radius:
|
|
4595
|
-
border-radius:
|
|
4762
|
+
-webkit-border-radius: 4px;
|
|
4763
|
+
-moz-border-radius: 4px;
|
|
4764
|
+
border-radius: 4px;
|
|
4596
4765
|
*zoom: 1;
|
|
4597
4766
|
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4598
4767
|
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4599
4768
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
4600
4769
|
}
|
|
4601
4770
|
|
|
4602
|
-
.pagination li {
|
|
4771
|
+
.pagination ul > li {
|
|
4603
4772
|
display: inline;
|
|
4604
4773
|
}
|
|
4605
4774
|
|
|
4606
|
-
.pagination a,
|
|
4607
|
-
.pagination span {
|
|
4775
|
+
.pagination ul > li > a,
|
|
4776
|
+
.pagination ul > li > span {
|
|
4608
4777
|
float: left;
|
|
4609
|
-
padding:
|
|
4610
|
-
line-height:
|
|
4778
|
+
padding: 4px 12px;
|
|
4779
|
+
line-height: 20px;
|
|
4611
4780
|
text-decoration: none;
|
|
4612
4781
|
background-color: #ffffff;
|
|
4613
4782
|
border: 1px solid #dddddd;
|
|
4614
4783
|
border-left-width: 0;
|
|
4615
4784
|
}
|
|
4616
4785
|
|
|
4617
|
-
.pagination a:hover,
|
|
4618
|
-
.pagination .active a,
|
|
4619
|
-
.pagination .active span {
|
|
4786
|
+
.pagination ul > li > a:hover,
|
|
4787
|
+
.pagination ul > .active > a,
|
|
4788
|
+
.pagination ul > .active > span {
|
|
4620
4789
|
background-color: #f5f5f5;
|
|
4621
4790
|
}
|
|
4622
4791
|
|
|
4623
|
-
.pagination .active a,
|
|
4624
|
-
.pagination .active span {
|
|
4792
|
+
.pagination ul > .active > a,
|
|
4793
|
+
.pagination ul > .active > span {
|
|
4625
4794
|
color: #999999;
|
|
4626
4795
|
cursor: default;
|
|
4627
4796
|
}
|
|
4628
4797
|
|
|
4629
|
-
.pagination .disabled span,
|
|
4630
|
-
.pagination .disabled a,
|
|
4631
|
-
.pagination .disabled a:hover {
|
|
4798
|
+
.pagination ul > .disabled > span,
|
|
4799
|
+
.pagination ul > .disabled > a,
|
|
4800
|
+
.pagination ul > .disabled > a:hover {
|
|
4632
4801
|
color: #999999;
|
|
4633
4802
|
cursor: default;
|
|
4634
4803
|
background-color: transparent;
|
|
4635
4804
|
}
|
|
4636
4805
|
|
|
4637
|
-
.pagination li:first-child a,
|
|
4638
|
-
.pagination li:first-child span {
|
|
4806
|
+
.pagination ul > li:first-child > a,
|
|
4807
|
+
.pagination ul > li:first-child > span {
|
|
4639
4808
|
border-left-width: 1px;
|
|
4640
|
-
-webkit-border-radius:
|
|
4641
|
-
|
|
4642
|
-
|
|
4809
|
+
-webkit-border-bottom-left-radius: 4px;
|
|
4810
|
+
border-bottom-left-radius: 4px;
|
|
4811
|
+
-webkit-border-top-left-radius: 4px;
|
|
4812
|
+
border-top-left-radius: 4px;
|
|
4813
|
+
-moz-border-radius-bottomleft: 4px;
|
|
4814
|
+
-moz-border-radius-topleft: 4px;
|
|
4643
4815
|
}
|
|
4644
4816
|
|
|
4645
|
-
.pagination li:last-child a,
|
|
4646
|
-
.pagination li:last-child span {
|
|
4647
|
-
-webkit-border-radius:
|
|
4648
|
-
|
|
4649
|
-
|
|
4817
|
+
.pagination ul > li:last-child > a,
|
|
4818
|
+
.pagination ul > li:last-child > span {
|
|
4819
|
+
-webkit-border-top-right-radius: 4px;
|
|
4820
|
+
border-top-right-radius: 4px;
|
|
4821
|
+
-webkit-border-bottom-right-radius: 4px;
|
|
4822
|
+
border-bottom-right-radius: 4px;
|
|
4823
|
+
-moz-border-radius-topright: 4px;
|
|
4824
|
+
-moz-border-radius-bottomright: 4px;
|
|
4650
4825
|
}
|
|
4651
4826
|
|
|
4652
4827
|
.pagination-centered {
|
|
@@ -4657,6 +4832,68 @@ input[type="submit"].btn.btn-mini {
|
|
|
4657
4832
|
text-align: right;
|
|
4658
4833
|
}
|
|
4659
4834
|
|
|
4835
|
+
.pagination-large ul > li > a,
|
|
4836
|
+
.pagination-large ul > li > span {
|
|
4837
|
+
padding: 11px 19px;
|
|
4838
|
+
font-size: 17.5px;
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
.pagination-large ul > li:first-child > a,
|
|
4842
|
+
.pagination-large ul > li:first-child > span {
|
|
4843
|
+
-webkit-border-bottom-left-radius: 6px;
|
|
4844
|
+
border-bottom-left-radius: 6px;
|
|
4845
|
+
-webkit-border-top-left-radius: 6px;
|
|
4846
|
+
border-top-left-radius: 6px;
|
|
4847
|
+
-moz-border-radius-bottomleft: 6px;
|
|
4848
|
+
-moz-border-radius-topleft: 6px;
|
|
4849
|
+
}
|
|
4850
|
+
|
|
4851
|
+
.pagination-large ul > li:last-child > a,
|
|
4852
|
+
.pagination-large ul > li:last-child > span {
|
|
4853
|
+
-webkit-border-top-right-radius: 6px;
|
|
4854
|
+
border-top-right-radius: 6px;
|
|
4855
|
+
-webkit-border-bottom-right-radius: 6px;
|
|
4856
|
+
border-bottom-right-radius: 6px;
|
|
4857
|
+
-moz-border-radius-topright: 6px;
|
|
4858
|
+
-moz-border-radius-bottomright: 6px;
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
.pagination-mini ul > li:first-child > a,
|
|
4862
|
+
.pagination-small ul > li:first-child > a,
|
|
4863
|
+
.pagination-mini ul > li:first-child > span,
|
|
4864
|
+
.pagination-small ul > li:first-child > span {
|
|
4865
|
+
-webkit-border-bottom-left-radius: 3px;
|
|
4866
|
+
border-bottom-left-radius: 3px;
|
|
4867
|
+
-webkit-border-top-left-radius: 3px;
|
|
4868
|
+
border-top-left-radius: 3px;
|
|
4869
|
+
-moz-border-radius-bottomleft: 3px;
|
|
4870
|
+
-moz-border-radius-topleft: 3px;
|
|
4871
|
+
}
|
|
4872
|
+
|
|
4873
|
+
.pagination-mini ul > li:last-child > a,
|
|
4874
|
+
.pagination-small ul > li:last-child > a,
|
|
4875
|
+
.pagination-mini ul > li:last-child > span,
|
|
4876
|
+
.pagination-small ul > li:last-child > span {
|
|
4877
|
+
-webkit-border-top-right-radius: 3px;
|
|
4878
|
+
border-top-right-radius: 3px;
|
|
4879
|
+
-webkit-border-bottom-right-radius: 3px;
|
|
4880
|
+
border-bottom-right-radius: 3px;
|
|
4881
|
+
-moz-border-radius-topright: 3px;
|
|
4882
|
+
-moz-border-radius-bottomright: 3px;
|
|
4883
|
+
}
|
|
4884
|
+
|
|
4885
|
+
.pagination-small ul > li > a,
|
|
4886
|
+
.pagination-small ul > li > span {
|
|
4887
|
+
padding: 2px 10px;
|
|
4888
|
+
font-size: 11.9px;
|
|
4889
|
+
}
|
|
4890
|
+
|
|
4891
|
+
.pagination-mini ul > li > a,
|
|
4892
|
+
.pagination-mini ul > li > span {
|
|
4893
|
+
padding: 1px 6px;
|
|
4894
|
+
font-size: 10.5px;
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4660
4897
|
.pager {
|
|
4661
4898
|
margin: 20px 0;
|
|
4662
4899
|
text-align: center;
|
|
@@ -4679,7 +4916,8 @@ input[type="submit"].btn.btn-mini {
|
|
|
4679
4916
|
display: inline;
|
|
4680
4917
|
}
|
|
4681
4918
|
|
|
4682
|
-
.pager a
|
|
4919
|
+
.pager li > a,
|
|
4920
|
+
.pager li > span {
|
|
4683
4921
|
display: inline-block;
|
|
4684
4922
|
padding: 5px 14px;
|
|
4685
4923
|
background-color: #fff;
|
|
@@ -4689,42 +4927,29 @@ input[type="submit"].btn.btn-mini {
|
|
|
4689
4927
|
border-radius: 15px;
|
|
4690
4928
|
}
|
|
4691
4929
|
|
|
4692
|
-
.pager a:hover {
|
|
4930
|
+
.pager li > a:hover {
|
|
4693
4931
|
text-decoration: none;
|
|
4694
4932
|
background-color: #f5f5f5;
|
|
4695
4933
|
}
|
|
4696
4934
|
|
|
4697
|
-
.pager .next a
|
|
4935
|
+
.pager .next > a,
|
|
4936
|
+
.pager .next > span {
|
|
4698
4937
|
float: right;
|
|
4699
4938
|
}
|
|
4700
4939
|
|
|
4701
|
-
.pager .previous a
|
|
4940
|
+
.pager .previous > a,
|
|
4941
|
+
.pager .previous > span {
|
|
4702
4942
|
float: left;
|
|
4703
4943
|
}
|
|
4704
4944
|
|
|
4705
|
-
.pager .disabled a,
|
|
4706
|
-
.pager .disabled a:hover
|
|
4945
|
+
.pager .disabled > a,
|
|
4946
|
+
.pager .disabled > a:hover,
|
|
4947
|
+
.pager .disabled > span {
|
|
4707
4948
|
color: #999999;
|
|
4708
4949
|
cursor: default;
|
|
4709
4950
|
background-color: #fff;
|
|
4710
4951
|
}
|
|
4711
4952
|
|
|
4712
|
-
.modal-open .dropdown-menu {
|
|
4713
|
-
z-index: 2050;
|
|
4714
|
-
}
|
|
4715
|
-
|
|
4716
|
-
.modal-open .dropdown.open {
|
|
4717
|
-
*z-index: 2050;
|
|
4718
|
-
}
|
|
4719
|
-
|
|
4720
|
-
.modal-open .popover {
|
|
4721
|
-
z-index: 2060;
|
|
4722
|
-
}
|
|
4723
|
-
|
|
4724
|
-
.modal-open .tooltip {
|
|
4725
|
-
z-index: 2080;
|
|
4726
|
-
}
|
|
4727
|
-
|
|
4728
4953
|
.modal-backdrop {
|
|
4729
4954
|
position: fixed;
|
|
4730
4955
|
top: 0;
|
|
@@ -4752,7 +4977,6 @@ input[type="submit"].btn.btn-mini {
|
|
|
4752
4977
|
z-index: 1050;
|
|
4753
4978
|
width: 560px;
|
|
4754
4979
|
margin: -250px 0 0 -280px;
|
|
4755
|
-
overflow: auto;
|
|
4756
4980
|
background-color: #ffffff;
|
|
4757
4981
|
border: 1px solid #999;
|
|
4758
4982
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
@@ -4760,6 +4984,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4760
4984
|
-webkit-border-radius: 6px;
|
|
4761
4985
|
-moz-border-radius: 6px;
|
|
4762
4986
|
border-radius: 6px;
|
|
4987
|
+
outline: none;
|
|
4763
4988
|
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
4764
4989
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
4765
4990
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
@@ -4839,6 +5064,10 @@ input[type="submit"].btn.btn-mini {
|
|
|
4839
5064
|
margin-left: -1px;
|
|
4840
5065
|
}
|
|
4841
5066
|
|
|
5067
|
+
.modal-footer .btn-block + .btn-block {
|
|
5068
|
+
margin-left: 0;
|
|
5069
|
+
}
|
|
5070
|
+
|
|
4842
5071
|
.tooltip {
|
|
4843
5072
|
position: absolute;
|
|
4844
5073
|
z-index: 1030;
|
|
@@ -4946,7 +5175,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4946
5175
|
}
|
|
4947
5176
|
|
|
4948
5177
|
.popover.top {
|
|
4949
|
-
margin-
|
|
5178
|
+
margin-top: -10px;
|
|
4950
5179
|
}
|
|
4951
5180
|
|
|
4952
5181
|
.popover.right {
|
|
@@ -4958,7 +5187,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
4958
5187
|
}
|
|
4959
5188
|
|
|
4960
5189
|
.popover.left {
|
|
4961
|
-
margin-
|
|
5190
|
+
margin-left: -10px;
|
|
4962
5191
|
}
|
|
4963
5192
|
|
|
4964
5193
|
.popover-title {
|
|
@@ -5122,8 +5351,47 @@ a.thumbnail:hover {
|
|
|
5122
5351
|
color: #555555;
|
|
5123
5352
|
}
|
|
5124
5353
|
|
|
5354
|
+
.media,
|
|
5355
|
+
.media-body {
|
|
5356
|
+
overflow: hidden;
|
|
5357
|
+
*overflow: visible;
|
|
5358
|
+
zoom: 1;
|
|
5359
|
+
}
|
|
5360
|
+
|
|
5361
|
+
.media,
|
|
5362
|
+
.media .media {
|
|
5363
|
+
margin-top: 15px;
|
|
5364
|
+
}
|
|
5365
|
+
|
|
5366
|
+
.media:first-child {
|
|
5367
|
+
margin-top: 0;
|
|
5368
|
+
}
|
|
5369
|
+
|
|
5370
|
+
.media-object {
|
|
5371
|
+
display: block;
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5374
|
+
.media-heading {
|
|
5375
|
+
margin: 0 0 5px;
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5378
|
+
.media .pull-left {
|
|
5379
|
+
margin-right: 10px;
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
.media .pull-right {
|
|
5383
|
+
margin-left: 10px;
|
|
5384
|
+
}
|
|
5385
|
+
|
|
5386
|
+
.media-list {
|
|
5387
|
+
margin-left: 0;
|
|
5388
|
+
list-style: none;
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5125
5391
|
.label,
|
|
5126
5392
|
.badge {
|
|
5393
|
+
display: inline-block;
|
|
5394
|
+
padding: 2px 4px;
|
|
5127
5395
|
font-size: 11.844px;
|
|
5128
5396
|
font-weight: bold;
|
|
5129
5397
|
line-height: 14px;
|
|
@@ -5135,14 +5403,14 @@ a.thumbnail:hover {
|
|
|
5135
5403
|
}
|
|
5136
5404
|
|
|
5137
5405
|
.label {
|
|
5138
|
-
padding: 1px 4px 2px;
|
|
5139
5406
|
-webkit-border-radius: 3px;
|
|
5140
5407
|
-moz-border-radius: 3px;
|
|
5141
5408
|
border-radius: 3px;
|
|
5142
5409
|
}
|
|
5143
5410
|
|
|
5144
5411
|
.badge {
|
|
5145
|
-
padding:
|
|
5412
|
+
padding-right: 9px;
|
|
5413
|
+
padding-left: 9px;
|
|
5146
5414
|
-webkit-border-radius: 9px;
|
|
5147
5415
|
-moz-border-radius: 9px;
|
|
5148
5416
|
border-radius: 9px;
|
|
@@ -5275,7 +5543,7 @@ a.badge:hover {
|
|
|
5275
5543
|
-webkit-border-radius: 4px;
|
|
5276
5544
|
-moz-border-radius: 4px;
|
|
5277
5545
|
border-radius: 4px;
|
|
5278
|
-
filter: progid:
|
|
5546
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
|
|
5279
5547
|
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
5280
5548
|
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
5281
5549
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
@@ -5296,7 +5564,7 @@ a.badge:hover {
|
|
|
5296
5564
|
background-image: -o-linear-gradient(top, #149bdf, #0480be);
|
|
5297
5565
|
background-image: linear-gradient(to bottom, #149bdf, #0480be);
|
|
5298
5566
|
background-repeat: repeat-x;
|
|
5299
|
-
filter: progid:
|
|
5567
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
|
|
5300
5568
|
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
5301
5569
|
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
5302
5570
|
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
@@ -5345,7 +5613,7 @@ a.badge:hover {
|
|
|
5345
5613
|
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
|
5346
5614
|
background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
|
|
5347
5615
|
background-repeat: repeat-x;
|
|
5348
|
-
filter: progid:
|
|
5616
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
|
|
5349
5617
|
}
|
|
5350
5618
|
|
|
5351
5619
|
.progress-danger.progress-striped .bar,
|
|
@@ -5367,7 +5635,7 @@ a.badge:hover {
|
|
|
5367
5635
|
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
|
5368
5636
|
background-image: linear-gradient(to bottom, #62c462, #57a957);
|
|
5369
5637
|
background-repeat: repeat-x;
|
|
5370
|
-
filter: progid:
|
|
5638
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
|
|
5371
5639
|
}
|
|
5372
5640
|
|
|
5373
5641
|
.progress-success.progress-striped .bar,
|
|
@@ -5389,7 +5657,7 @@ a.badge:hover {
|
|
|
5389
5657
|
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
|
5390
5658
|
background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
|
|
5391
5659
|
background-repeat: repeat-x;
|
|
5392
|
-
filter: progid:
|
|
5660
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
|
|
5393
5661
|
}
|
|
5394
5662
|
|
|
5395
5663
|
.progress-info.progress-striped .bar,
|
|
@@ -5411,7 +5679,7 @@ a.badge:hover {
|
|
|
5411
5679
|
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
|
5412
5680
|
background-image: linear-gradient(to bottom, #fbb450, #f89406);
|
|
5413
5681
|
background-repeat: repeat-x;
|
|
5414
|
-
filter: progid:
|
|
5682
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
|
|
5415
5683
|
}
|
|
5416
5684
|
|
|
5417
5685
|
.progress-warning.progress-striped .bar,
|
|
@@ -5578,6 +5846,10 @@ a.badge:hover {
|
|
|
5578
5846
|
.hero-unit {
|
|
5579
5847
|
padding: 60px;
|
|
5580
5848
|
margin-bottom: 30px;
|
|
5849
|
+
font-size: 18px;
|
|
5850
|
+
font-weight: 200;
|
|
5851
|
+
line-height: 30px;
|
|
5852
|
+
color: inherit;
|
|
5581
5853
|
background-color: #eeeeee;
|
|
5582
5854
|
-webkit-border-radius: 6px;
|
|
5583
5855
|
-moz-border-radius: 6px;
|
|
@@ -5592,11 +5864,8 @@ a.badge:hover {
|
|
|
5592
5864
|
color: inherit;
|
|
5593
5865
|
}
|
|
5594
5866
|
|
|
5595
|
-
.hero-unit
|
|
5596
|
-
font-size: 18px;
|
|
5597
|
-
font-weight: 200;
|
|
5867
|
+
.hero-unit li {
|
|
5598
5868
|
line-height: 30px;
|
|
5599
|
-
color: inherit;
|
|
5600
5869
|
}
|
|
5601
5870
|
|
|
5602
5871
|
.pull-right {
|