jombo 0.0.1.beta23 → 0.0.1.beta24
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/LICENSE +22 -0
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +2 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +28 -6
- data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +2 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +14 -7
- data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +3 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +28 -24
- data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +32 -21
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +498 -483
- metadata +3 -2
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
2
|
* Bootstrap v2.0.0
|
3
3
|
*
|
4
|
-
* Copyright
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
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:
|
9
|
+
* Date: Thu 19 Jan 2012 22:27:04 GMT
|
10
10
|
*/
|
11
11
|
html, body {
|
12
12
|
margin: 0;
|
@@ -163,7 +163,7 @@ input[type="search"] {
|
|
163
163
|
-moz-box-sizing: content-box;
|
164
164
|
box-sizing: content-box;
|
165
165
|
}
|
166
|
-
input[type="search"]::-webkit-search-decoration {
|
166
|
+
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
|
167
167
|
-webkit-appearance: none;
|
168
168
|
}
|
169
169
|
textarea {
|
@@ -182,13 +182,11 @@ body {
|
|
182
182
|
width: 940px;
|
183
183
|
margin-left: auto;
|
184
184
|
margin-right: auto;
|
185
|
-
zoom: 1;
|
185
|
+
*zoom: 1;
|
186
186
|
}
|
187
187
|
.container:before, .container:after {
|
188
188
|
display: table;
|
189
|
-
*display: inline;
|
190
189
|
content: "";
|
191
|
-
zoom: 1;
|
192
190
|
}
|
193
191
|
.container:after {
|
194
192
|
clear: both;
|
@@ -198,13 +196,11 @@ body {
|
|
198
196
|
min-width: 940px;
|
199
197
|
padding-left: 20px;
|
200
198
|
padding-right: 20px;
|
201
|
-
zoom: 1;
|
199
|
+
*zoom: 1;
|
202
200
|
}
|
203
201
|
.fluid-container:before, .fluid-container:after {
|
204
202
|
display: table;
|
205
|
-
*display: inline;
|
206
203
|
content: "";
|
207
|
-
zoom: 1;
|
208
204
|
}
|
209
205
|
.fluid-container:after {
|
210
206
|
clear: both;
|
@@ -243,13 +239,11 @@ a:hover {
|
|
243
239
|
}
|
244
240
|
.row {
|
245
241
|
margin-left: -20px;
|
246
|
-
zoom: 1;
|
242
|
+
*zoom: 1;
|
247
243
|
}
|
248
244
|
.row:before, .row:after {
|
249
245
|
display: table;
|
250
|
-
*display: inline;
|
251
246
|
content: "";
|
252
|
-
zoom: 1;
|
253
247
|
}
|
254
248
|
.row:after {
|
255
249
|
clear: both;
|
@@ -410,7 +404,6 @@ ol {
|
|
410
404
|
}
|
411
405
|
li {
|
412
406
|
line-height: 18px;
|
413
|
-
color: #555555;
|
414
407
|
}
|
415
408
|
ul.unstyled {
|
416
409
|
margin-left: 0;
|
@@ -419,13 +412,13 @@ ul.unstyled {
|
|
419
412
|
dl {
|
420
413
|
margin-bottom: 18px;
|
421
414
|
}
|
422
|
-
|
415
|
+
dt, dd {
|
423
416
|
line-height: 18px;
|
424
417
|
}
|
425
|
-
|
418
|
+
dt {
|
426
419
|
font-weight: bold;
|
427
420
|
}
|
428
|
-
|
421
|
+
dd {
|
429
422
|
margin-left: 9px;
|
430
423
|
}
|
431
424
|
hr {
|
@@ -843,10 +836,10 @@ input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
|
|
843
836
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
|
844
837
|
cursor: not-allowed;
|
845
838
|
}
|
846
|
-
|
839
|
+
:-moz-placeholder {
|
847
840
|
color: #999999;
|
848
841
|
}
|
849
|
-
|
842
|
+
::-webkit-input-placeholder {
|
850
843
|
color: #999999;
|
851
844
|
}
|
852
845
|
.help-block {
|
@@ -866,16 +859,14 @@ input::-webkit-input-placeholder {
|
|
866
859
|
}
|
867
860
|
.input-prepend, .input-append {
|
868
861
|
margin-bottom: 5px;
|
869
|
-
zoom: 1;
|
862
|
+
*zoom: 1;
|
870
863
|
}
|
871
864
|
.input-prepend:before,
|
872
865
|
.input-append:before,
|
873
866
|
.input-prepend:after,
|
874
867
|
.input-append:after {
|
875
868
|
display: table;
|
876
|
-
*display: inline;
|
877
869
|
content: "";
|
878
|
-
zoom: 1;
|
879
870
|
}
|
880
871
|
.input-prepend:after, .input-append:after {
|
881
872
|
clear: both;
|
@@ -943,102 +934,102 @@ input::-webkit-input-placeholder {
|
|
943
934
|
-moz-border-radius: 14px;
|
944
935
|
border-radius: 14px;
|
945
936
|
}
|
946
|
-
.search
|
947
|
-
.inline
|
948
|
-
.horizontal
|
949
|
-
.search
|
950
|
-
.inline
|
951
|
-
.horizontal
|
952
|
-
.search
|
953
|
-
.inline
|
954
|
-
.horizontal
|
955
|
-
.search
|
956
|
-
.inline
|
957
|
-
.horizontal
|
937
|
+
.form-search input,
|
938
|
+
.form-inline input,
|
939
|
+
.form-horizontal input,
|
940
|
+
.form-search textarea,
|
941
|
+
.form-inline textarea,
|
942
|
+
.form-horizontal textarea,
|
943
|
+
.form-search select,
|
944
|
+
.form-inline select,
|
945
|
+
.form-horizontal select,
|
946
|
+
.form-search .uneditable-input,
|
947
|
+
.form-inline .uneditable-input,
|
948
|
+
.form-horizontal .uneditable-input {
|
958
949
|
display: inline-block;
|
959
950
|
margin-bottom: 0;
|
960
951
|
}
|
952
|
+
.form-search label, .form-inline label {
|
953
|
+
display: inline-block;
|
954
|
+
}
|
961
955
|
.control-group {
|
962
956
|
margin-bottom: 18px;
|
963
957
|
}
|
964
|
-
.control-group > label {
|
965
|
-
font-weight: bold;
|
966
|
-
}
|
967
|
-
.horizontal-form .control-group > label {
|
958
|
+
.form-horizontal .control-group > label {
|
968
959
|
float: left;
|
969
|
-
width:
|
960
|
+
width: 140px;
|
970
961
|
padding-top: 5px;
|
971
962
|
text-align: right;
|
972
963
|
}
|
973
|
-
.horizontal
|
974
|
-
margin-left:
|
964
|
+
.form-horizontal .controls {
|
965
|
+
margin-left: 160px;
|
975
966
|
}
|
976
|
-
.horizontal
|
977
|
-
padding-left:
|
967
|
+
.form-horizontal .form-actions {
|
968
|
+
padding-left: 160px;
|
978
969
|
}
|
979
|
-
table {
|
970
|
+
.table {
|
980
971
|
width: 100%;
|
981
972
|
margin-bottom: 18px;
|
982
973
|
}
|
983
|
-
th, td {
|
974
|
+
.table th, .table td {
|
984
975
|
padding: 8px;
|
985
976
|
line-height: 18px;
|
986
977
|
text-align: left;
|
987
978
|
border-top: 1px solid #ddd;
|
988
979
|
}
|
989
|
-
th {
|
980
|
+
.table th {
|
990
981
|
font-weight: bold;
|
991
982
|
vertical-align: bottom;
|
992
983
|
}
|
993
|
-
td {
|
984
|
+
.table td {
|
994
985
|
vertical-align: top;
|
995
986
|
}
|
996
|
-
thead:first-child tr th, thead:first-child tr td {
|
987
|
+
.table thead:first-child tr th, .table thead:first-child tr td {
|
997
988
|
border-top: 0;
|
998
989
|
}
|
999
|
-
tbody + tbody {
|
990
|
+
.table tbody + tbody {
|
1000
991
|
border-top: 2px solid #ddd;
|
1001
992
|
}
|
1002
|
-
.condensed
|
993
|
+
.table-condensed th, .table-condensed td {
|
1003
994
|
padding: 4px 5px;
|
1004
995
|
}
|
1005
|
-
.bordered
|
996
|
+
.table-bordered {
|
1006
997
|
border: 1px solid #ddd;
|
1007
998
|
border-collapse: separate;
|
1008
999
|
-webkit-border-radius: 4px;
|
1009
1000
|
-moz-border-radius: 4px;
|
1010
1001
|
border-radius: 4px;
|
1011
1002
|
}
|
1012
|
-
.bordered
|
1013
|
-
.bordered
|
1014
|
-
.bordered
|
1015
|
-
.bordered
|
1003
|
+
.table-bordered th + th,
|
1004
|
+
.table-bordered td + td,
|
1005
|
+
.table-bordered th + td,
|
1006
|
+
.table-bordered td + th {
|
1016
1007
|
border-left: 1px solid #ddd;
|
1017
1008
|
}
|
1018
|
-
.bordered
|
1009
|
+
.table-bordered thead:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
|
1019
1010
|
border-top: 0;
|
1020
1011
|
}
|
1021
|
-
.bordered
|
1012
|
+
.table-bordered thead:first-child tr:first-child th:first-child, .table-bordered tbody:first-child tr:first-child td:first-child {
|
1022
1013
|
-webkit-border-radius: 4px 0 0 0;
|
1023
1014
|
-moz-border-radius: 4px 0 0 0;
|
1024
1015
|
border-radius: 4px 0 0 0;
|
1025
1016
|
}
|
1026
|
-
.bordered
|
1017
|
+
.table-bordered thead:first-child tr:first-child th:last-child, .table-bordered tbody:first-child tr:first-child td:last-child {
|
1027
1018
|
-webkit-border-radius: 0 4px 0 0;
|
1028
1019
|
-moz-border-radius: 0 4px 0 0;
|
1029
1020
|
border-radius: 0 4px 0 0;
|
1030
1021
|
}
|
1031
|
-
.bordered
|
1022
|
+
.table-bordered thead:last-child tr:last-child th:first-child, .table-bordered tbody:last-child tr:last-child td:first-child {
|
1032
1023
|
-webkit-border-radius: 0 0 0 4px;
|
1033
1024
|
-moz-border-radius: 0 0 0 4px;
|
1034
1025
|
border-radius: 0 0 0 4px;
|
1035
1026
|
}
|
1036
|
-
.bordered
|
1027
|
+
.table-bordered thead:last-child tr:last-child th:last-child, .table-bordered tbody:last-child tr:last-child td:last-child {
|
1037
1028
|
-webkit-border-radius: 0 0 4px 0;
|
1038
1029
|
-moz-border-radius: 0 0 4px 0;
|
1039
1030
|
border-radius: 0 0 4px 0;
|
1040
1031
|
}
|
1041
|
-
.striped
|
1032
|
+
.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
|
1042
1033
|
background-color: #f9f9f9;
|
1043
1034
|
}
|
1044
1035
|
table .span1 {
|
@@ -1114,7 +1105,7 @@ table .header:after {
|
|
1114
1105
|
visibility: hidden;
|
1115
1106
|
}
|
1116
1107
|
table .headerSortUp, table .headerSortDown {
|
1117
|
-
background-color:
|
1108
|
+
background-color: #f7f7f9;
|
1118
1109
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1119
1110
|
}
|
1120
1111
|
table .header:hover:after {
|
@@ -1181,7 +1172,7 @@ i {
|
|
1181
1172
|
.th {
|
1182
1173
|
background-position: -240px 0;
|
1183
1174
|
}
|
1184
|
-
.th-
|
1175
|
+
.th-list {
|
1185
1176
|
background-position: -264px 0;
|
1186
1177
|
}
|
1187
1178
|
.ok {
|
@@ -1438,6 +1429,7 @@ i {
|
|
1438
1429
|
.dropdown .caret {
|
1439
1430
|
margin-top: 8px;
|
1440
1431
|
margin-left: 2px;
|
1432
|
+
*margin-top: 7px;
|
1441
1433
|
}
|
1442
1434
|
.dropdown:hover .caret, .open.dropdown .caret {
|
1443
1435
|
filter: alpha(opacity=100);
|
@@ -1457,7 +1449,7 @@ i {
|
|
1457
1449
|
margin: 0;
|
1458
1450
|
list-style: none;
|
1459
1451
|
background-color: #ffffff;
|
1460
|
-
border-color: #
|
1452
|
+
border-color: #ccc;
|
1461
1453
|
border-color: rgba(0, 0, 0, 0.2);
|
1462
1454
|
border-style: solid;
|
1463
1455
|
border-width: 1px;
|
@@ -1471,6 +1463,8 @@ i {
|
|
1471
1463
|
-moz-background-clip: padding;
|
1472
1464
|
background-clip: padding-box;
|
1473
1465
|
zoom: 1;
|
1466
|
+
*border-right-width: 2px;
|
1467
|
+
*border-bottom-width: 2px;
|
1474
1468
|
}
|
1475
1469
|
.dropdown-menu .divider {
|
1476
1470
|
height: 1px;
|
@@ -1553,7 +1547,7 @@ i {
|
|
1553
1547
|
float: right;
|
1554
1548
|
font-size: 20px;
|
1555
1549
|
font-weight: bold;
|
1556
|
-
line-height:
|
1550
|
+
line-height: 12px;
|
1557
1551
|
color: #000000;
|
1558
1552
|
text-shadow: 0 1px 0 #ffffff;
|
1559
1553
|
filter: alpha(opacity=20);
|
@@ -1568,219 +1562,6 @@ i {
|
|
1568
1562
|
opacity: 0.4;
|
1569
1563
|
cursor: pointer;
|
1570
1564
|
}
|
1571
|
-
.navbar {
|
1572
|
-
overflow: visible;
|
1573
|
-
}
|
1574
|
-
.navbar-inner {
|
1575
|
-
background-color: #222222;
|
1576
|
-
background-color: #222222;
|
1577
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1578
|
-
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1579
|
-
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1580
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1581
|
-
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1582
|
-
background-image: -o-linear-gradient(top, #333333, #222222);
|
1583
|
-
background-image: linear-gradient(top, #333333, #222222);
|
1584
|
-
background-repeat: repeat-x;
|
1585
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1586
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1587
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1588
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1589
|
-
}
|
1590
|
-
.navbar .brand:hover {
|
1591
|
-
color: #ffffff;
|
1592
|
-
text-decoration: none;
|
1593
|
-
}
|
1594
|
-
.navbar .brand {
|
1595
|
-
float: left;
|
1596
|
-
display: block;
|
1597
|
-
padding: 8px 20px 12px;
|
1598
|
-
margin-left: -20px;
|
1599
|
-
font-size: 20px;
|
1600
|
-
font-weight: 200;
|
1601
|
-
line-height: 1;
|
1602
|
-
color: #ffffff;
|
1603
|
-
}
|
1604
|
-
.navbar p {
|
1605
|
-
margin: 0;
|
1606
|
-
line-height: 40px;
|
1607
|
-
}
|
1608
|
-
.navbar p a:hover {
|
1609
|
-
color: #ffffff;
|
1610
|
-
background-color: transparent;
|
1611
|
-
}
|
1612
|
-
.navbar .btn {
|
1613
|
-
margin-top: 5px;
|
1614
|
-
}
|
1615
|
-
.navbar-form {
|
1616
|
-
margin-bottom: 0;
|
1617
|
-
}
|
1618
|
-
.navbar-form input, .navbar-form select {
|
1619
|
-
display: inline-block;
|
1620
|
-
margin-bottom: 0;
|
1621
|
-
}
|
1622
|
-
.navbar-search {
|
1623
|
-
position: relative;
|
1624
|
-
float: left;
|
1625
|
-
margin-top: 6px;
|
1626
|
-
margin-bottom: 0;
|
1627
|
-
}
|
1628
|
-
.navbar-search .search-query {
|
1629
|
-
padding: 4px 9px;
|
1630
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1631
|
-
font-size: 13px;
|
1632
|
-
font-weight: normal;
|
1633
|
-
line-height: 1;
|
1634
|
-
color: #ffffff;
|
1635
|
-
color: rgba(255, 255, 255, 0.75);
|
1636
|
-
background-color: #444;
|
1637
|
-
background-color: rgba(255, 255, 255, 0.3);
|
1638
|
-
border: 1px solid #111;
|
1639
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1640
|
-
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1641
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1642
|
-
-webkit-transition: none;
|
1643
|
-
-moz-transition: none;
|
1644
|
-
-ms-transition: none;
|
1645
|
-
-o-transition: none;
|
1646
|
-
transition: none;
|
1647
|
-
}
|
1648
|
-
.navbar-search .search-query:-moz-placeholder {
|
1649
|
-
color: #eeeeee;
|
1650
|
-
}
|
1651
|
-
.navbar-search .search-query::-webkit-input-placeholder {
|
1652
|
-
color: #eeeeee;
|
1653
|
-
}
|
1654
|
-
.navbar-search .search-query:hover {
|
1655
|
-
color: #ffffff;
|
1656
|
-
background-color: #999999;
|
1657
|
-
background-color: rgba(255, 255, 255, 0.5);
|
1658
|
-
}
|
1659
|
-
.navbar-search .search-query:focus, .navbar-search .search-query.focused {
|
1660
|
-
padding: 5px 10px;
|
1661
|
-
color: #333333;
|
1662
|
-
text-shadow: 0 1px 0 #ffffff;
|
1663
|
-
background-color: #ffffff;
|
1664
|
-
border: 0;
|
1665
|
-
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1666
|
-
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1667
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1668
|
-
outline: 0;
|
1669
|
-
}
|
1670
|
-
.navbar-static {
|
1671
|
-
margin-bottom: 18px;
|
1672
|
-
}
|
1673
|
-
.navbar-static .navbar-inner {
|
1674
|
-
padding-left: 20px;
|
1675
|
-
padding-right: 20px;
|
1676
|
-
-webkit-border-radius: 4px;
|
1677
|
-
-moz-border-radius: 4px;
|
1678
|
-
border-radius: 4px;
|
1679
|
-
}
|
1680
|
-
.navbar-fixed {
|
1681
|
-
position: fixed;
|
1682
|
-
top: 0;
|
1683
|
-
right: 0;
|
1684
|
-
left: 0;
|
1685
|
-
z-index: 1030;
|
1686
|
-
}
|
1687
|
-
.navbar .nav {
|
1688
|
-
position: relative;
|
1689
|
-
left: 0;
|
1690
|
-
display: block;
|
1691
|
-
float: left;
|
1692
|
-
margin: 0 10px 0 0;
|
1693
|
-
}
|
1694
|
-
.navbar .nav.pull-right {
|
1695
|
-
float: right;
|
1696
|
-
}
|
1697
|
-
.navbar .nav > li {
|
1698
|
-
display: block;
|
1699
|
-
float: left;
|
1700
|
-
}
|
1701
|
-
.navbar .nav > li > a {
|
1702
|
-
float: none;
|
1703
|
-
padding: 10px 10px 11px;
|
1704
|
-
line-height: 19px;
|
1705
|
-
color: #999999;
|
1706
|
-
text-decoration: none;
|
1707
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1708
|
-
}
|
1709
|
-
.navbar .nav > li > a:hover {
|
1710
|
-
background-color: transparent;
|
1711
|
-
color: #ffffff;
|
1712
|
-
text-decoration: none;
|
1713
|
-
}
|
1714
|
-
.navbar .nav .active > a {
|
1715
|
-
color: #ffffff;
|
1716
|
-
text-decoration: none;
|
1717
|
-
background-color: #222;
|
1718
|
-
background-color: rgba(0, 0, 0, 0.5);
|
1719
|
-
}
|
1720
|
-
.navbar .vertical-divider {
|
1721
|
-
height: 40px;
|
1722
|
-
width: 1px;
|
1723
|
-
margin: 0 5px;
|
1724
|
-
overflow: hidden;
|
1725
|
-
background-color: #222;
|
1726
|
-
border-right: 1px solid #444;
|
1727
|
-
}
|
1728
|
-
.navbar .nav.pull-right {
|
1729
|
-
margin-left: 10px;
|
1730
|
-
margin-right: 0;
|
1731
|
-
}
|
1732
|
-
.navbar .dropdown-menu {
|
1733
|
-
top: 41px;
|
1734
|
-
-webkit-border-radius: 4px;
|
1735
|
-
-moz-border-radius: 4px;
|
1736
|
-
border-radius: 4px;
|
1737
|
-
}
|
1738
|
-
.navbar .dropdown-menu:before {
|
1739
|
-
content: '';
|
1740
|
-
display: inline-block;
|
1741
|
-
border-left: 7px solid transparent;
|
1742
|
-
border-right: 7px solid transparent;
|
1743
|
-
border-bottom: 7px solid #ccc;
|
1744
|
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
1745
|
-
position: absolute;
|
1746
|
-
top: -7px;
|
1747
|
-
left: 9px;
|
1748
|
-
}
|
1749
|
-
.navbar .dropdown-menu:after {
|
1750
|
-
content: '';
|
1751
|
-
display: inline-block;
|
1752
|
-
border-left: 6px solid transparent;
|
1753
|
-
border-right: 6px solid transparent;
|
1754
|
-
border-bottom: 6px solid #fff;
|
1755
|
-
position: absolute;
|
1756
|
-
top: -6px;
|
1757
|
-
left: 10px;
|
1758
|
-
}
|
1759
|
-
.navbar .dropdown-toggle .caret, .navbar .open.dropdown .caret {
|
1760
|
-
border-top-color: #fff;
|
1761
|
-
}
|
1762
|
-
.navbar .nav .active .caret {
|
1763
|
-
filter: alpha(opacity=100);
|
1764
|
-
-moz-opacity: 1;
|
1765
|
-
opacity: 1;
|
1766
|
-
}
|
1767
|
-
.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
|
1768
|
-
background-color: transparent;
|
1769
|
-
}
|
1770
|
-
.navbar .nav .active > .dropdown-toggle:hover {
|
1771
|
-
color: #fff;
|
1772
|
-
}
|
1773
|
-
.navbar .nav.pull-right .dropdown-menu {
|
1774
|
-
right: 0;
|
1775
|
-
}
|
1776
|
-
.navbar .nav.pull-right .dropdown-menu:before {
|
1777
|
-
left: auto;
|
1778
|
-
right: 12px;
|
1779
|
-
}
|
1780
|
-
.navbar .nav.pull-right .dropdown-menu:after {
|
1781
|
-
left: auto;
|
1782
|
-
right: 13px;
|
1783
|
-
}
|
1784
1565
|
.nav {
|
1785
1566
|
margin-left: 0;
|
1786
1567
|
margin-bottom: 18px;
|
@@ -1821,16 +1602,14 @@ i {
|
|
1821
1602
|
background-color: #0088cc;
|
1822
1603
|
}
|
1823
1604
|
.tabs, .pills {
|
1824
|
-
zoom: 1;
|
1605
|
+
*zoom: 1;
|
1825
1606
|
}
|
1826
1607
|
.tabs:before,
|
1827
1608
|
.pills:before,
|
1828
1609
|
.tabs:after,
|
1829
1610
|
.pills:after {
|
1830
1611
|
display: table;
|
1831
|
-
*display: inline;
|
1832
1612
|
content: "";
|
1833
|
-
zoom: 1;
|
1834
1613
|
}
|
1835
1614
|
.tabs:after, .pills:after {
|
1836
1615
|
clear: both;
|
@@ -1954,13 +1733,11 @@ i {
|
|
1954
1733
|
border-color: #999;
|
1955
1734
|
}
|
1956
1735
|
.tabbable {
|
1957
|
-
zoom: 1;
|
1736
|
+
*zoom: 1;
|
1958
1737
|
}
|
1959
1738
|
.tabbable:before, .tabbable:after {
|
1960
1739
|
display: table;
|
1961
|
-
*display: inline;
|
1962
1740
|
content: "";
|
1963
|
-
zoom: 1;
|
1964
1741
|
}
|
1965
1742
|
.tabbable:after {
|
1966
1743
|
clear: both;
|
@@ -2035,20 +1812,236 @@ i {
|
|
2035
1812
|
.tabs-right .tabs .active > a, .tabs-right .tabs .active > a:hover {
|
2036
1813
|
border-color: #ddd #ddd #ddd transparent;
|
2037
1814
|
}
|
2038
|
-
.
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
background-
|
2043
|
-
background-
|
2044
|
-
background-image: -
|
2045
|
-
background-image: -
|
2046
|
-
background-image: -
|
2047
|
-
background-image: -
|
2048
|
-
background-image: linear-gradient(top, #
|
2049
|
-
background-
|
2050
|
-
|
2051
|
-
|
1815
|
+
.navbar {
|
1816
|
+
overflow: visible;
|
1817
|
+
}
|
1818
|
+
.navbar-inner {
|
1819
|
+
background-color: #222222;
|
1820
|
+
background-color: #222222;
|
1821
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1822
|
+
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1823
|
+
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1824
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1825
|
+
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1826
|
+
background-image: -o-linear-gradient(top, #333333, #222222);
|
1827
|
+
background-image: linear-gradient(top, #333333, #222222);
|
1828
|
+
background-repeat: repeat-x;
|
1829
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1830
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1831
|
+
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1832
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1833
|
+
}
|
1834
|
+
.navbar .brand:hover {
|
1835
|
+
color: #ffffff;
|
1836
|
+
text-decoration: none;
|
1837
|
+
}
|
1838
|
+
.navbar .brand {
|
1839
|
+
float: left;
|
1840
|
+
display: block;
|
1841
|
+
padding: 8px 20px 12px;
|
1842
|
+
margin-left: -20px;
|
1843
|
+
font-size: 20px;
|
1844
|
+
font-weight: 200;
|
1845
|
+
line-height: 1;
|
1846
|
+
color: #ffffff;
|
1847
|
+
}
|
1848
|
+
.navbar p {
|
1849
|
+
margin: 0;
|
1850
|
+
line-height: 40px;
|
1851
|
+
}
|
1852
|
+
.navbar p a:hover {
|
1853
|
+
color: #ffffff;
|
1854
|
+
background-color: transparent;
|
1855
|
+
}
|
1856
|
+
.navbar .btn, .navbar .btn-group {
|
1857
|
+
margin-top: 5px;
|
1858
|
+
}
|
1859
|
+
.navbar .btn-group .btn {
|
1860
|
+
margin-top: 0;
|
1861
|
+
}
|
1862
|
+
.navbar-form {
|
1863
|
+
margin-bottom: 0;
|
1864
|
+
}
|
1865
|
+
.navbar-form input, .navbar-form select {
|
1866
|
+
display: inline-block;
|
1867
|
+
margin-bottom: 0;
|
1868
|
+
}
|
1869
|
+
.navbar-search {
|
1870
|
+
position: relative;
|
1871
|
+
float: left;
|
1872
|
+
margin-top: 6px;
|
1873
|
+
margin-bottom: 0;
|
1874
|
+
}
|
1875
|
+
.navbar-search .search-query {
|
1876
|
+
padding: 4px 9px;
|
1877
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1878
|
+
font-size: 13px;
|
1879
|
+
font-weight: normal;
|
1880
|
+
line-height: 1;
|
1881
|
+
color: #ffffff;
|
1882
|
+
color: rgba(255, 255, 255, 0.75);
|
1883
|
+
background: #444;
|
1884
|
+
background: rgba(255, 255, 255, 0.3);
|
1885
|
+
border: 1px solid #111;
|
1886
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1887
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1888
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1889
|
+
-webkit-transition: none;
|
1890
|
+
-moz-transition: none;
|
1891
|
+
-ms-transition: none;
|
1892
|
+
-o-transition: none;
|
1893
|
+
transition: none;
|
1894
|
+
}
|
1895
|
+
.navbar-search .search-query :-moz-placeholder {
|
1896
|
+
color: #eeeeee;
|
1897
|
+
}
|
1898
|
+
.navbar-search .search-query::-webkit-input-placeholder {
|
1899
|
+
color: #eeeeee;
|
1900
|
+
}
|
1901
|
+
.navbar-search .search-query:hover {
|
1902
|
+
color: #ffffff;
|
1903
|
+
background-color: #999999;
|
1904
|
+
background-color: rgba(255, 255, 255, 0.5);
|
1905
|
+
}
|
1906
|
+
.navbar-search .search-query:focus, .navbar-search .search-query.focused {
|
1907
|
+
padding: 5px 10px;
|
1908
|
+
color: #333333;
|
1909
|
+
text-shadow: 0 1px 0 #ffffff;
|
1910
|
+
background-color: #ffffff;
|
1911
|
+
border: 0;
|
1912
|
+
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1913
|
+
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1914
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1915
|
+
outline: 0;
|
1916
|
+
}
|
1917
|
+
.navbar-static {
|
1918
|
+
margin-bottom: 18px;
|
1919
|
+
}
|
1920
|
+
.navbar-static .navbar-inner {
|
1921
|
+
padding-left: 20px;
|
1922
|
+
padding-right: 20px;
|
1923
|
+
-webkit-border-radius: 4px;
|
1924
|
+
-moz-border-radius: 4px;
|
1925
|
+
border-radius: 4px;
|
1926
|
+
}
|
1927
|
+
.navbar-fixed {
|
1928
|
+
position: fixed;
|
1929
|
+
top: 0;
|
1930
|
+
right: 0;
|
1931
|
+
left: 0;
|
1932
|
+
z-index: 1030;
|
1933
|
+
}
|
1934
|
+
.navbar .nav {
|
1935
|
+
position: relative;
|
1936
|
+
left: 0;
|
1937
|
+
display: block;
|
1938
|
+
float: left;
|
1939
|
+
margin: 0 10px 0 0;
|
1940
|
+
}
|
1941
|
+
.navbar .nav.pull-right {
|
1942
|
+
float: right;
|
1943
|
+
}
|
1944
|
+
.navbar .nav > li {
|
1945
|
+
display: block;
|
1946
|
+
float: left;
|
1947
|
+
}
|
1948
|
+
.navbar .nav > li > a {
|
1949
|
+
float: none;
|
1950
|
+
padding: 10px 10px 11px;
|
1951
|
+
line-height: 19px;
|
1952
|
+
color: #999999;
|
1953
|
+
text-decoration: none;
|
1954
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1955
|
+
}
|
1956
|
+
.navbar .nav > li > a:hover {
|
1957
|
+
background-color: transparent;
|
1958
|
+
color: #ffffff;
|
1959
|
+
text-decoration: none;
|
1960
|
+
}
|
1961
|
+
.navbar .nav .active > a {
|
1962
|
+
color: #ffffff;
|
1963
|
+
text-decoration: none;
|
1964
|
+
background-color: #222;
|
1965
|
+
background-color: rgba(0, 0, 0, 0.5);
|
1966
|
+
}
|
1967
|
+
.navbar .vertical-divider {
|
1968
|
+
height: 40px;
|
1969
|
+
width: 1px;
|
1970
|
+
margin: 0 5px;
|
1971
|
+
overflow: hidden;
|
1972
|
+
background-color: #222;
|
1973
|
+
border-right: 1px solid #444;
|
1974
|
+
}
|
1975
|
+
.navbar .nav.pull-right {
|
1976
|
+
margin-left: 10px;
|
1977
|
+
margin-right: 0;
|
1978
|
+
}
|
1979
|
+
.navbar .dropdown-menu {
|
1980
|
+
top: 41px;
|
1981
|
+
-webkit-border-radius: 4px;
|
1982
|
+
-moz-border-radius: 4px;
|
1983
|
+
border-radius: 4px;
|
1984
|
+
}
|
1985
|
+
.navbar .dropdown-menu:before {
|
1986
|
+
content: '';
|
1987
|
+
display: inline-block;
|
1988
|
+
border-left: 7px solid transparent;
|
1989
|
+
border-right: 7px solid transparent;
|
1990
|
+
border-bottom: 7px solid #ccc;
|
1991
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
1992
|
+
position: absolute;
|
1993
|
+
top: -7px;
|
1994
|
+
left: 9px;
|
1995
|
+
}
|
1996
|
+
.navbar .dropdown-menu:after {
|
1997
|
+
content: '';
|
1998
|
+
display: inline-block;
|
1999
|
+
border-left: 6px solid transparent;
|
2000
|
+
border-right: 6px solid transparent;
|
2001
|
+
border-bottom: 6px solid #fff;
|
2002
|
+
position: absolute;
|
2003
|
+
top: -6px;
|
2004
|
+
left: 10px;
|
2005
|
+
}
|
2006
|
+
.navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret {
|
2007
|
+
border-top-color: #fff;
|
2008
|
+
}
|
2009
|
+
.navbar .nav .active .caret {
|
2010
|
+
filter: alpha(opacity=100);
|
2011
|
+
-moz-opacity: 1;
|
2012
|
+
opacity: 1;
|
2013
|
+
}
|
2014
|
+
.navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle {
|
2015
|
+
background-color: transparent;
|
2016
|
+
}
|
2017
|
+
.navbar .nav .active > .dropdown-toggle:hover {
|
2018
|
+
color: #fff;
|
2019
|
+
}
|
2020
|
+
.navbar .nav.pull-right .dropdown-menu {
|
2021
|
+
right: 0;
|
2022
|
+
}
|
2023
|
+
.navbar .nav.pull-right .dropdown-menu:before {
|
2024
|
+
left: auto;
|
2025
|
+
right: 12px;
|
2026
|
+
}
|
2027
|
+
.navbar .nav.pull-right .dropdown-menu:after {
|
2028
|
+
left: auto;
|
2029
|
+
right: 13px;
|
2030
|
+
}
|
2031
|
+
.breadcrumb {
|
2032
|
+
padding: 7px 14px;
|
2033
|
+
margin: 0 0 18px;
|
2034
|
+
background-color: #f5f5f5;
|
2035
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
|
2036
|
+
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
2037
|
+
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
2038
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
|
2039
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
|
2040
|
+
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
|
2041
|
+
background-image: linear-gradient(top, #ffffff, #f5f5f5);
|
2042
|
+
background-repeat: repeat-x;
|
2043
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
|
2044
|
+
border: 1px solid #ddd;
|
2052
2045
|
-webkit-border-radius: 3px;
|
2053
2046
|
-moz-border-radius: 3px;
|
2054
2047
|
border-radius: 3px;
|
@@ -2077,9 +2070,8 @@ i {
|
|
2077
2070
|
/* IE7 inline-block hack */
|
2078
2071
|
|
2079
2072
|
*zoom: 1;
|
2080
|
-
margin: 0;
|
2081
|
-
|
2082
|
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
2073
|
+
margin-left: 0;
|
2074
|
+
margin-bottom: 0;
|
2083
2075
|
-webkit-border-radius: 3px;
|
2084
2076
|
-moz-border-radius: 3px;
|
2085
2077
|
border-radius: 3px;
|
@@ -2095,27 +2087,68 @@ i {
|
|
2095
2087
|
padding: 0 14px;
|
2096
2088
|
line-height: 34px;
|
2097
2089
|
text-decoration: none;
|
2098
|
-
border
|
2099
|
-
border-
|
2100
|
-
border-right-color: rgba(0, 0, 0, 0.15);
|
2101
|
-
*border-right-color: #ddd;
|
2102
|
-
/* IE6-7 */
|
2103
|
-
|
2090
|
+
border: 1px solid #ddd;
|
2091
|
+
border-left-width: 0;
|
2104
2092
|
}
|
2105
2093
|
.pagination a:hover, .pagination .active a {
|
2106
|
-
background-color: #
|
2094
|
+
background-color: #f5f5f5;
|
2095
|
+
}
|
2096
|
+
.pagination .active a {
|
2097
|
+
color: #999999;
|
2107
2098
|
}
|
2108
2099
|
.pagination .disabled a, .pagination .disabled a:hover {
|
2109
2100
|
color: #999999;
|
2110
2101
|
background-color: transparent;
|
2111
2102
|
cursor: default;
|
2112
2103
|
}
|
2113
|
-
.pagination
|
2114
|
-
border:
|
2104
|
+
.pagination li:first-child a {
|
2105
|
+
border-left-width: 1px;
|
2106
|
+
-webkit-border-radius: 3px 0 0 3px;
|
2107
|
+
-moz-border-radius: 3px 0 0 3px;
|
2108
|
+
border-radius: 3px 0 0 3px;
|
2109
|
+
}
|
2110
|
+
.pagination li:last-child a {
|
2111
|
+
-webkit-border-radius: 0 3px 3px 0;
|
2112
|
+
-moz-border-radius: 0 3px 3px 0;
|
2113
|
+
border-radius: 0 3px 3px 0;
|
2115
2114
|
}
|
2116
|
-
.pagination
|
2115
|
+
.pagination-centered {
|
2117
2116
|
text-align: center;
|
2118
2117
|
}
|
2118
|
+
.pagination-right {
|
2119
|
+
text-align: right;
|
2120
|
+
}
|
2121
|
+
.pager {
|
2122
|
+
margin-left: 0;
|
2123
|
+
margin-bottom: 18px;
|
2124
|
+
list-style: none;
|
2125
|
+
text-align: center;
|
2126
|
+
*zoom: 1;
|
2127
|
+
}
|
2128
|
+
.pager:before, .pager:after {
|
2129
|
+
display: table;
|
2130
|
+
content: "";
|
2131
|
+
}
|
2132
|
+
.pager:after {
|
2133
|
+
clear: both;
|
2134
|
+
}
|
2135
|
+
.pager li {
|
2136
|
+
display: inline;
|
2137
|
+
}
|
2138
|
+
.pager a {
|
2139
|
+
display: inline-block;
|
2140
|
+
padding: 6px 15px;
|
2141
|
+
background-color: #f5f5f5;
|
2142
|
+
-webkit-border-radius: 15px;
|
2143
|
+
-moz-border-radius: 15px;
|
2144
|
+
border-radius: 15px;
|
2145
|
+
}
|
2146
|
+
.pager .next a {
|
2147
|
+
float: right;
|
2148
|
+
}
|
2149
|
+
.pager .previous a {
|
2150
|
+
float: left;
|
2151
|
+
}
|
2119
2152
|
.modal-backdrop {
|
2120
2153
|
position: fixed;
|
2121
2154
|
top: 0;
|
@@ -2141,7 +2174,7 @@ i {
|
|
2141
2174
|
max-height: 500px;
|
2142
2175
|
overflow: auto;
|
2143
2176
|
width: 560px;
|
2144
|
-
margin: -250px 0 0 -
|
2177
|
+
margin: -250px 0 0 -280px;
|
2145
2178
|
background-color: #ffffff;
|
2146
2179
|
border: 1px solid #999;
|
2147
2180
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
@@ -2190,13 +2223,11 @@ i {
|
|
2190
2223
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2191
2224
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2192
2225
|
box-shadow: inset 0 1px 0 #ffffff;
|
2193
|
-
zoom: 1;
|
2226
|
+
*zoom: 1;
|
2194
2227
|
}
|
2195
2228
|
.modal-footer:before, .modal-footer:after {
|
2196
2229
|
display: table;
|
2197
|
-
*display: inline;
|
2198
2230
|
content: "";
|
2199
|
-
zoom: 1;
|
2200
2231
|
}
|
2201
2232
|
.modal-footer:after {
|
2202
2233
|
clear: both;
|
@@ -2342,8 +2373,8 @@ i {
|
|
2342
2373
|
padding: 3px;
|
2343
2374
|
width: 280px;
|
2344
2375
|
overflow: hidden;
|
2345
|
-
background
|
2346
|
-
background
|
2376
|
+
background: #000000;
|
2377
|
+
background: rgba(0, 0, 0, 0.8);
|
2347
2378
|
-webkit-border-radius: 6px;
|
2348
2379
|
-moz-border-radius: 6px;
|
2349
2380
|
border-radius: 6px;
|
@@ -2374,28 +2405,15 @@ i {
|
|
2374
2405
|
margin-bottom: 0;
|
2375
2406
|
}
|
2376
2407
|
.btn.danger,
|
2377
|
-
.alert-message.danger,
|
2378
2408
|
.btn.danger:hover,
|
2379
|
-
.alert-message.danger:hover,
|
2380
|
-
.btn.error,
|
2381
|
-
.alert-message.error,
|
2382
|
-
.btn.error:hover,
|
2383
|
-
.alert-message.error:hover,
|
2384
2409
|
.btn.success,
|
2385
|
-
.alert-message.success,
|
2386
2410
|
.btn.success:hover,
|
2387
|
-
.alert-message.success:hover,
|
2388
2411
|
.btn.info,
|
2389
|
-
.
|
2390
|
-
.btn.info:hover,
|
2391
|
-
.alert-message.info:hover {
|
2412
|
+
.btn.info:hover {
|
2392
2413
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2393
2414
|
color: #ffffff;
|
2394
2415
|
}
|
2395
|
-
.btn.danger
|
2396
|
-
.alert-message.danger,
|
2397
|
-
.btn.error,
|
2398
|
-
.alert-message.error {
|
2416
|
+
.btn.danger {
|
2399
2417
|
background-color: #c43c35;
|
2400
2418
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
2401
2419
|
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
@@ -2409,7 +2427,7 @@ i {
|
|
2409
2427
|
border-color: #c43c35 #c43c35 #882a25;
|
2410
2428
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2411
2429
|
}
|
2412
|
-
.btn.success
|
2430
|
+
.btn.success {
|
2413
2431
|
background-color: #57a957;
|
2414
2432
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
2415
2433
|
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
@@ -2423,7 +2441,7 @@ i {
|
|
2423
2441
|
border-color: #57a957 #57a957 #3d773d;
|
2424
2442
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2425
2443
|
}
|
2426
|
-
.btn.info
|
2444
|
+
.btn.info {
|
2427
2445
|
background-color: #339bb9;
|
2428
2446
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
2429
2447
|
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
@@ -2493,9 +2511,10 @@ i {
|
|
2493
2511
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2494
2512
|
}
|
2495
2513
|
.btn.active, .btn:active {
|
2496
|
-
-
|
2497
|
-
-
|
2498
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.
|
2514
|
+
background-image: none;
|
2515
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2516
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2517
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2499
2518
|
}
|
2500
2519
|
.btn.disabled {
|
2501
2520
|
cursor: default;
|
@@ -2540,13 +2559,11 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2540
2559
|
}
|
2541
2560
|
.btn-group {
|
2542
2561
|
position: relative;
|
2543
|
-
zoom: 1;
|
2562
|
+
*zoom: 1;
|
2544
2563
|
}
|
2545
2564
|
.btn-group:before, .btn-group:after {
|
2546
2565
|
display: table;
|
2547
|
-
*display: inline;
|
2548
2566
|
content: "";
|
2549
|
-
zoom: 1;
|
2550
2567
|
}
|
2551
2568
|
.btn-group:after {
|
2552
2569
|
clear: both;
|
@@ -2638,106 +2655,68 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2638
2655
|
-moz-opacity: 0.75;
|
2639
2656
|
opacity: 0.75;
|
2640
2657
|
}
|
2641
|
-
.alert
|
2642
|
-
|
2643
|
-
padding: 7px 15px;
|
2658
|
+
.alert {
|
2659
|
+
padding: 8px 35px 8px 14px;
|
2644
2660
|
margin-bottom: 18px;
|
2645
|
-
color: #333333;
|
2646
2661
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2647
|
-
background-color: #
|
2648
|
-
|
2649
|
-
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
|
2650
|
-
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
|
2651
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
|
2652
|
-
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
|
2653
|
-
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
|
2654
|
-
background-image: linear-gradient(top, #fceec1, #eedc94);
|
2655
|
-
background-repeat: repeat-x;
|
2656
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
|
2657
|
-
border-color: #eedc94 #eedc94 #e4c652;
|
2658
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2659
|
-
border-width: 1px;
|
2660
|
-
border-style: solid;
|
2662
|
+
background-color: #fcf8e3;
|
2663
|
+
border: 1px solid #f3edd2;
|
2661
2664
|
-webkit-border-radius: 4px;
|
2662
2665
|
-moz-border-radius: 4px;
|
2663
2666
|
border-radius: 4px;
|
2664
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2665
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2666
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2667
2667
|
}
|
2668
|
-
.alert
|
2668
|
+
.alert, .alert-heading {
|
2669
|
+
color: #c09853;
|
2670
|
+
}
|
2671
|
+
.alert .close {
|
2669
2672
|
*margin-top: 3px;
|
2670
2673
|
/* IE7 spacing */
|
2671
2674
|
|
2675
|
+
position: relative;
|
2676
|
+
right: -21px;
|
2672
2677
|
}
|
2673
|
-
.alert-
|
2674
|
-
|
2678
|
+
.alert-success {
|
2679
|
+
background-color: #dff0d8;
|
2680
|
+
border-color: #cfe8c4;
|
2675
2681
|
}
|
2676
|
-
.alert-
|
2677
|
-
|
2682
|
+
.alert-success, .alert-success .alert-heading {
|
2683
|
+
color: #468847;
|
2678
2684
|
}
|
2679
|
-
.alert-
|
2680
|
-
|
2681
|
-
|
2682
|
-
line-height: 28px;
|
2685
|
+
.alert-danger, .alert-error {
|
2686
|
+
background-color: #f2dede;
|
2687
|
+
border-color: #e9c7c7;
|
2683
2688
|
}
|
2684
|
-
.alert-
|
2685
|
-
|
2686
|
-
|
2687
|
-
|
2689
|
+
.alert-danger,
|
2690
|
+
.alert-error,
|
2691
|
+
.alert-danger .alert-heading,
|
2692
|
+
.alert-error .alert-heading {
|
2693
|
+
color: #B94A48;
|
2688
2694
|
}
|
2689
|
-
.alert-
|
2690
|
-
|
2695
|
+
.alert-info {
|
2696
|
+
background-color: #d9edf7;
|
2697
|
+
border-color: #bfe1f2;
|
2691
2698
|
}
|
2692
|
-
.alert-
|
2693
|
-
|
2694
|
-
background-image: none;
|
2695
|
-
background-color: #fdf5d9;
|
2696
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2697
|
-
border-color: #fceec1;
|
2698
|
-
-webkit-box-shadow: none;
|
2699
|
-
-moz-box-shadow: none;
|
2700
|
-
box-shadow: none;
|
2699
|
+
.alert-info, .alert-info .alert-heading {
|
2700
|
+
color: #3a87ad;
|
2701
2701
|
}
|
2702
|
-
.alert-
|
2703
|
-
|
2702
|
+
.alert-block {
|
2703
|
+
padding-top: 14px;
|
2704
|
+
padding-bottom: 14px;
|
2704
2705
|
}
|
2705
|
-
.alert-
|
2706
|
+
.alert-block > p, .alert-block > ul {
|
2706
2707
|
margin-bottom: 0;
|
2707
2708
|
}
|
2708
|
-
.alert-
|
2709
|
-
color: #333333;
|
2710
|
-
}
|
2711
|
-
.alert-message.block-message .alert-actions {
|
2709
|
+
.alert-block p + p {
|
2712
2710
|
margin-top: 5px;
|
2713
2711
|
}
|
2714
|
-
.alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
|
2715
|
-
color: #333333;
|
2716
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2717
|
-
}
|
2718
|
-
.alert-message.block-message.error {
|
2719
|
-
background-color: #fddfde;
|
2720
|
-
border-color: #fbc7c6;
|
2721
|
-
}
|
2722
|
-
.alert-message.block-message.success {
|
2723
|
-
background-color: #d1eed1;
|
2724
|
-
border-color: #bfe7bf;
|
2725
|
-
}
|
2726
|
-
.alert-message.block-message.info {
|
2727
|
-
background-color: #ddf4fb;
|
2728
|
-
border-color: #c6edf9;
|
2729
|
-
}
|
2730
2712
|
.thumbnails {
|
2731
2713
|
margin-left: -20px;
|
2732
|
-
margin-bottom: 0;
|
2733
2714
|
list-style: none;
|
2734
|
-
zoom: 1;
|
2715
|
+
*zoom: 1;
|
2735
2716
|
}
|
2736
2717
|
.thumbnails:before, .thumbnails:after {
|
2737
2718
|
display: table;
|
2738
|
-
*display: inline;
|
2739
2719
|
content: "";
|
2740
|
-
zoom: 1;
|
2741
2720
|
}
|
2742
2721
|
.thumbnails:after {
|
2743
2722
|
clear: both;
|
@@ -2771,74 +2750,6 @@ a.thumbnail:hover {
|
|
2771
2750
|
.thumbnail .caption {
|
2772
2751
|
padding: 9px;
|
2773
2752
|
}
|
2774
|
-
.carousel {
|
2775
|
-
position: relative;
|
2776
|
-
}
|
2777
|
-
.carousel .carousel-inner {
|
2778
|
-
overflow: hidden;
|
2779
|
-
width: 100%;
|
2780
|
-
position: relative;
|
2781
|
-
}
|
2782
|
-
.carousel .item {
|
2783
|
-
display: none;
|
2784
|
-
position: relative;
|
2785
|
-
-webkit-transition: 0.6s ease-in-out left;
|
2786
|
-
-moz-transition: 0.6s ease-in-out left;
|
2787
|
-
-ms-transition: 0.6s ease-in-out left;
|
2788
|
-
-o-transition: 0.6s ease-in-out left;
|
2789
|
-
transition: 0.6s ease-in-out left;
|
2790
|
-
}
|
2791
|
-
.carousel .active, .carousel .next, .carousel .prev {
|
2792
|
-
display: block;
|
2793
|
-
}
|
2794
|
-
.carousel .active {
|
2795
|
-
left: 0;
|
2796
|
-
}
|
2797
|
-
.carousel .next, .carousel .prev {
|
2798
|
-
position: absolute;
|
2799
|
-
top: 0;
|
2800
|
-
width: 100%;
|
2801
|
-
}
|
2802
|
-
.carousel .next {
|
2803
|
-
left: 100%;
|
2804
|
-
}
|
2805
|
-
.carousel .prev {
|
2806
|
-
left: -100%;
|
2807
|
-
}
|
2808
|
-
.carousel .next.left, .carousel .prev.right {
|
2809
|
-
left: 0%;
|
2810
|
-
}
|
2811
|
-
.carousel .active.left {
|
2812
|
-
left: -100%;
|
2813
|
-
}
|
2814
|
-
.carousel .active.right {
|
2815
|
-
left: 100%;
|
2816
|
-
}
|
2817
|
-
.carousel .nav {
|
2818
|
-
width: auto;
|
2819
|
-
-webkit-border-radius: 0;
|
2820
|
-
-moz-border-radius: 0;
|
2821
|
-
border-radius: 0;
|
2822
|
-
height: 50px;
|
2823
|
-
position: absolute;
|
2824
|
-
top: 50%;
|
2825
|
-
margin: -25px 0 0;
|
2826
|
-
cursor: pointer;
|
2827
|
-
background: rgba(0, 0, 0, 0.7);
|
2828
|
-
color: white;
|
2829
|
-
font-size: 42px;
|
2830
|
-
left: 5px;
|
2831
|
-
font-weight: 100;
|
2832
|
-
padding: 0 15px;
|
2833
|
-
}
|
2834
|
-
.carousel .nav.right {
|
2835
|
-
right: 5px;
|
2836
|
-
left: auto;
|
2837
|
-
}
|
2838
|
-
.carousel .nav:hover {
|
2839
|
-
text-decoration: none;
|
2840
|
-
background: rgba(0, 0, 0, 0.8);
|
2841
|
-
}
|
2842
2753
|
.label {
|
2843
2754
|
padding: 1px 3px 2px;
|
2844
2755
|
font-size: 9.75px;
|
@@ -3006,6 +2917,110 @@ a.thumbnail:hover {
|
|
3006
2917
|
background-image: -o-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);
|
3007
2918
|
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);
|
3008
2919
|
}
|
2920
|
+
.accordion {
|
2921
|
+
margin-bottom: 18px;
|
2922
|
+
}
|
2923
|
+
.accordion-group {
|
2924
|
+
background-color: #f5f5f5;
|
2925
|
+
-webkit-border-radius: 4px;
|
2926
|
+
-moz-border-radius: 4px;
|
2927
|
+
border-radius: 4px;
|
2928
|
+
}
|
2929
|
+
.accordion-heading {
|
2930
|
+
padding: 8px 15px;
|
2931
|
+
border-bottom: 0;
|
2932
|
+
}
|
2933
|
+
.accordion-body {
|
2934
|
+
margin-bottom: 2px;
|
2935
|
+
}
|
2936
|
+
.accordion-inner {
|
2937
|
+
padding: 9px 15px;
|
2938
|
+
border-top: 1px solid #e5e5e5;
|
2939
|
+
}
|
2940
|
+
.carousel {
|
2941
|
+
position: relative;
|
2942
|
+
line-height: 1;
|
2943
|
+
}
|
2944
|
+
.carousel-inner {
|
2945
|
+
overflow: hidden;
|
2946
|
+
width: 100%;
|
2947
|
+
position: relative;
|
2948
|
+
}
|
2949
|
+
.carousel .item {
|
2950
|
+
display: none;
|
2951
|
+
position: relative;
|
2952
|
+
-webkit-transition: 0.6s ease-in-out left;
|
2953
|
+
-moz-transition: 0.6s ease-in-out left;
|
2954
|
+
-ms-transition: 0.6s ease-in-out left;
|
2955
|
+
-o-transition: 0.6s ease-in-out left;
|
2956
|
+
transition: 0.6s ease-in-out left;
|
2957
|
+
}
|
2958
|
+
.carousel .active, .carousel .next, .carousel .prev {
|
2959
|
+
display: block;
|
2960
|
+
}
|
2961
|
+
.carousel .active {
|
2962
|
+
left: 0;
|
2963
|
+
}
|
2964
|
+
.carousel .next, .carousel .prev {
|
2965
|
+
position: absolute;
|
2966
|
+
top: 0;
|
2967
|
+
width: 100%;
|
2968
|
+
}
|
2969
|
+
.carousel .next {
|
2970
|
+
left: 100%;
|
2971
|
+
}
|
2972
|
+
.carousel .prev {
|
2973
|
+
left: -100%;
|
2974
|
+
}
|
2975
|
+
.carousel .next.left, .carousel .prev.right {
|
2976
|
+
left: 0;
|
2977
|
+
}
|
2978
|
+
.carousel .active.left {
|
2979
|
+
left: -100%;
|
2980
|
+
}
|
2981
|
+
.carousel .active.right {
|
2982
|
+
left: 100%;
|
2983
|
+
}
|
2984
|
+
.carousel-control {
|
2985
|
+
position: absolute;
|
2986
|
+
top: 40%;
|
2987
|
+
left: 15px;
|
2988
|
+
width: 40px;
|
2989
|
+
height: 40px;
|
2990
|
+
margin-top: -20px;
|
2991
|
+
font-size: 60px;
|
2992
|
+
font-weight: 100;
|
2993
|
+
line-height: 30px;
|
2994
|
+
color: #ccc;
|
2995
|
+
text-align: center;
|
2996
|
+
background: #999;
|
2997
|
+
background: rgba(0, 0, 0, 0.5);
|
2998
|
+
-webkit-border-radius: 20px;
|
2999
|
+
-moz-border-radius: 20px;
|
3000
|
+
border-radius: 20px;
|
3001
|
+
}
|
3002
|
+
.carousel-control.right {
|
3003
|
+
left: auto;
|
3004
|
+
right: 15px;
|
3005
|
+
}
|
3006
|
+
.carousel-control:hover {
|
3007
|
+
color: #fff;
|
3008
|
+
text-decoration: none;
|
3009
|
+
background: #333;
|
3010
|
+
background: rgba(0, 0, 0, 0.75);
|
3011
|
+
}
|
3012
|
+
.carousel-caption {
|
3013
|
+
position: absolute;
|
3014
|
+
left: 0;
|
3015
|
+
right: 0;
|
3016
|
+
bottom: 0;
|
3017
|
+
padding: 10px 15px 5px;
|
3018
|
+
background: #333;
|
3019
|
+
background: rgba(0, 0, 0, 0.75);
|
3020
|
+
}
|
3021
|
+
.carousel-caption h4, .carousel-caption p {
|
3022
|
+
color: #fff;
|
3023
|
+
}
|
3009
3024
|
.pull-right {
|
3010
3025
|
float: right;
|
3011
3026
|
}
|
@@ -3081,19 +3096,19 @@ a.thumbnail:hover {
|
|
3081
3096
|
.navbar .nav:hover > li > a:hover {
|
3082
3097
|
background-color: #333;
|
3083
3098
|
}
|
3084
|
-
.horizontal
|
3099
|
+
.form-horizontal .control-group > label {
|
3085
3100
|
float: none;
|
3086
3101
|
width: auto;
|
3087
3102
|
padding-top: 0;
|
3088
3103
|
text-align: left;
|
3089
3104
|
}
|
3090
|
-
.horizontal
|
3105
|
+
.form-horizontal .controls {
|
3091
3106
|
margin-left: 0;
|
3092
3107
|
}
|
3093
|
-
.horizontal
|
3108
|
+
.form-horizontal .control-list {
|
3094
3109
|
padding-top: 0;
|
3095
3110
|
}
|
3096
|
-
.horizontal
|
3111
|
+
.form-horizontal .form-actions {
|
3097
3112
|
padding-left: 0;
|
3098
3113
|
}
|
3099
3114
|
.modal {
|