pure-bootstrap-rails 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/pure-bootstrap-rails/version.rb +1 -1
- data/pure-bootstrap-rails.gemspec +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap.js +165 -31
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css.scss +5 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css.scss +272 -126
- metadata +8 -8
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v2.2.
|
2
|
+
* Bootstrap v2.2.2
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -109,6 +109,17 @@ input[type="submit"] {
|
|
109
109
|
-webkit-appearance: button;
|
110
110
|
}
|
111
111
|
|
112
|
+
label,
|
113
|
+
select,
|
114
|
+
button,
|
115
|
+
input[type="button"],
|
116
|
+
input[type="reset"],
|
117
|
+
input[type="submit"],
|
118
|
+
input[type="radio"],
|
119
|
+
input[type="checkbox"] {
|
120
|
+
cursor: pointer;
|
121
|
+
}
|
122
|
+
|
112
123
|
input[type="search"] {
|
113
124
|
-webkit-box-sizing: content-box;
|
114
125
|
-moz-box-sizing: content-box;
|
@@ -126,6 +137,58 @@ textarea {
|
|
126
137
|
vertical-align: top;
|
127
138
|
}
|
128
139
|
|
140
|
+
@media print {
|
141
|
+
* {
|
142
|
+
color: #000 !important;
|
143
|
+
text-shadow: none !important;
|
144
|
+
background: transparent !important;
|
145
|
+
box-shadow: none !important;
|
146
|
+
}
|
147
|
+
a,
|
148
|
+
a:visited {
|
149
|
+
text-decoration: underline;
|
150
|
+
}
|
151
|
+
a[href]:after {
|
152
|
+
content: " (" attr(href) ")";
|
153
|
+
}
|
154
|
+
abbr[title]:after {
|
155
|
+
content: " (" attr(title) ")";
|
156
|
+
}
|
157
|
+
.ir a:after,
|
158
|
+
a[href^="javascript:"]:after,
|
159
|
+
a[href^="#"]:after {
|
160
|
+
content: "";
|
161
|
+
}
|
162
|
+
pre,
|
163
|
+
blockquote {
|
164
|
+
border: 1px solid #999;
|
165
|
+
page-break-inside: avoid;
|
166
|
+
}
|
167
|
+
thead {
|
168
|
+
display: table-header-group;
|
169
|
+
}
|
170
|
+
tr,
|
171
|
+
img {
|
172
|
+
page-break-inside: avoid;
|
173
|
+
}
|
174
|
+
img {
|
175
|
+
max-width: 100% !important;
|
176
|
+
}
|
177
|
+
@page {
|
178
|
+
margin: 0.5cm;
|
179
|
+
}
|
180
|
+
p,
|
181
|
+
h2,
|
182
|
+
h3 {
|
183
|
+
orphans: 3;
|
184
|
+
widows: 3;
|
185
|
+
}
|
186
|
+
h2,
|
187
|
+
h3 {
|
188
|
+
page-break-after: avoid;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
129
192
|
.clearfix {
|
130
193
|
*zoom: 1;
|
131
194
|
}
|
@@ -615,6 +678,10 @@ cite {
|
|
615
678
|
color: #999999;
|
616
679
|
}
|
617
680
|
|
681
|
+
a.muted:hover {
|
682
|
+
color: #808080;
|
683
|
+
}
|
684
|
+
|
618
685
|
.text-warning {
|
619
686
|
color: #c09853;
|
620
687
|
}
|
@@ -747,6 +814,19 @@ ol.unstyled {
|
|
747
814
|
list-style: none;
|
748
815
|
}
|
749
816
|
|
817
|
+
ul.inline,
|
818
|
+
ol.inline {
|
819
|
+
margin-left: 0;
|
820
|
+
list-style: none;
|
821
|
+
}
|
822
|
+
|
823
|
+
ul.inline > li,
|
824
|
+
ol.inline > li {
|
825
|
+
display: inline-block;
|
826
|
+
padding-right: 5px;
|
827
|
+
padding-left: 5px;
|
828
|
+
}
|
829
|
+
|
750
830
|
dl {
|
751
831
|
margin-bottom: 20px;
|
752
832
|
}
|
@@ -883,6 +963,7 @@ pre {
|
|
883
963
|
code {
|
884
964
|
padding: 2px 4px;
|
885
965
|
color: #d14;
|
966
|
+
white-space: nowrap;
|
886
967
|
background-color: #f7f7f9;
|
887
968
|
border: 1px solid #e1e1e8;
|
888
969
|
}
|
@@ -912,6 +993,8 @@ pre.prettyprint {
|
|
912
993
|
pre code {
|
913
994
|
padding: 0;
|
914
995
|
color: inherit;
|
996
|
+
white-space: pre;
|
997
|
+
white-space: pre-wrap;
|
915
998
|
background-color: transparent;
|
916
999
|
border: 0;
|
917
1000
|
}
|
@@ -1069,7 +1152,6 @@ input[type="checkbox"] {
|
|
1069
1152
|
margin-top: 1px \9;
|
1070
1153
|
*margin-top: 0;
|
1071
1154
|
line-height: normal;
|
1072
|
-
cursor: pointer;
|
1073
1155
|
}
|
1074
1156
|
|
1075
1157
|
input[type="file"],
|
@@ -1352,7 +1434,7 @@ input[type="checkbox"][readonly] {
|
|
1352
1434
|
background-color: transparent;
|
1353
1435
|
}
|
1354
1436
|
|
1355
|
-
.control-group.warning
|
1437
|
+
.control-group.warning .control-label,
|
1356
1438
|
.control-group.warning .help-block,
|
1357
1439
|
.control-group.warning .help-inline {
|
1358
1440
|
color: #c09853;
|
@@ -1391,7 +1473,7 @@ input[type="checkbox"][readonly] {
|
|
1391
1473
|
border-color: #c09853;
|
1392
1474
|
}
|
1393
1475
|
|
1394
|
-
.control-group.error
|
1476
|
+
.control-group.error .control-label,
|
1395
1477
|
.control-group.error .help-block,
|
1396
1478
|
.control-group.error .help-inline {
|
1397
1479
|
color: #b94a48;
|
@@ -1430,7 +1512,7 @@ input[type="checkbox"][readonly] {
|
|
1430
1512
|
border-color: #b94a48;
|
1431
1513
|
}
|
1432
1514
|
|
1433
|
-
.control-group.success
|
1515
|
+
.control-group.success .control-label,
|
1434
1516
|
.control-group.success .help-block,
|
1435
1517
|
.control-group.success .help-inline {
|
1436
1518
|
color: #468847;
|
@@ -1469,7 +1551,7 @@ input[type="checkbox"][readonly] {
|
|
1469
1551
|
border-color: #468847;
|
1470
1552
|
}
|
1471
1553
|
|
1472
|
-
.control-group.info
|
1554
|
+
.control-group.info .control-label,
|
1473
1555
|
.control-group.info .help-block,
|
1474
1556
|
.control-group.info .help-inline {
|
1475
1557
|
color: #3a87ad;
|
@@ -1508,16 +1590,16 @@ input[type="checkbox"][readonly] {
|
|
1508
1590
|
border-color: #3a87ad;
|
1509
1591
|
}
|
1510
1592
|
|
1511
|
-
input:focus:
|
1512
|
-
textarea:focus:
|
1513
|
-
select:focus:
|
1593
|
+
input:focus:invalid,
|
1594
|
+
textarea:focus:invalid,
|
1595
|
+
select:focus:invalid {
|
1514
1596
|
color: #b94a48;
|
1515
1597
|
border-color: #ee5f5b;
|
1516
1598
|
}
|
1517
1599
|
|
1518
|
-
input:focus:
|
1519
|
-
textarea:focus:
|
1520
|
-
select:focus:
|
1600
|
+
input:focus:invalid:focus,
|
1601
|
+
textarea:focus:invalid:focus,
|
1602
|
+
select:focus:invalid:focus {
|
1521
1603
|
border-color: #e9322d;
|
1522
1604
|
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
1523
1605
|
-moz-box-shadow: 0 0 6px #f8b9b7;
|
@@ -1623,7 +1705,9 @@ select:focus:required:invalid:focus {
|
|
1623
1705
|
.input-append .add-on,
|
1624
1706
|
.input-prepend .add-on,
|
1625
1707
|
.input-append .btn,
|
1626
|
-
.input-prepend .btn
|
1708
|
+
.input-prepend .btn,
|
1709
|
+
.input-append .btn-group > .dropdown-toggle,
|
1710
|
+
.input-prepend .btn-group > .dropdown-toggle {
|
1627
1711
|
vertical-align: top;
|
1628
1712
|
-webkit-border-radius: 0;
|
1629
1713
|
-moz-border-radius: 0;
|
@@ -1656,9 +1740,9 @@ select:focus:required:invalid:focus {
|
|
1656
1740
|
border-radius: 4px 0 0 4px;
|
1657
1741
|
}
|
1658
1742
|
|
1659
|
-
.input-append input + .btn-group .btn,
|
1660
|
-
.input-append select + .btn-group .btn,
|
1661
|
-
.input-append .uneditable-input + .btn-group .btn {
|
1743
|
+
.input-append input + .btn-group .btn:last-child,
|
1744
|
+
.input-append select + .btn-group .btn:last-child,
|
1745
|
+
.input-append .uneditable-input + .btn-group .btn:last-child {
|
1662
1746
|
-webkit-border-radius: 0 4px 4px 0;
|
1663
1747
|
-moz-border-radius: 0 4px 4px 0;
|
1664
1748
|
border-radius: 0 4px 4px 0;
|
@@ -1671,7 +1755,8 @@ select:focus:required:invalid:focus {
|
|
1671
1755
|
}
|
1672
1756
|
|
1673
1757
|
.input-append .add-on:last-child,
|
1674
|
-
.input-append .btn:last-child
|
1758
|
+
.input-append .btn:last-child,
|
1759
|
+
.input-append .btn-group:last-child > .dropdown-toggle {
|
1675
1760
|
-webkit-border-radius: 0 4px 4px 0;
|
1676
1761
|
-moz-border-radius: 0 4px 4px 0;
|
1677
1762
|
border-radius: 0 4px 4px 0;
|
@@ -1874,7 +1959,10 @@ legend + .control-group {
|
|
1874
1959
|
|
1875
1960
|
.form-horizontal input + .help-block,
|
1876
1961
|
.form-horizontal select + .help-block,
|
1877
|
-
.form-horizontal textarea + .help-block
|
1962
|
+
.form-horizontal textarea + .help-block,
|
1963
|
+
.form-horizontal .uneditable-input + .help-block,
|
1964
|
+
.form-horizontal .input-prepend + .help-block,
|
1965
|
+
.form-horizontal .input-append + .help-block {
|
1878
1966
|
margin-top: 10px;
|
1879
1967
|
}
|
1880
1968
|
|
@@ -1924,6 +2012,10 @@ table {
|
|
1924
2012
|
border-top: 2px solid #dddddd;
|
1925
2013
|
}
|
1926
2014
|
|
2015
|
+
.table .table {
|
2016
|
+
background-color: #ffffff;
|
2017
|
+
}
|
2018
|
+
|
1927
2019
|
.table-condensed th,
|
1928
2020
|
.table-condensed td {
|
1929
2021
|
padding: 4px 5px;
|
@@ -1956,39 +2048,48 @@ table {
|
|
1956
2048
|
border-top: 0;
|
1957
2049
|
}
|
1958
2050
|
|
1959
|
-
.table-bordered thead:first-child tr:first-child th:first-child,
|
1960
|
-
.table-bordered tbody:first-child tr:first-child td:first-child {
|
2051
|
+
.table-bordered thead:first-child tr:first-child > th:first-child,
|
2052
|
+
.table-bordered tbody:first-child tr:first-child > td:first-child {
|
1961
2053
|
-webkit-border-top-left-radius: 4px;
|
1962
2054
|
border-top-left-radius: 4px;
|
1963
2055
|
-moz-border-radius-topleft: 4px;
|
1964
2056
|
}
|
1965
2057
|
|
1966
|
-
.table-bordered thead:first-child tr:first-child th:last-child,
|
1967
|
-
.table-bordered tbody:first-child tr:first-child td:last-child {
|
2058
|
+
.table-bordered thead:first-child tr:first-child > th:last-child,
|
2059
|
+
.table-bordered tbody:first-child tr:first-child > td:last-child {
|
1968
2060
|
-webkit-border-top-right-radius: 4px;
|
1969
2061
|
border-top-right-radius: 4px;
|
1970
2062
|
-moz-border-radius-topright: 4px;
|
1971
2063
|
}
|
1972
2064
|
|
1973
|
-
.table-bordered thead:last-child tr:last-child th:first-child,
|
1974
|
-
.table-bordered tbody:last-child tr:last-child td:first-child,
|
1975
|
-
.table-bordered tfoot:last-child tr:last-child td:first-child {
|
1976
|
-
-webkit-border-radius: 0 0 0 4px;
|
1977
|
-
-moz-border-radius: 0 0 0 4px;
|
1978
|
-
border-radius: 0 0 0 4px;
|
2065
|
+
.table-bordered thead:last-child tr:last-child > th:first-child,
|
2066
|
+
.table-bordered tbody:last-child tr:last-child > td:first-child,
|
2067
|
+
.table-bordered tfoot:last-child tr:last-child > td:first-child {
|
1979
2068
|
-webkit-border-bottom-left-radius: 4px;
|
1980
2069
|
border-bottom-left-radius: 4px;
|
1981
2070
|
-moz-border-radius-bottomleft: 4px;
|
1982
2071
|
}
|
1983
2072
|
|
1984
|
-
.table-bordered thead:last-child tr:last-child th:last-child,
|
1985
|
-
.table-bordered tbody:last-child tr:last-child td:last-child,
|
1986
|
-
.table-bordered tfoot:last-child tr:last-child td:last-child {
|
2073
|
+
.table-bordered thead:last-child tr:last-child > th:last-child,
|
2074
|
+
.table-bordered tbody:last-child tr:last-child > td:last-child,
|
2075
|
+
.table-bordered tfoot:last-child tr:last-child > td:last-child {
|
1987
2076
|
-webkit-border-bottom-right-radius: 4px;
|
1988
2077
|
border-bottom-right-radius: 4px;
|
1989
2078
|
-moz-border-radius-bottomright: 4px;
|
1990
2079
|
}
|
1991
2080
|
|
2081
|
+
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
|
2082
|
+
-webkit-border-bottom-left-radius: 0;
|
2083
|
+
border-bottom-left-radius: 0;
|
2084
|
+
-moz-border-radius-bottomleft: 0;
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
|
2088
|
+
-webkit-border-bottom-right-radius: 0;
|
2089
|
+
border-bottom-right-radius: 0;
|
2090
|
+
-moz-border-radius-bottomright: 0;
|
2091
|
+
}
|
2092
|
+
|
1992
2093
|
.table-bordered caption + thead tr:first-child th:first-child,
|
1993
2094
|
.table-bordered caption + tbody tr:first-child td:first-child,
|
1994
2095
|
.table-bordered colgroup + thead tr:first-child th:first-child,
|
@@ -2007,8 +2108,8 @@ table {
|
|
2007
2108
|
-moz-border-radius-topright: 4px;
|
2008
2109
|
}
|
2009
2110
|
|
2010
|
-
.table-striped tbody tr:nth-child(odd) td,
|
2011
|
-
.table-striped tbody tr:nth-child(odd) th {
|
2111
|
+
.table-striped tbody > tr:nth-child(odd) > td,
|
2112
|
+
.table-striped tbody > tr:nth-child(odd) > th {
|
2012
2113
|
background-color: #f9f9f9;
|
2013
2114
|
}
|
2014
2115
|
|
@@ -2835,7 +2936,7 @@ table th[class*="span"],
|
|
2835
2936
|
|
2836
2937
|
.dropdown-menu .active > a,
|
2837
2938
|
.dropdown-menu .active > a:hover {
|
2838
|
-
color: #
|
2939
|
+
color: #ffffff;
|
2839
2940
|
text-decoration: none;
|
2840
2941
|
background-color: #0081c2;
|
2841
2942
|
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
@@ -2858,6 +2959,7 @@ table th[class*="span"],
|
|
2858
2959
|
cursor: default;
|
2859
2960
|
background-color: transparent;
|
2860
2961
|
background-image: none;
|
2962
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
2861
2963
|
}
|
2862
2964
|
|
2863
2965
|
.open {
|
@@ -2951,6 +3053,7 @@ table th[class*="span"],
|
|
2951
3053
|
}
|
2952
3054
|
|
2953
3055
|
.typeahead {
|
3056
|
+
z-index: 1051;
|
2954
3057
|
margin-top: 2px;
|
2955
3058
|
-webkit-border-radius: 4px;
|
2956
3059
|
-moz-border-radius: 4px;
|
@@ -3051,7 +3154,6 @@ button.close {
|
|
3051
3154
|
*margin-left: .3em;
|
3052
3155
|
font-size: 14px;
|
3053
3156
|
line-height: 20px;
|
3054
|
-
*line-height: 20px;
|
3055
3157
|
color: #333333;
|
3056
3158
|
text-align: center;
|
3057
3159
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
@@ -3103,10 +3205,6 @@ button.close {
|
|
3103
3205
|
.btn:hover {
|
3104
3206
|
color: #333333;
|
3105
3207
|
text-decoration: none;
|
3106
|
-
background-color: #e6e6e6;
|
3107
|
-
*background-color: #d9d9d9;
|
3108
|
-
/* Buttons in IE7 don't get borders, so darken on hover */
|
3109
|
-
|
3110
3208
|
background-position: 0 -15px;
|
3111
3209
|
-webkit-transition: background-position 0.1s linear;
|
3112
3210
|
-moz-transition: background-position 0.1s linear;
|
@@ -3122,8 +3220,6 @@ button.close {
|
|
3122
3220
|
|
3123
3221
|
.btn.active,
|
3124
3222
|
.btn:active {
|
3125
|
-
background-color: #e6e6e6;
|
3126
|
-
background-color: #d9d9d9 \9;
|
3127
3223
|
background-image: none;
|
3128
3224
|
outline: 0;
|
3129
3225
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
@@ -3134,7 +3230,6 @@ button.close {
|
|
3134
3230
|
.btn.disabled,
|
3135
3231
|
.btn[disabled] {
|
3136
3232
|
cursor: default;
|
3137
|
-
background-color: #e6e6e6;
|
3138
3233
|
background-image: none;
|
3139
3234
|
opacity: 0.65;
|
3140
3235
|
filter: alpha(opacity=65);
|
@@ -3153,7 +3248,7 @@ button.close {
|
|
3153
3248
|
|
3154
3249
|
.btn-large [class^="icon-"],
|
3155
3250
|
.btn-large [class*=" icon-"] {
|
3156
|
-
margin-top:
|
3251
|
+
margin-top: 4px;
|
3157
3252
|
}
|
3158
3253
|
|
3159
3254
|
.btn-small {
|
@@ -3169,8 +3264,13 @@ button.close {
|
|
3169
3264
|
margin-top: 0;
|
3170
3265
|
}
|
3171
3266
|
|
3267
|
+
.btn-mini [class^="icon-"],
|
3268
|
+
.btn-mini [class*=" icon-"] {
|
3269
|
+
margin-top: -1px;
|
3270
|
+
}
|
3271
|
+
|
3172
3272
|
.btn-mini {
|
3173
|
-
padding:
|
3273
|
+
padding: 0 6px;
|
3174
3274
|
font-size: 10.5px;
|
3175
3275
|
-webkit-border-radius: 3px;
|
3176
3276
|
-moz-border-radius: 3px;
|
@@ -3488,9 +3588,9 @@ input[type="submit"].btn.btn-mini {
|
|
3488
3588
|
font-size: 0;
|
3489
3589
|
}
|
3490
3590
|
|
3491
|
-
.btn-toolbar .btn + .btn,
|
3492
|
-
.btn-toolbar .btn-group + .btn,
|
3493
|
-
.btn-toolbar .btn + .btn-group {
|
3591
|
+
.btn-toolbar > .btn + .btn,
|
3592
|
+
.btn-toolbar > .btn-group + .btn,
|
3593
|
+
.btn-toolbar > .btn + .btn-group {
|
3494
3594
|
margin-left: 5px;
|
3495
3595
|
}
|
3496
3596
|
|
@@ -3506,20 +3606,21 @@ input[type="submit"].btn.btn-mini {
|
|
3506
3606
|
}
|
3507
3607
|
|
3508
3608
|
.btn-group > .btn,
|
3509
|
-
.btn-group > .dropdown-menu
|
3609
|
+
.btn-group > .dropdown-menu,
|
3610
|
+
.btn-group > .popover {
|
3510
3611
|
font-size: 14px;
|
3511
3612
|
}
|
3512
3613
|
|
3513
3614
|
.btn-group > .btn-mini {
|
3514
|
-
font-size:
|
3615
|
+
font-size: 10.5px;
|
3515
3616
|
}
|
3516
3617
|
|
3517
3618
|
.btn-group > .btn-small {
|
3518
|
-
font-size:
|
3619
|
+
font-size: 11.9px;
|
3519
3620
|
}
|
3520
3621
|
|
3521
3622
|
.btn-group > .btn-large {
|
3522
|
-
font-size:
|
3623
|
+
font-size: 17.5px;
|
3523
3624
|
}
|
3524
3625
|
|
3525
3626
|
.btn-group > .btn:first-child {
|
@@ -3677,39 +3778,39 @@ input[type="submit"].btn.btn-mini {
|
|
3677
3778
|
*zoom: 1;
|
3678
3779
|
}
|
3679
3780
|
|
3680
|
-
.btn-group-vertical .btn {
|
3781
|
+
.btn-group-vertical > .btn {
|
3681
3782
|
display: block;
|
3682
3783
|
float: none;
|
3683
|
-
width: 100%;
|
3784
|
+
max-width: 100%;
|
3684
3785
|
-webkit-border-radius: 0;
|
3685
3786
|
-moz-border-radius: 0;
|
3686
3787
|
border-radius: 0;
|
3687
3788
|
}
|
3688
3789
|
|
3689
|
-
.btn-group-vertical .btn + .btn {
|
3790
|
+
.btn-group-vertical > .btn + .btn {
|
3690
3791
|
margin-top: -1px;
|
3691
3792
|
margin-left: 0;
|
3692
3793
|
}
|
3693
3794
|
|
3694
|
-
.btn-group-vertical .btn:first-child {
|
3795
|
+
.btn-group-vertical > .btn:first-child {
|
3695
3796
|
-webkit-border-radius: 4px 4px 0 0;
|
3696
3797
|
-moz-border-radius: 4px 4px 0 0;
|
3697
3798
|
border-radius: 4px 4px 0 0;
|
3698
3799
|
}
|
3699
3800
|
|
3700
|
-
.btn-group-vertical .btn:last-child {
|
3801
|
+
.btn-group-vertical > .btn:last-child {
|
3701
3802
|
-webkit-border-radius: 0 0 4px 4px;
|
3702
3803
|
-moz-border-radius: 0 0 4px 4px;
|
3703
3804
|
border-radius: 0 0 4px 4px;
|
3704
3805
|
}
|
3705
3806
|
|
3706
|
-
.btn-group-vertical .btn-large:first-child {
|
3807
|
+
.btn-group-vertical > .btn-large:first-child {
|
3707
3808
|
-webkit-border-radius: 6px 6px 0 0;
|
3708
3809
|
-moz-border-radius: 6px 6px 0 0;
|
3709
3810
|
border-radius: 6px 6px 0 0;
|
3710
3811
|
}
|
3711
3812
|
|
3712
|
-
.btn-group-vertical .btn-large:last-child {
|
3813
|
+
.btn-group-vertical > .btn-large:last-child {
|
3713
3814
|
-webkit-border-radius: 0 0 6px 6px;
|
3714
3815
|
-moz-border-radius: 0 0 6px 6px;
|
3715
3816
|
border-radius: 0 0 6px 6px;
|
@@ -3718,7 +3819,6 @@ input[type="submit"].btn.btn-mini {
|
|
3718
3819
|
.alert {
|
3719
3820
|
padding: 8px 35px 8px 14px;
|
3720
3821
|
margin-bottom: 20px;
|
3721
|
-
color: #c09853;
|
3722
3822
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
3723
3823
|
background-color: #fcf8e3;
|
3724
3824
|
border: 1px solid #fbeed5;
|
@@ -3727,6 +3827,11 @@ input[type="submit"].btn.btn-mini {
|
|
3727
3827
|
border-radius: 4px;
|
3728
3828
|
}
|
3729
3829
|
|
3830
|
+
.alert,
|
3831
|
+
.alert h4 {
|
3832
|
+
color: #c09853;
|
3833
|
+
}
|
3834
|
+
|
3730
3835
|
.alert h4 {
|
3731
3836
|
margin: 0;
|
3732
3837
|
}
|
@@ -3744,6 +3849,10 @@ input[type="submit"].btn.btn-mini {
|
|
3744
3849
|
border-color: #d6e9c6;
|
3745
3850
|
}
|
3746
3851
|
|
3852
|
+
.alert-success h4 {
|
3853
|
+
color: #468847;
|
3854
|
+
}
|
3855
|
+
|
3747
3856
|
.alert-danger,
|
3748
3857
|
.alert-error {
|
3749
3858
|
color: #b94a48;
|
@@ -3751,12 +3860,21 @@ input[type="submit"].btn.btn-mini {
|
|
3751
3860
|
border-color: #eed3d7;
|
3752
3861
|
}
|
3753
3862
|
|
3863
|
+
.alert-danger h4,
|
3864
|
+
.alert-error h4 {
|
3865
|
+
color: #b94a48;
|
3866
|
+
}
|
3867
|
+
|
3754
3868
|
.alert-info {
|
3755
3869
|
color: #3a87ad;
|
3756
3870
|
background-color: #d9edf7;
|
3757
3871
|
border-color: #bce8f1;
|
3758
3872
|
}
|
3759
3873
|
|
3874
|
+
.alert-info h4 {
|
3875
|
+
color: #3a87ad;
|
3876
|
+
}
|
3877
|
+
|
3760
3878
|
.alert-block {
|
3761
3879
|
padding-top: 14px;
|
3762
3880
|
padding-bottom: 14px;
|
@@ -3786,6 +3904,10 @@ input[type="submit"].btn.btn-mini {
|
|
3786
3904
|
background-color: #eeeeee;
|
3787
3905
|
}
|
3788
3906
|
|
3907
|
+
.nav > li > a > img {
|
3908
|
+
max-width: none;
|
3909
|
+
}
|
3910
|
+
|
3789
3911
|
.nav > .pull-right {
|
3790
3912
|
float: right;
|
3791
3913
|
}
|
@@ -4170,7 +4292,6 @@ input[type="submit"].btn.btn-mini {
|
|
4170
4292
|
*z-index: 2;
|
4171
4293
|
margin-bottom: 20px;
|
4172
4294
|
overflow: visible;
|
4173
|
-
color: #777777;
|
4174
4295
|
}
|
4175
4296
|
|
4176
4297
|
.navbar-inner {
|
@@ -4233,6 +4354,7 @@ input[type="submit"].btn.btn-mini {
|
|
4233
4354
|
.navbar-text {
|
4234
4355
|
margin-bottom: 0;
|
4235
4356
|
line-height: 40px;
|
4357
|
+
color: #777777;
|
4236
4358
|
}
|
4237
4359
|
|
4238
4360
|
.navbar-link {
|
@@ -4299,7 +4421,7 @@ input[type="submit"].btn.btn-mini {
|
|
4299
4421
|
|
4300
4422
|
.navbar-form .input-append,
|
4301
4423
|
.navbar-form .input-prepend {
|
4302
|
-
margin-top:
|
4424
|
+
margin-top: 5px;
|
4303
4425
|
white-space: nowrap;
|
4304
4426
|
}
|
4305
4427
|
|
@@ -4534,6 +4656,11 @@ input[type="submit"].btn.btn-mini {
|
|
4534
4656
|
border-bottom: 0;
|
4535
4657
|
}
|
4536
4658
|
|
4659
|
+
.navbar .nav li.dropdown > a:hover .caret {
|
4660
|
+
border-top-color: #555555;
|
4661
|
+
border-bottom-color: #555555;
|
4662
|
+
}
|
4663
|
+
|
4537
4664
|
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
4538
4665
|
.navbar .nav li.dropdown.active > .dropdown-toggle,
|
4539
4666
|
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
@@ -4582,10 +4709,6 @@ input[type="submit"].btn.btn-mini {
|
|
4582
4709
|
border-radius: 6px 0 6px 6px;
|
4583
4710
|
}
|
4584
4711
|
|
4585
|
-
.navbar-inverse {
|
4586
|
-
color: #999999;
|
4587
|
-
}
|
4588
|
-
|
4589
4712
|
.navbar-inverse .navbar-inner {
|
4590
4713
|
background-color: #1b1b1b;
|
4591
4714
|
background-image: -moz-linear-gradient(top, #222222, #111111);
|
@@ -4609,6 +4732,14 @@ input[type="submit"].btn.btn-mini {
|
|
4609
4732
|
color: #ffffff;
|
4610
4733
|
}
|
4611
4734
|
|
4735
|
+
.navbar-inverse .brand {
|
4736
|
+
color: #999999;
|
4737
|
+
}
|
4738
|
+
|
4739
|
+
.navbar-inverse .navbar-text {
|
4740
|
+
color: #999999;
|
4741
|
+
}
|
4742
|
+
|
4612
4743
|
.navbar-inverse .nav > li > a:focus,
|
4613
4744
|
.navbar-inverse .nav > li > a:hover {
|
4614
4745
|
color: #ffffff;
|
@@ -4642,6 +4773,11 @@ input[type="submit"].btn.btn-mini {
|
|
4642
4773
|
background-color: #111111;
|
4643
4774
|
}
|
4644
4775
|
|
4776
|
+
.navbar-inverse .nav li.dropdown > a:hover .caret {
|
4777
|
+
border-top-color: #ffffff;
|
4778
|
+
border-bottom-color: #ffffff;
|
4779
|
+
}
|
4780
|
+
|
4645
4781
|
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
|
4646
4782
|
border-top-color: #999999;
|
4647
4783
|
border-bottom-color: #999999;
|
@@ -4734,19 +4870,19 @@ input[type="submit"].btn.btn-mini {
|
|
4734
4870
|
border-radius: 4px;
|
4735
4871
|
}
|
4736
4872
|
|
4737
|
-
.breadcrumb li {
|
4873
|
+
.breadcrumb > li {
|
4738
4874
|
display: inline-block;
|
4739
4875
|
*display: inline;
|
4740
4876
|
text-shadow: 0 1px 0 #ffffff;
|
4741
4877
|
*zoom: 1;
|
4742
4878
|
}
|
4743
4879
|
|
4744
|
-
.breadcrumb .divider {
|
4880
|
+
.breadcrumb > li > .divider {
|
4745
4881
|
padding: 0 5px;
|
4746
4882
|
color: #ccc;
|
4747
4883
|
}
|
4748
4884
|
|
4749
|
-
.breadcrumb .active {
|
4885
|
+
.breadcrumb > .active {
|
4750
4886
|
color: #999999;
|
4751
4887
|
}
|
4752
4888
|
|
@@ -4890,7 +5026,7 @@ input[type="submit"].btn.btn-mini {
|
|
4890
5026
|
|
4891
5027
|
.pagination-mini ul > li > a,
|
4892
5028
|
.pagination-mini ul > li > span {
|
4893
|
-
padding:
|
5029
|
+
padding: 0 6px;
|
4894
5030
|
font-size: 10.5px;
|
4895
5031
|
}
|
4896
5032
|
|
@@ -4972,11 +5108,11 @@ input[type="submit"].btn.btn-mini {
|
|
4972
5108
|
|
4973
5109
|
.modal {
|
4974
5110
|
position: fixed;
|
4975
|
-
top:
|
5111
|
+
top: 10%;
|
4976
5112
|
left: 50%;
|
4977
5113
|
z-index: 1050;
|
4978
5114
|
width: 560px;
|
4979
|
-
margin: -
|
5115
|
+
margin-left: -280px;
|
4980
5116
|
background-color: #ffffff;
|
4981
5117
|
border: 1px solid #999;
|
4982
5118
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
@@ -5002,7 +5138,7 @@ input[type="submit"].btn.btn-mini {
|
|
5002
5138
|
}
|
5003
5139
|
|
5004
5140
|
.modal.fade.in {
|
5005
|
-
top:
|
5141
|
+
top: 10%;
|
5006
5142
|
}
|
5007
5143
|
|
5008
5144
|
.modal-header {
|
@@ -5020,6 +5156,7 @@ input[type="submit"].btn.btn-mini {
|
|
5020
5156
|
}
|
5021
5157
|
|
5022
5158
|
.modal-body {
|
5159
|
+
position: relative;
|
5023
5160
|
max-height: 400px;
|
5024
5161
|
padding: 15px;
|
5025
5162
|
overflow-y: auto;
|
@@ -5160,6 +5297,8 @@ input[type="submit"].btn.btn-mini {
|
|
5160
5297
|
display: none;
|
5161
5298
|
width: 236px;
|
5162
5299
|
padding: 1px;
|
5300
|
+
text-align: left;
|
5301
|
+
white-space: normal;
|
5163
5302
|
background-color: #ffffff;
|
5164
5303
|
border: 1px solid #ccc;
|
5165
5304
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
@@ -5207,85 +5346,87 @@ input[type="submit"].btn.btn-mini {
|
|
5207
5346
|
padding: 9px 14px;
|
5208
5347
|
}
|
5209
5348
|
|
5210
|
-
.popover-content p,
|
5211
|
-
.popover-content ul,
|
5212
|
-
.popover-content ol {
|
5213
|
-
margin-bottom: 0;
|
5214
|
-
}
|
5215
|
-
|
5216
5349
|
.popover .arrow,
|
5217
5350
|
.popover .arrow:after {
|
5218
5351
|
position: absolute;
|
5219
|
-
display:
|
5352
|
+
display: block;
|
5220
5353
|
width: 0;
|
5221
5354
|
height: 0;
|
5222
5355
|
border-color: transparent;
|
5223
5356
|
border-style: solid;
|
5224
5357
|
}
|
5225
5358
|
|
5359
|
+
.popover .arrow {
|
5360
|
+
border-width: 11px;
|
5361
|
+
}
|
5362
|
+
|
5226
5363
|
.popover .arrow:after {
|
5227
|
-
|
5364
|
+
border-width: 10px;
|
5228
5365
|
content: "";
|
5229
5366
|
}
|
5230
5367
|
|
5231
5368
|
.popover.top .arrow {
|
5232
|
-
bottom: -
|
5369
|
+
bottom: -11px;
|
5233
5370
|
left: 50%;
|
5234
|
-
margin-left: -
|
5235
|
-
border-top-color: #
|
5236
|
-
border-
|
5371
|
+
margin-left: -11px;
|
5372
|
+
border-top-color: #999;
|
5373
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
5374
|
+
border-bottom-width: 0;
|
5237
5375
|
}
|
5238
5376
|
|
5239
5377
|
.popover.top .arrow:after {
|
5240
|
-
bottom:
|
5241
|
-
left: -
|
5242
|
-
border-top-color:
|
5243
|
-
border-width:
|
5378
|
+
bottom: 1px;
|
5379
|
+
margin-left: -10px;
|
5380
|
+
border-top-color: #ffffff;
|
5381
|
+
border-bottom-width: 0;
|
5244
5382
|
}
|
5245
5383
|
|
5246
5384
|
.popover.right .arrow {
|
5247
5385
|
top: 50%;
|
5248
|
-
left: -
|
5249
|
-
margin-top: -
|
5250
|
-
border-right-color: #
|
5251
|
-
border-
|
5386
|
+
left: -11px;
|
5387
|
+
margin-top: -11px;
|
5388
|
+
border-right-color: #999;
|
5389
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
5390
|
+
border-left-width: 0;
|
5252
5391
|
}
|
5253
5392
|
|
5254
5393
|
.popover.right .arrow:after {
|
5255
|
-
bottom: -
|
5256
|
-
left:
|
5257
|
-
border-right-color:
|
5258
|
-
border-width:
|
5394
|
+
bottom: -10px;
|
5395
|
+
left: 1px;
|
5396
|
+
border-right-color: #ffffff;
|
5397
|
+
border-left-width: 0;
|
5259
5398
|
}
|
5260
5399
|
|
5261
5400
|
.popover.bottom .arrow {
|
5262
|
-
top: -
|
5401
|
+
top: -11px;
|
5263
5402
|
left: 50%;
|
5264
|
-
margin-left: -
|
5265
|
-
border-bottom-color: #
|
5266
|
-
border-
|
5403
|
+
margin-left: -11px;
|
5404
|
+
border-bottom-color: #999;
|
5405
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
5406
|
+
border-top-width: 0;
|
5267
5407
|
}
|
5268
5408
|
|
5269
5409
|
.popover.bottom .arrow:after {
|
5270
|
-
top:
|
5271
|
-
left: -
|
5272
|
-
border-bottom-color:
|
5273
|
-
border-width: 0
|
5410
|
+
top: 1px;
|
5411
|
+
margin-left: -10px;
|
5412
|
+
border-bottom-color: #ffffff;
|
5413
|
+
border-top-width: 0;
|
5274
5414
|
}
|
5275
5415
|
|
5276
5416
|
.popover.left .arrow {
|
5277
5417
|
top: 50%;
|
5278
|
-
right: -
|
5279
|
-
margin-top: -
|
5280
|
-
border-left-color: #
|
5281
|
-
border-
|
5418
|
+
right: -11px;
|
5419
|
+
margin-top: -11px;
|
5420
|
+
border-left-color: #999;
|
5421
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
5422
|
+
border-right-width: 0;
|
5282
5423
|
}
|
5283
5424
|
|
5284
5425
|
.popover.left .arrow:after {
|
5285
|
-
right:
|
5286
|
-
bottom: -
|
5287
|
-
border-left-color:
|
5288
|
-
border-width:
|
5426
|
+
right: 1px;
|
5427
|
+
bottom: -10px;
|
5428
|
+
border-left-color: #ffffff;
|
5429
|
+
border-right-width: 0;
|
5289
5430
|
}
|
5290
5431
|
|
5291
5432
|
.thumbnails {
|
@@ -5416,6 +5557,11 @@ a.thumbnail:hover {
|
|
5416
5557
|
border-radius: 9px;
|
5417
5558
|
}
|
5418
5559
|
|
5560
|
+
.label:empty,
|
5561
|
+
.badge:empty {
|
5562
|
+
display: none;
|
5563
|
+
}
|
5564
|
+
|
5419
5565
|
a.label:hover,
|
5420
5566
|
a.badge:hover {
|
5421
5567
|
color: #ffffff;
|
@@ -5734,7 +5880,7 @@ a.badge:hover {
|
|
5734
5880
|
overflow: hidden;
|
5735
5881
|
}
|
5736
5882
|
|
5737
|
-
.carousel .item {
|
5883
|
+
.carousel-inner > .item {
|
5738
5884
|
position: relative;
|
5739
5885
|
display: none;
|
5740
5886
|
-webkit-transition: 0.6s ease-in-out left;
|
@@ -5743,46 +5889,46 @@ a.badge:hover {
|
|
5743
5889
|
transition: 0.6s ease-in-out left;
|
5744
5890
|
}
|
5745
5891
|
|
5746
|
-
.carousel .item > img {
|
5892
|
+
.carousel-inner > .item > img {
|
5747
5893
|
display: block;
|
5748
5894
|
line-height: 1;
|
5749
5895
|
}
|
5750
5896
|
|
5751
|
-
.carousel .active,
|
5752
|
-
.carousel .next,
|
5753
|
-
.carousel .prev {
|
5897
|
+
.carousel-inner > .active,
|
5898
|
+
.carousel-inner > .next,
|
5899
|
+
.carousel-inner > .prev {
|
5754
5900
|
display: block;
|
5755
5901
|
}
|
5756
5902
|
|
5757
|
-
.carousel .active {
|
5903
|
+
.carousel-inner > .active {
|
5758
5904
|
left: 0;
|
5759
5905
|
}
|
5760
5906
|
|
5761
|
-
.carousel .next,
|
5762
|
-
.carousel .prev {
|
5907
|
+
.carousel-inner > .next,
|
5908
|
+
.carousel-inner > .prev {
|
5763
5909
|
position: absolute;
|
5764
5910
|
top: 0;
|
5765
5911
|
width: 100%;
|
5766
5912
|
}
|
5767
5913
|
|
5768
|
-
.carousel .next {
|
5914
|
+
.carousel-inner > .next {
|
5769
5915
|
left: 100%;
|
5770
5916
|
}
|
5771
5917
|
|
5772
|
-
.carousel .prev {
|
5918
|
+
.carousel-inner > .prev {
|
5773
5919
|
left: -100%;
|
5774
5920
|
}
|
5775
5921
|
|
5776
|
-
.carousel .next.left,
|
5777
|
-
.carousel .prev.right {
|
5922
|
+
.carousel-inner > .next.left,
|
5923
|
+
.carousel-inner > .prev.right {
|
5778
5924
|
left: 0;
|
5779
5925
|
}
|
5780
5926
|
|
5781
|
-
.carousel .active.left {
|
5927
|
+
.carousel-inner > .active.left {
|
5782
5928
|
left: -100%;
|
5783
5929
|
}
|
5784
5930
|
|
5785
|
-
.carousel .active.right {
|
5931
|
+
.carousel-inner > .active.right {
|
5786
5932
|
left: 100%;
|
5787
5933
|
}
|
5788
5934
|
|