blazer 2.4.3 → 2.4.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of blazer might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/README.md +41 -1
- data/app/assets/javascripts/blazer/bootstrap.js +300 -97
- data/app/assets/javascripts/blazer/vue.js +10754 -9687
- data/app/assets/stylesheets/blazer/bootstrap.css.erb +529 -451
- data/app/controllers/blazer/queries_controller.rb +2 -1
- data/app/models/blazer/query.rb +1 -1
- data/app/views/blazer/queries/run.html.erb +4 -2
- data/lib/blazer/adapters/athena_adapter.rb +35 -19
- data/lib/blazer/adapters/bigquery_adapter.rb +1 -1
- data/{app/mailers → lib}/blazer/check_mailer.rb +0 -0
- data/{app/mailers → lib}/blazer/slack_notifier.rb +0 -0
- data/lib/blazer/version.rb +1 -1
- data/lib/blazer.rb +5 -0
- data/licenses/LICENSE-bootstrap.txt +1 -1
- metadata +4 -4
@@ -1,13 +1,13 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v3.4.1 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2019 Twitter, Inc.
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
5
|
*/
|
6
6
|
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
7
7
|
html {
|
8
8
|
font-family: sans-serif;
|
9
|
+
-ms-text-size-adjust: 100%;
|
9
10
|
-webkit-text-size-adjust: 100%;
|
10
|
-
-ms-text-size-adjust: 100%;
|
11
11
|
}
|
12
12
|
body {
|
13
13
|
margin: 0;
|
@@ -50,7 +50,11 @@ a:hover {
|
|
50
50
|
outline: 0;
|
51
51
|
}
|
52
52
|
abbr[title] {
|
53
|
-
border-bottom:
|
53
|
+
border-bottom: none;
|
54
|
+
text-decoration: underline;
|
55
|
+
-webkit-text-decoration: underline dotted;
|
56
|
+
-moz-text-decoration: underline dotted;
|
57
|
+
text-decoration: underline dotted;
|
54
58
|
}
|
55
59
|
b,
|
56
60
|
strong {
|
@@ -60,28 +64,28 @@ dfn {
|
|
60
64
|
font-style: italic;
|
61
65
|
}
|
62
66
|
h1 {
|
63
|
-
margin: .67em 0;
|
64
67
|
font-size: 2em;
|
68
|
+
margin: 0.67em 0;
|
65
69
|
}
|
66
70
|
mark {
|
67
|
-
color: #000;
|
68
71
|
background: #ff0;
|
72
|
+
color: #000;
|
69
73
|
}
|
70
74
|
small {
|
71
75
|
font-size: 80%;
|
72
76
|
}
|
73
77
|
sub,
|
74
78
|
sup {
|
75
|
-
position: relative;
|
76
79
|
font-size: 75%;
|
77
80
|
line-height: 0;
|
81
|
+
position: relative;
|
78
82
|
vertical-align: baseline;
|
79
83
|
}
|
80
84
|
sup {
|
81
|
-
top:
|
85
|
+
top: -0.5em;
|
82
86
|
}
|
83
87
|
sub {
|
84
|
-
bottom:
|
88
|
+
bottom: -0.25em;
|
85
89
|
}
|
86
90
|
img {
|
87
91
|
border: 0;
|
@@ -93,10 +97,10 @@ figure {
|
|
93
97
|
margin: 1em 40px;
|
94
98
|
}
|
95
99
|
hr {
|
96
|
-
height: 0;
|
97
100
|
-webkit-box-sizing: content-box;
|
98
|
-
|
99
|
-
|
101
|
+
-moz-box-sizing: content-box;
|
102
|
+
box-sizing: content-box;
|
103
|
+
height: 0;
|
100
104
|
}
|
101
105
|
pre {
|
102
106
|
overflow: auto;
|
@@ -113,9 +117,9 @@ input,
|
|
113
117
|
optgroup,
|
114
118
|
select,
|
115
119
|
textarea {
|
116
|
-
margin: 0;
|
117
|
-
font: inherit;
|
118
120
|
color: inherit;
|
121
|
+
font: inherit;
|
122
|
+
margin: 0;
|
119
123
|
}
|
120
124
|
button {
|
121
125
|
overflow: visible;
|
@@ -137,8 +141,8 @@ html input[disabled] {
|
|
137
141
|
}
|
138
142
|
button::-moz-focus-inner,
|
139
143
|
input::-moz-focus-inner {
|
140
|
-
padding: 0;
|
141
144
|
border: 0;
|
145
|
+
padding: 0;
|
142
146
|
}
|
143
147
|
input {
|
144
148
|
line-height: normal;
|
@@ -146,8 +150,8 @@ input {
|
|
146
150
|
input[type="checkbox"],
|
147
151
|
input[type="radio"] {
|
148
152
|
-webkit-box-sizing: border-box;
|
149
|
-
|
150
|
-
|
153
|
+
-moz-box-sizing: border-box;
|
154
|
+
box-sizing: border-box;
|
151
155
|
padding: 0;
|
152
156
|
}
|
153
157
|
input[type="number"]::-webkit-inner-spin-button,
|
@@ -155,23 +159,23 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
155
159
|
height: auto;
|
156
160
|
}
|
157
161
|
input[type="search"] {
|
158
|
-
-webkit-box-sizing: content-box;
|
159
|
-
-moz-box-sizing: content-box;
|
160
|
-
box-sizing: content-box;
|
161
162
|
-webkit-appearance: textfield;
|
163
|
+
-webkit-box-sizing: content-box;
|
164
|
+
-moz-box-sizing: content-box;
|
165
|
+
box-sizing: content-box;
|
162
166
|
}
|
163
167
|
input[type="search"]::-webkit-search-cancel-button,
|
164
168
|
input[type="search"]::-webkit-search-decoration {
|
165
169
|
-webkit-appearance: none;
|
166
170
|
}
|
167
171
|
fieldset {
|
168
|
-
padding: .35em .625em .75em;
|
169
|
-
margin: 0 2px;
|
170
172
|
border: 1px solid #c0c0c0;
|
173
|
+
margin: 0 2px;
|
174
|
+
padding: 0.35em 0.625em 0.75em;
|
171
175
|
}
|
172
176
|
legend {
|
173
|
-
padding: 0;
|
174
177
|
border: 0;
|
178
|
+
padding: 0;
|
175
179
|
}
|
176
180
|
textarea {
|
177
181
|
overflow: auto;
|
@@ -180,8 +184,8 @@ optgroup {
|
|
180
184
|
font-weight: bold;
|
181
185
|
}
|
182
186
|
table {
|
183
|
-
border-spacing: 0;
|
184
187
|
border-collapse: collapse;
|
188
|
+
border-spacing: 0;
|
185
189
|
}
|
186
190
|
td,
|
187
191
|
th {
|
@@ -196,7 +200,7 @@ th {
|
|
196
200
|
text-shadow: none !important;
|
197
201
|
background: transparent !important;
|
198
202
|
-webkit-box-shadow: none !important;
|
199
|
-
|
203
|
+
box-shadow: none !important;
|
200
204
|
}
|
201
205
|
a,
|
202
206
|
a:visited {
|
@@ -215,7 +219,6 @@ th {
|
|
215
219
|
pre,
|
216
220
|
blockquote {
|
217
221
|
border: 1px solid #999;
|
218
|
-
|
219
222
|
page-break-inside: avoid;
|
220
223
|
}
|
221
224
|
thead {
|
@@ -261,8 +264,7 @@ th {
|
|
261
264
|
}
|
262
265
|
}
|
263
266
|
@font-face {
|
264
|
-
font-family:
|
265
|
-
|
267
|
+
font-family: "Glyphicons Halflings";
|
266
268
|
src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot") %>');
|
267
269
|
src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot?#iefix") %>') format('embedded-opentype'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff2") %>') format('woff2'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff") %>') format('woff'), url('<%= font_path("blazer/glyphicons-halflings-regular.ttf") %>') format('truetype'), url('<%= font_path("blazer/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") %>') format('svg');
|
268
270
|
}
|
@@ -270,11 +272,10 @@ th {
|
|
270
272
|
position: relative;
|
271
273
|
top: 1px;
|
272
274
|
display: inline-block;
|
273
|
-
font-family:
|
275
|
+
font-family: "Glyphicons Halflings";
|
274
276
|
font-style: normal;
|
275
|
-
font-weight:
|
277
|
+
font-weight: 400;
|
276
278
|
line-height: 1;
|
277
|
-
|
278
279
|
-webkit-font-smoothing: antialiased;
|
279
280
|
-moz-osx-font-smoothing: grayscale;
|
280
281
|
}
|
@@ -1067,25 +1068,24 @@ th {
|
|
1067
1068
|
}
|
1068
1069
|
* {
|
1069
1070
|
-webkit-box-sizing: border-box;
|
1070
|
-
|
1071
|
-
|
1071
|
+
-moz-box-sizing: border-box;
|
1072
|
+
box-sizing: border-box;
|
1072
1073
|
}
|
1073
1074
|
*:before,
|
1074
1075
|
*:after {
|
1075
1076
|
-webkit-box-sizing: border-box;
|
1076
|
-
|
1077
|
-
|
1077
|
+
-moz-box-sizing: border-box;
|
1078
|
+
box-sizing: border-box;
|
1078
1079
|
}
|
1079
1080
|
html {
|
1080
1081
|
font-size: 10px;
|
1081
|
-
|
1082
1082
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
1083
1083
|
}
|
1084
1084
|
body {
|
1085
1085
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1086
1086
|
font-size: 14px;
|
1087
1087
|
line-height: 1.42857143;
|
1088
|
-
color: #
|
1088
|
+
color: #333333;
|
1089
1089
|
background-color: #fff;
|
1090
1090
|
}
|
1091
1091
|
input,
|
@@ -1128,17 +1128,17 @@ img {
|
|
1128
1128
|
border-radius: 6px;
|
1129
1129
|
}
|
1130
1130
|
.img-thumbnail {
|
1131
|
-
display: inline-block;
|
1132
|
-
max-width: 100%;
|
1133
|
-
height: auto;
|
1134
1131
|
padding: 4px;
|
1135
1132
|
line-height: 1.42857143;
|
1136
1133
|
background-color: #fff;
|
1137
1134
|
border: 1px solid #ddd;
|
1138
1135
|
border-radius: 4px;
|
1139
|
-
-webkit-transition: all .2s ease-in-out;
|
1140
|
-
|
1141
|
-
|
1136
|
+
-webkit-transition: all 0.2s ease-in-out;
|
1137
|
+
-o-transition: all 0.2s ease-in-out;
|
1138
|
+
transition: all 0.2s ease-in-out;
|
1139
|
+
display: inline-block;
|
1140
|
+
max-width: 100%;
|
1141
|
+
height: auto;
|
1142
1142
|
}
|
1143
1143
|
.img-circle {
|
1144
1144
|
border-radius: 50%;
|
@@ -1147,7 +1147,7 @@ hr {
|
|
1147
1147
|
margin-top: 20px;
|
1148
1148
|
margin-bottom: 20px;
|
1149
1149
|
border: 0;
|
1150
|
-
border-top: 1px solid #
|
1150
|
+
border-top: 1px solid #eeeeee;
|
1151
1151
|
}
|
1152
1152
|
.sr-only {
|
1153
1153
|
position: absolute;
|
@@ -1212,9 +1212,9 @@ h6 .small,
|
|
1212
1212
|
.h4 .small,
|
1213
1213
|
.h5 .small,
|
1214
1214
|
.h6 .small {
|
1215
|
-
font-weight:
|
1215
|
+
font-weight: 400;
|
1216
1216
|
line-height: 1;
|
1217
|
-
color: #
|
1217
|
+
color: #777777;
|
1218
1218
|
}
|
1219
1219
|
h1,
|
1220
1220
|
.h1,
|
@@ -1306,7 +1306,7 @@ small,
|
|
1306
1306
|
}
|
1307
1307
|
mark,
|
1308
1308
|
.mark {
|
1309
|
-
padding: .2em;
|
1309
|
+
padding: 0.2em;
|
1310
1310
|
background-color: #fcf8e3;
|
1311
1311
|
}
|
1312
1312
|
.text-left {
|
@@ -1334,7 +1334,7 @@ mark,
|
|
1334
1334
|
text-transform: capitalize;
|
1335
1335
|
}
|
1336
1336
|
.text-muted {
|
1337
|
-
color: #
|
1337
|
+
color: #777777;
|
1338
1338
|
}
|
1339
1339
|
.text-primary {
|
1340
1340
|
color: #337ab7;
|
@@ -1410,7 +1410,7 @@ a.bg-danger:focus {
|
|
1410
1410
|
.page-header {
|
1411
1411
|
padding-bottom: 9px;
|
1412
1412
|
margin: 40px 0 20px;
|
1413
|
-
border-bottom: 1px solid #
|
1413
|
+
border-bottom: 1px solid #eeeeee;
|
1414
1414
|
}
|
1415
1415
|
ul,
|
1416
1416
|
ol {
|
@@ -1429,8 +1429,8 @@ ol ol {
|
|
1429
1429
|
}
|
1430
1430
|
.list-inline {
|
1431
1431
|
padding-left: 0;
|
1432
|
-
margin-left: -5px;
|
1433
1432
|
list-style: none;
|
1433
|
+
margin-left: -5px;
|
1434
1434
|
}
|
1435
1435
|
.list-inline > li {
|
1436
1436
|
display: inline-block;
|
@@ -1446,7 +1446,7 @@ dd {
|
|
1446
1446
|
line-height: 1.42857143;
|
1447
1447
|
}
|
1448
1448
|
dt {
|
1449
|
-
font-weight:
|
1449
|
+
font-weight: 700;
|
1450
1450
|
}
|
1451
1451
|
dd {
|
1452
1452
|
margin-left: 0;
|
@@ -1455,9 +1455,9 @@ dd {
|
|
1455
1455
|
.dl-horizontal dt {
|
1456
1456
|
float: left;
|
1457
1457
|
width: 160px;
|
1458
|
-
overflow: hidden;
|
1459
1458
|
clear: left;
|
1460
1459
|
text-align: right;
|
1460
|
+
overflow: hidden;
|
1461
1461
|
text-overflow: ellipsis;
|
1462
1462
|
white-space: nowrap;
|
1463
1463
|
}
|
@@ -1468,7 +1468,6 @@ dd {
|
|
1468
1468
|
abbr[title],
|
1469
1469
|
abbr[data-original-title] {
|
1470
1470
|
cursor: help;
|
1471
|
-
border-bottom: 1px dotted #777;
|
1472
1471
|
}
|
1473
1472
|
.initialism {
|
1474
1473
|
font-size: 90%;
|
@@ -1478,7 +1477,7 @@ blockquote {
|
|
1478
1477
|
padding: 10px 20px;
|
1479
1478
|
margin: 0 0 20px;
|
1480
1479
|
font-size: 17.5px;
|
1481
|
-
border-left: 5px solid #
|
1480
|
+
border-left: 5px solid #eeeeee;
|
1482
1481
|
}
|
1483
1482
|
blockquote p:last-child,
|
1484
1483
|
blockquote ul:last-child,
|
@@ -1491,19 +1490,19 @@ blockquote .small {
|
|
1491
1490
|
display: block;
|
1492
1491
|
font-size: 80%;
|
1493
1492
|
line-height: 1.42857143;
|
1494
|
-
color: #
|
1493
|
+
color: #777777;
|
1495
1494
|
}
|
1496
1495
|
blockquote footer:before,
|
1497
1496
|
blockquote small:before,
|
1498
1497
|
blockquote .small:before {
|
1499
|
-
content:
|
1498
|
+
content: "\2014 \00A0";
|
1500
1499
|
}
|
1501
1500
|
.blockquote-reverse,
|
1502
1501
|
blockquote.pull-right {
|
1503
1502
|
padding-right: 15px;
|
1504
1503
|
padding-left: 0;
|
1505
1504
|
text-align: right;
|
1506
|
-
border-right: 5px solid #
|
1505
|
+
border-right: 5px solid #eeeeee;
|
1507
1506
|
border-left: 0;
|
1508
1507
|
}
|
1509
1508
|
.blockquote-reverse footer:before,
|
@@ -1512,7 +1511,7 @@ blockquote.pull-right footer:before,
|
|
1512
1511
|
blockquote.pull-right small:before,
|
1513
1512
|
.blockquote-reverse .small:before,
|
1514
1513
|
blockquote.pull-right .small:before {
|
1515
|
-
content:
|
1514
|
+
content: "";
|
1516
1515
|
}
|
1517
1516
|
.blockquote-reverse footer:after,
|
1518
1517
|
blockquote.pull-right footer:after,
|
@@ -1520,7 +1519,7 @@ blockquote.pull-right footer:after,
|
|
1520
1519
|
blockquote.pull-right small:after,
|
1521
1520
|
.blockquote-reverse .small:after,
|
1522
1521
|
blockquote.pull-right .small:after {
|
1523
|
-
content:
|
1522
|
+
content: "\00A0 \2014";
|
1524
1523
|
}
|
1525
1524
|
address {
|
1526
1525
|
margin-bottom: 20px;
|
@@ -1546,15 +1545,15 @@ kbd {
|
|
1546
1545
|
color: #fff;
|
1547
1546
|
background-color: #333;
|
1548
1547
|
border-radius: 3px;
|
1549
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1550
|
-
|
1548
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1549
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1551
1550
|
}
|
1552
1551
|
kbd kbd {
|
1553
1552
|
padding: 0;
|
1554
1553
|
font-size: 100%;
|
1555
|
-
font-weight:
|
1554
|
+
font-weight: 700;
|
1556
1555
|
-webkit-box-shadow: none;
|
1557
|
-
|
1556
|
+
box-shadow: none;
|
1558
1557
|
}
|
1559
1558
|
pre {
|
1560
1559
|
display: block;
|
@@ -1562,7 +1561,7 @@ pre {
|
|
1562
1561
|
margin: 0 0 10px;
|
1563
1562
|
font-size: 13px;
|
1564
1563
|
line-height: 1.42857143;
|
1565
|
-
color: #
|
1564
|
+
color: #333333;
|
1566
1565
|
word-break: break-all;
|
1567
1566
|
word-wrap: break-word;
|
1568
1567
|
background-color: #f5f5f5;
|
@@ -1612,13 +1611,79 @@ pre code {
|
|
1612
1611
|
margin-right: -15px;
|
1613
1612
|
margin-left: -15px;
|
1614
1613
|
}
|
1615
|
-
.
|
1614
|
+
.row-no-gutters {
|
1615
|
+
margin-right: 0;
|
1616
|
+
margin-left: 0;
|
1617
|
+
}
|
1618
|
+
.row-no-gutters [class*="col-"] {
|
1619
|
+
padding-right: 0;
|
1620
|
+
padding-left: 0;
|
1621
|
+
}
|
1622
|
+
.col-xs-1,
|
1623
|
+
.col-sm-1,
|
1624
|
+
.col-md-1,
|
1625
|
+
.col-lg-1,
|
1626
|
+
.col-xs-2,
|
1627
|
+
.col-sm-2,
|
1628
|
+
.col-md-2,
|
1629
|
+
.col-lg-2,
|
1630
|
+
.col-xs-3,
|
1631
|
+
.col-sm-3,
|
1632
|
+
.col-md-3,
|
1633
|
+
.col-lg-3,
|
1634
|
+
.col-xs-4,
|
1635
|
+
.col-sm-4,
|
1636
|
+
.col-md-4,
|
1637
|
+
.col-lg-4,
|
1638
|
+
.col-xs-5,
|
1639
|
+
.col-sm-5,
|
1640
|
+
.col-md-5,
|
1641
|
+
.col-lg-5,
|
1642
|
+
.col-xs-6,
|
1643
|
+
.col-sm-6,
|
1644
|
+
.col-md-6,
|
1645
|
+
.col-lg-6,
|
1646
|
+
.col-xs-7,
|
1647
|
+
.col-sm-7,
|
1648
|
+
.col-md-7,
|
1649
|
+
.col-lg-7,
|
1650
|
+
.col-xs-8,
|
1651
|
+
.col-sm-8,
|
1652
|
+
.col-md-8,
|
1653
|
+
.col-lg-8,
|
1654
|
+
.col-xs-9,
|
1655
|
+
.col-sm-9,
|
1656
|
+
.col-md-9,
|
1657
|
+
.col-lg-9,
|
1658
|
+
.col-xs-10,
|
1659
|
+
.col-sm-10,
|
1660
|
+
.col-md-10,
|
1661
|
+
.col-lg-10,
|
1662
|
+
.col-xs-11,
|
1663
|
+
.col-sm-11,
|
1664
|
+
.col-md-11,
|
1665
|
+
.col-lg-11,
|
1666
|
+
.col-xs-12,
|
1667
|
+
.col-sm-12,
|
1668
|
+
.col-md-12,
|
1669
|
+
.col-lg-12 {
|
1616
1670
|
position: relative;
|
1617
1671
|
min-height: 1px;
|
1618
1672
|
padding-right: 15px;
|
1619
1673
|
padding-left: 15px;
|
1620
1674
|
}
|
1621
|
-
.col-xs-1,
|
1675
|
+
.col-xs-1,
|
1676
|
+
.col-xs-2,
|
1677
|
+
.col-xs-3,
|
1678
|
+
.col-xs-4,
|
1679
|
+
.col-xs-5,
|
1680
|
+
.col-xs-6,
|
1681
|
+
.col-xs-7,
|
1682
|
+
.col-xs-8,
|
1683
|
+
.col-xs-9,
|
1684
|
+
.col-xs-10,
|
1685
|
+
.col-xs-11,
|
1686
|
+
.col-xs-12 {
|
1622
1687
|
float: left;
|
1623
1688
|
}
|
1624
1689
|
.col-xs-12 {
|
@@ -1772,10 +1837,21 @@ pre code {
|
|
1772
1837
|
margin-left: 8.33333333%;
|
1773
1838
|
}
|
1774
1839
|
.col-xs-offset-0 {
|
1775
|
-
margin-left: 0
|
1840
|
+
margin-left: 0%;
|
1776
1841
|
}
|
1777
1842
|
@media (min-width: 768px) {
|
1778
|
-
.col-sm-1,
|
1843
|
+
.col-sm-1,
|
1844
|
+
.col-sm-2,
|
1845
|
+
.col-sm-3,
|
1846
|
+
.col-sm-4,
|
1847
|
+
.col-sm-5,
|
1848
|
+
.col-sm-6,
|
1849
|
+
.col-sm-7,
|
1850
|
+
.col-sm-8,
|
1851
|
+
.col-sm-9,
|
1852
|
+
.col-sm-10,
|
1853
|
+
.col-sm-11,
|
1854
|
+
.col-sm-12 {
|
1779
1855
|
float: left;
|
1780
1856
|
}
|
1781
1857
|
.col-sm-12 {
|
@@ -1929,11 +2005,22 @@ pre code {
|
|
1929
2005
|
margin-left: 8.33333333%;
|
1930
2006
|
}
|
1931
2007
|
.col-sm-offset-0 {
|
1932
|
-
margin-left: 0
|
2008
|
+
margin-left: 0%;
|
1933
2009
|
}
|
1934
2010
|
}
|
1935
2011
|
@media (min-width: 992px) {
|
1936
|
-
.col-md-1,
|
2012
|
+
.col-md-1,
|
2013
|
+
.col-md-2,
|
2014
|
+
.col-md-3,
|
2015
|
+
.col-md-4,
|
2016
|
+
.col-md-5,
|
2017
|
+
.col-md-6,
|
2018
|
+
.col-md-7,
|
2019
|
+
.col-md-8,
|
2020
|
+
.col-md-9,
|
2021
|
+
.col-md-10,
|
2022
|
+
.col-md-11,
|
2023
|
+
.col-md-12 {
|
1937
2024
|
float: left;
|
1938
2025
|
}
|
1939
2026
|
.col-md-12 {
|
@@ -2087,11 +2174,22 @@ pre code {
|
|
2087
2174
|
margin-left: 8.33333333%;
|
2088
2175
|
}
|
2089
2176
|
.col-md-offset-0 {
|
2090
|
-
margin-left: 0
|
2177
|
+
margin-left: 0%;
|
2091
2178
|
}
|
2092
2179
|
}
|
2093
2180
|
@media (min-width: 1200px) {
|
2094
|
-
.col-lg-1,
|
2181
|
+
.col-lg-1,
|
2182
|
+
.col-lg-2,
|
2183
|
+
.col-lg-3,
|
2184
|
+
.col-lg-4,
|
2185
|
+
.col-lg-5,
|
2186
|
+
.col-lg-6,
|
2187
|
+
.col-lg-7,
|
2188
|
+
.col-lg-8,
|
2189
|
+
.col-lg-9,
|
2190
|
+
.col-lg-10,
|
2191
|
+
.col-lg-11,
|
2192
|
+
.col-lg-12 {
|
2095
2193
|
float: left;
|
2096
2194
|
}
|
2097
2195
|
.col-lg-12 {
|
@@ -2245,16 +2343,27 @@ pre code {
|
|
2245
2343
|
margin-left: 8.33333333%;
|
2246
2344
|
}
|
2247
2345
|
.col-lg-offset-0 {
|
2248
|
-
margin-left: 0
|
2346
|
+
margin-left: 0%;
|
2249
2347
|
}
|
2250
2348
|
}
|
2251
2349
|
table {
|
2252
2350
|
background-color: transparent;
|
2253
2351
|
}
|
2352
|
+
table col[class*="col-"] {
|
2353
|
+
position: static;
|
2354
|
+
display: table-column;
|
2355
|
+
float: none;
|
2356
|
+
}
|
2357
|
+
table td[class*="col-"],
|
2358
|
+
table th[class*="col-"] {
|
2359
|
+
position: static;
|
2360
|
+
display: table-cell;
|
2361
|
+
float: none;
|
2362
|
+
}
|
2254
2363
|
caption {
|
2255
2364
|
padding-top: 8px;
|
2256
2365
|
padding-bottom: 8px;
|
2257
|
-
color: #
|
2366
|
+
color: #777777;
|
2258
2367
|
text-align: left;
|
2259
2368
|
}
|
2260
2369
|
th {
|
@@ -2323,17 +2432,6 @@ th {
|
|
2323
2432
|
.table-hover > tbody > tr:hover {
|
2324
2433
|
background-color: #f5f5f5;
|
2325
2434
|
}
|
2326
|
-
table col[class*="col-"] {
|
2327
|
-
position: static;
|
2328
|
-
display: table-column;
|
2329
|
-
float: none;
|
2330
|
-
}
|
2331
|
-
table td[class*="col-"],
|
2332
|
-
table th[class*="col-"] {
|
2333
|
-
position: static;
|
2334
|
-
display: table-cell;
|
2335
|
-
float: none;
|
2336
|
-
}
|
2337
2435
|
.table > thead > tr > td.active,
|
2338
2436
|
.table > tbody > tr > td.active,
|
2339
2437
|
.table > tfoot > tr > td.active,
|
@@ -2440,7 +2538,7 @@ table th[class*="col-"] {
|
|
2440
2538
|
background-color: #ebcccc;
|
2441
2539
|
}
|
2442
2540
|
.table-responsive {
|
2443
|
-
min-height: .01%;
|
2541
|
+
min-height: 0.01%;
|
2444
2542
|
overflow-x: auto;
|
2445
2543
|
}
|
2446
2544
|
@media screen and (max-width: 767px) {
|
@@ -2501,7 +2599,7 @@ legend {
|
|
2501
2599
|
margin-bottom: 20px;
|
2502
2600
|
font-size: 21px;
|
2503
2601
|
line-height: inherit;
|
2504
|
-
color: #
|
2602
|
+
color: #333333;
|
2505
2603
|
border: 0;
|
2506
2604
|
border-bottom: 1px solid #e5e5e5;
|
2507
2605
|
}
|
@@ -2509,12 +2607,15 @@ label {
|
|
2509
2607
|
display: inline-block;
|
2510
2608
|
max-width: 100%;
|
2511
2609
|
margin-bottom: 5px;
|
2512
|
-
font-weight:
|
2610
|
+
font-weight: 700;
|
2513
2611
|
}
|
2514
2612
|
input[type="search"] {
|
2515
2613
|
-webkit-box-sizing: border-box;
|
2516
|
-
|
2517
|
-
|
2614
|
+
-moz-box-sizing: border-box;
|
2615
|
+
box-sizing: border-box;
|
2616
|
+
-webkit-appearance: none;
|
2617
|
+
-moz-appearance: none;
|
2618
|
+
appearance: none;
|
2518
2619
|
}
|
2519
2620
|
input[type="radio"],
|
2520
2621
|
input[type="checkbox"] {
|
@@ -2522,6 +2623,14 @@ input[type="checkbox"] {
|
|
2522
2623
|
margin-top: 1px \9;
|
2523
2624
|
line-height: normal;
|
2524
2625
|
}
|
2626
|
+
input[type="radio"][disabled],
|
2627
|
+
input[type="checkbox"][disabled],
|
2628
|
+
input[type="radio"].disabled,
|
2629
|
+
input[type="checkbox"].disabled,
|
2630
|
+
fieldset[disabled] input[type="radio"],
|
2631
|
+
fieldset[disabled] input[type="checkbox"] {
|
2632
|
+
cursor: not-allowed;
|
2633
|
+
}
|
2525
2634
|
input[type="file"] {
|
2526
2635
|
display: block;
|
2527
2636
|
}
|
@@ -2544,7 +2653,7 @@ output {
|
|
2544
2653
|
padding-top: 7px;
|
2545
2654
|
font-size: 14px;
|
2546
2655
|
line-height: 1.42857143;
|
2547
|
-
color: #
|
2656
|
+
color: #555555;
|
2548
2657
|
}
|
2549
2658
|
.form-control {
|
2550
2659
|
display: block;
|
@@ -2553,22 +2662,25 @@ output {
|
|
2553
2662
|
padding: 6px 12px;
|
2554
2663
|
font-size: 14px;
|
2555
2664
|
line-height: 1.42857143;
|
2556
|
-
color: #
|
2665
|
+
color: #555555;
|
2557
2666
|
background-color: #fff;
|
2558
2667
|
background-image: none;
|
2559
2668
|
border: 1px solid #ccc;
|
2560
2669
|
border-radius: 4px;
|
2561
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2562
|
-
|
2670
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2671
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2672
|
+
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2673
|
+
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2563
2674
|
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2564
|
-
|
2565
|
-
|
2675
|
+
transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2676
|
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2677
|
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2566
2678
|
}
|
2567
2679
|
.form-control:focus {
|
2568
2680
|
border-color: #66afe9;
|
2569
2681
|
outline: 0;
|
2570
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0
|
2571
|
-
|
2682
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
|
2683
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
|
2572
2684
|
}
|
2573
2685
|
.form-control::-moz-placeholder {
|
2574
2686
|
color: #999;
|
@@ -2587,7 +2699,7 @@ output {
|
|
2587
2699
|
.form-control[disabled],
|
2588
2700
|
.form-control[readonly],
|
2589
2701
|
fieldset[disabled] .form-control {
|
2590
|
-
background-color: #
|
2702
|
+
background-color: #eeeeee;
|
2591
2703
|
opacity: 1;
|
2592
2704
|
}
|
2593
2705
|
.form-control[disabled],
|
@@ -2597,9 +2709,6 @@ fieldset[disabled] .form-control {
|
|
2597
2709
|
textarea.form-control {
|
2598
2710
|
height: auto;
|
2599
2711
|
}
|
2600
|
-
input[type="search"] {
|
2601
|
-
-webkit-appearance: none;
|
2602
|
-
}
|
2603
2712
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2604
2713
|
input[type="date"].form-control,
|
2605
2714
|
input[type="time"].form-control,
|
@@ -2638,12 +2747,18 @@ input[type="search"] {
|
|
2638
2747
|
margin-top: 10px;
|
2639
2748
|
margin-bottom: 10px;
|
2640
2749
|
}
|
2750
|
+
.radio.disabled label,
|
2751
|
+
.checkbox.disabled label,
|
2752
|
+
fieldset[disabled] .radio label,
|
2753
|
+
fieldset[disabled] .checkbox label {
|
2754
|
+
cursor: not-allowed;
|
2755
|
+
}
|
2641
2756
|
.radio label,
|
2642
2757
|
.checkbox label {
|
2643
2758
|
min-height: 20px;
|
2644
2759
|
padding-left: 20px;
|
2645
2760
|
margin-bottom: 0;
|
2646
|
-
font-weight:
|
2761
|
+
font-weight: 400;
|
2647
2762
|
cursor: pointer;
|
2648
2763
|
}
|
2649
2764
|
.radio input[type="radio"],
|
@@ -2664,34 +2779,20 @@ input[type="search"] {
|
|
2664
2779
|
display: inline-block;
|
2665
2780
|
padding-left: 20px;
|
2666
2781
|
margin-bottom: 0;
|
2667
|
-
font-weight:
|
2782
|
+
font-weight: 400;
|
2668
2783
|
vertical-align: middle;
|
2669
2784
|
cursor: pointer;
|
2670
2785
|
}
|
2671
|
-
.radio-inline + .radio-inline,
|
2672
|
-
.checkbox-inline + .checkbox-inline {
|
2673
|
-
margin-top: 0;
|
2674
|
-
margin-left: 10px;
|
2675
|
-
}
|
2676
|
-
input[type="radio"][disabled],
|
2677
|
-
input[type="checkbox"][disabled],
|
2678
|
-
input[type="radio"].disabled,
|
2679
|
-
input[type="checkbox"].disabled,
|
2680
|
-
fieldset[disabled] input[type="radio"],
|
2681
|
-
fieldset[disabled] input[type="checkbox"] {
|
2682
|
-
cursor: not-allowed;
|
2683
|
-
}
|
2684
2786
|
.radio-inline.disabled,
|
2685
2787
|
.checkbox-inline.disabled,
|
2686
2788
|
fieldset[disabled] .radio-inline,
|
2687
2789
|
fieldset[disabled] .checkbox-inline {
|
2688
2790
|
cursor: not-allowed;
|
2689
2791
|
}
|
2690
|
-
.radio.
|
2691
|
-
.checkbox.
|
2692
|
-
|
2693
|
-
|
2694
|
-
cursor: not-allowed;
|
2792
|
+
.radio-inline + .radio-inline,
|
2793
|
+
.checkbox-inline + .checkbox-inline {
|
2794
|
+
margin-top: 0;
|
2795
|
+
margin-left: 10px;
|
2695
2796
|
}
|
2696
2797
|
.form-control-static {
|
2697
2798
|
min-height: 34px;
|
@@ -2824,13 +2925,13 @@ select[multiple].input-lg {
|
|
2824
2925
|
}
|
2825
2926
|
.has-success .form-control {
|
2826
2927
|
border-color: #3c763d;
|
2827
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2828
|
-
|
2928
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2929
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2829
2930
|
}
|
2830
2931
|
.has-success .form-control:focus {
|
2831
2932
|
border-color: #2b542c;
|
2832
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2833
|
-
|
2933
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
2934
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
2834
2935
|
}
|
2835
2936
|
.has-success .input-group-addon {
|
2836
2937
|
color: #3c763d;
|
@@ -2854,13 +2955,13 @@ select[multiple].input-lg {
|
|
2854
2955
|
}
|
2855
2956
|
.has-warning .form-control {
|
2856
2957
|
border-color: #8a6d3b;
|
2857
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2858
|
-
|
2958
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2959
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2859
2960
|
}
|
2860
2961
|
.has-warning .form-control:focus {
|
2861
2962
|
border-color: #66512c;
|
2862
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2863
|
-
|
2963
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
2964
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
2864
2965
|
}
|
2865
2966
|
.has-warning .input-group-addon {
|
2866
2967
|
color: #8a6d3b;
|
@@ -2884,13 +2985,13 @@ select[multiple].input-lg {
|
|
2884
2985
|
}
|
2885
2986
|
.has-error .form-control {
|
2886
2987
|
border-color: #a94442;
|
2887
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2888
|
-
|
2988
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2989
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2889
2990
|
}
|
2890
2991
|
.has-error .form-control:focus {
|
2891
2992
|
border-color: #843534;
|
2892
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2893
|
-
|
2993
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
2994
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
2894
2995
|
}
|
2895
2996
|
.has-error .input-group-addon {
|
2896
2997
|
color: #a94442;
|
@@ -3002,24 +3103,24 @@ select[multiple].input-lg {
|
|
3002
3103
|
}
|
3003
3104
|
.btn {
|
3004
3105
|
display: inline-block;
|
3005
|
-
padding: 6px 12px;
|
3006
3106
|
margin-bottom: 0;
|
3007
|
-
font-size: 14px;
|
3008
3107
|
font-weight: normal;
|
3009
|
-
line-height: 1.42857143;
|
3010
3108
|
text-align: center;
|
3011
3109
|
white-space: nowrap;
|
3012
3110
|
vertical-align: middle;
|
3013
3111
|
-ms-touch-action: manipulation;
|
3014
|
-
|
3112
|
+
touch-action: manipulation;
|
3015
3113
|
cursor: pointer;
|
3016
|
-
-webkit-user-select: none;
|
3017
|
-
-moz-user-select: none;
|
3018
|
-
-ms-user-select: none;
|
3019
|
-
user-select: none;
|
3020
3114
|
background-image: none;
|
3021
3115
|
border: 1px solid transparent;
|
3116
|
+
padding: 6px 12px;
|
3117
|
+
font-size: 14px;
|
3118
|
+
line-height: 1.42857143;
|
3022
3119
|
border-radius: 4px;
|
3120
|
+
-webkit-user-select: none;
|
3121
|
+
-moz-user-select: none;
|
3122
|
+
-ms-user-select: none;
|
3123
|
+
user-select: none;
|
3023
3124
|
}
|
3024
3125
|
.btn:focus,
|
3025
3126
|
.btn:active:focus,
|
@@ -3040,17 +3141,17 @@ select[multiple].input-lg {
|
|
3040
3141
|
.btn.active {
|
3041
3142
|
background-image: none;
|
3042
3143
|
outline: 0;
|
3043
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3044
|
-
|
3144
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3145
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3045
3146
|
}
|
3046
3147
|
.btn.disabled,
|
3047
3148
|
.btn[disabled],
|
3048
3149
|
fieldset[disabled] .btn {
|
3049
3150
|
cursor: not-allowed;
|
3050
3151
|
filter: alpha(opacity=65);
|
3152
|
+
opacity: 0.65;
|
3051
3153
|
-webkit-box-shadow: none;
|
3052
|
-
|
3053
|
-
opacity: .65;
|
3154
|
+
box-shadow: none;
|
3054
3155
|
}
|
3055
3156
|
a.btn.disabled,
|
3056
3157
|
fieldset[disabled] a.btn {
|
@@ -3077,6 +3178,7 @@ fieldset[disabled] a.btn {
|
|
3077
3178
|
.open > .dropdown-toggle.btn-default {
|
3078
3179
|
color: #333;
|
3079
3180
|
background-color: #e6e6e6;
|
3181
|
+
background-image: none;
|
3080
3182
|
border-color: #adadad;
|
3081
3183
|
}
|
3082
3184
|
.btn-default:active:hover,
|
@@ -3092,11 +3194,6 @@ fieldset[disabled] a.btn {
|
|
3092
3194
|
background-color: #d4d4d4;
|
3093
3195
|
border-color: #8c8c8c;
|
3094
3196
|
}
|
3095
|
-
.btn-default:active,
|
3096
|
-
.btn-default.active,
|
3097
|
-
.open > .dropdown-toggle.btn-default {
|
3098
|
-
background-image: none;
|
3099
|
-
}
|
3100
3197
|
.btn-default.disabled:hover,
|
3101
3198
|
.btn-default[disabled]:hover,
|
3102
3199
|
fieldset[disabled] .btn-default:hover,
|
@@ -3134,6 +3231,7 @@ fieldset[disabled] .btn-default.focus {
|
|
3134
3231
|
.open > .dropdown-toggle.btn-primary {
|
3135
3232
|
color: #fff;
|
3136
3233
|
background-color: #286090;
|
3234
|
+
background-image: none;
|
3137
3235
|
border-color: #204d74;
|
3138
3236
|
}
|
3139
3237
|
.btn-primary:active:hover,
|
@@ -3149,11 +3247,6 @@ fieldset[disabled] .btn-default.focus {
|
|
3149
3247
|
background-color: #204d74;
|
3150
3248
|
border-color: #122b40;
|
3151
3249
|
}
|
3152
|
-
.btn-primary:active,
|
3153
|
-
.btn-primary.active,
|
3154
|
-
.open > .dropdown-toggle.btn-primary {
|
3155
|
-
background-image: none;
|
3156
|
-
}
|
3157
3250
|
.btn-primary.disabled:hover,
|
3158
3251
|
.btn-primary[disabled]:hover,
|
3159
3252
|
fieldset[disabled] .btn-primary:hover,
|
@@ -3191,6 +3284,7 @@ fieldset[disabled] .btn-primary.focus {
|
|
3191
3284
|
.open > .dropdown-toggle.btn-success {
|
3192
3285
|
color: #fff;
|
3193
3286
|
background-color: #449d44;
|
3287
|
+
background-image: none;
|
3194
3288
|
border-color: #398439;
|
3195
3289
|
}
|
3196
3290
|
.btn-success:active:hover,
|
@@ -3206,11 +3300,6 @@ fieldset[disabled] .btn-primary.focus {
|
|
3206
3300
|
background-color: #398439;
|
3207
3301
|
border-color: #255625;
|
3208
3302
|
}
|
3209
|
-
.btn-success:active,
|
3210
|
-
.btn-success.active,
|
3211
|
-
.open > .dropdown-toggle.btn-success {
|
3212
|
-
background-image: none;
|
3213
|
-
}
|
3214
3303
|
.btn-success.disabled:hover,
|
3215
3304
|
.btn-success[disabled]:hover,
|
3216
3305
|
fieldset[disabled] .btn-success:hover,
|
@@ -3248,6 +3337,7 @@ fieldset[disabled] .btn-success.focus {
|
|
3248
3337
|
.open > .dropdown-toggle.btn-info {
|
3249
3338
|
color: #fff;
|
3250
3339
|
background-color: #31b0d5;
|
3340
|
+
background-image: none;
|
3251
3341
|
border-color: #269abc;
|
3252
3342
|
}
|
3253
3343
|
.btn-info:active:hover,
|
@@ -3263,11 +3353,6 @@ fieldset[disabled] .btn-success.focus {
|
|
3263
3353
|
background-color: #269abc;
|
3264
3354
|
border-color: #1b6d85;
|
3265
3355
|
}
|
3266
|
-
.btn-info:active,
|
3267
|
-
.btn-info.active,
|
3268
|
-
.open > .dropdown-toggle.btn-info {
|
3269
|
-
background-image: none;
|
3270
|
-
}
|
3271
3356
|
.btn-info.disabled:hover,
|
3272
3357
|
.btn-info[disabled]:hover,
|
3273
3358
|
fieldset[disabled] .btn-info:hover,
|
@@ -3305,6 +3390,7 @@ fieldset[disabled] .btn-info.focus {
|
|
3305
3390
|
.open > .dropdown-toggle.btn-warning {
|
3306
3391
|
color: #fff;
|
3307
3392
|
background-color: #ec971f;
|
3393
|
+
background-image: none;
|
3308
3394
|
border-color: #d58512;
|
3309
3395
|
}
|
3310
3396
|
.btn-warning:active:hover,
|
@@ -3320,11 +3406,6 @@ fieldset[disabled] .btn-info.focus {
|
|
3320
3406
|
background-color: #d58512;
|
3321
3407
|
border-color: #985f0d;
|
3322
3408
|
}
|
3323
|
-
.btn-warning:active,
|
3324
|
-
.btn-warning.active,
|
3325
|
-
.open > .dropdown-toggle.btn-warning {
|
3326
|
-
background-image: none;
|
3327
|
-
}
|
3328
3409
|
.btn-warning.disabled:hover,
|
3329
3410
|
.btn-warning[disabled]:hover,
|
3330
3411
|
fieldset[disabled] .btn-warning:hover,
|
@@ -3362,6 +3443,7 @@ fieldset[disabled] .btn-warning.focus {
|
|
3362
3443
|
.open > .dropdown-toggle.btn-danger {
|
3363
3444
|
color: #fff;
|
3364
3445
|
background-color: #c9302c;
|
3446
|
+
background-image: none;
|
3365
3447
|
border-color: #ac2925;
|
3366
3448
|
}
|
3367
3449
|
.btn-danger:active:hover,
|
@@ -3377,11 +3459,6 @@ fieldset[disabled] .btn-warning.focus {
|
|
3377
3459
|
background-color: #ac2925;
|
3378
3460
|
border-color: #761c19;
|
3379
3461
|
}
|
3380
|
-
.btn-danger:active,
|
3381
|
-
.btn-danger.active,
|
3382
|
-
.open > .dropdown-toggle.btn-danger {
|
3383
|
-
background-image: none;
|
3384
|
-
}
|
3385
3462
|
.btn-danger.disabled:hover,
|
3386
3463
|
.btn-danger[disabled]:hover,
|
3387
3464
|
fieldset[disabled] .btn-danger:hover,
|
@@ -3399,7 +3476,7 @@ fieldset[disabled] .btn-danger.focus {
|
|
3399
3476
|
background-color: #fff;
|
3400
3477
|
}
|
3401
3478
|
.btn-link {
|
3402
|
-
font-weight:
|
3479
|
+
font-weight: 400;
|
3403
3480
|
color: #337ab7;
|
3404
3481
|
border-radius: 0;
|
3405
3482
|
}
|
@@ -3410,7 +3487,7 @@ fieldset[disabled] .btn-danger.focus {
|
|
3410
3487
|
fieldset[disabled] .btn-link {
|
3411
3488
|
background-color: transparent;
|
3412
3489
|
-webkit-box-shadow: none;
|
3413
|
-
|
3490
|
+
box-shadow: none;
|
3414
3491
|
}
|
3415
3492
|
.btn-link,
|
3416
3493
|
.btn-link:hover,
|
@@ -3428,7 +3505,7 @@ fieldset[disabled] .btn-link {
|
|
3428
3505
|
fieldset[disabled] .btn-link:hover,
|
3429
3506
|
.btn-link[disabled]:focus,
|
3430
3507
|
fieldset[disabled] .btn-link:focus {
|
3431
|
-
color: #
|
3508
|
+
color: #777777;
|
3432
3509
|
text-decoration: none;
|
3433
3510
|
}
|
3434
3511
|
.btn-lg,
|
@@ -3466,9 +3543,9 @@ input[type="button"].btn-block {
|
|
3466
3543
|
}
|
3467
3544
|
.fade {
|
3468
3545
|
opacity: 0;
|
3469
|
-
-webkit-transition: opacity .15s linear;
|
3470
|
-
|
3471
|
-
|
3546
|
+
-webkit-transition: opacity 0.15s linear;
|
3547
|
+
-o-transition: opacity 0.15s linear;
|
3548
|
+
transition: opacity 0.15s linear;
|
3472
3549
|
}
|
3473
3550
|
.fade.in {
|
3474
3551
|
opacity: 1;
|
@@ -3489,15 +3566,15 @@ tbody.collapse.in {
|
|
3489
3566
|
position: relative;
|
3490
3567
|
height: 0;
|
3491
3568
|
overflow: hidden;
|
3492
|
-
-webkit-transition-timing-function: ease;
|
3493
|
-
-o-transition-timing-function: ease;
|
3494
|
-
transition-timing-function: ease;
|
3495
|
-
-webkit-transition-duration: .35s;
|
3496
|
-
-o-transition-duration: .35s;
|
3497
|
-
transition-duration: .35s;
|
3498
3569
|
-webkit-transition-property: height, visibility;
|
3499
|
-
|
3500
|
-
|
3570
|
+
-o-transition-property: height, visibility;
|
3571
|
+
transition-property: height, visibility;
|
3572
|
+
-webkit-transition-duration: 0.35s;
|
3573
|
+
-o-transition-duration: 0.35s;
|
3574
|
+
transition-duration: 0.35s;
|
3575
|
+
-webkit-transition-timing-function: ease;
|
3576
|
+
-o-transition-timing-function: ease;
|
3577
|
+
transition-timing-function: ease;
|
3501
3578
|
}
|
3502
3579
|
.caret {
|
3503
3580
|
display: inline-block;
|
@@ -3531,13 +3608,12 @@ tbody.collapse.in {
|
|
3531
3608
|
text-align: left;
|
3532
3609
|
list-style: none;
|
3533
3610
|
background-color: #fff;
|
3534
|
-
|
3535
|
-
background-clip: padding-box;
|
3611
|
+
background-clip: padding-box;
|
3536
3612
|
border: 1px solid #ccc;
|
3537
|
-
border: 1px solid rgba(0, 0, 0, .15);
|
3613
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
3538
3614
|
border-radius: 4px;
|
3539
|
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3540
|
-
|
3615
|
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3616
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3541
3617
|
}
|
3542
3618
|
.dropdown-menu.pull-right {
|
3543
3619
|
right: 0;
|
@@ -3553,9 +3629,9 @@ tbody.collapse.in {
|
|
3553
3629
|
display: block;
|
3554
3630
|
padding: 3px 20px;
|
3555
3631
|
clear: both;
|
3556
|
-
font-weight:
|
3632
|
+
font-weight: 400;
|
3557
3633
|
line-height: 1.42857143;
|
3558
|
-
color: #
|
3634
|
+
color: #333333;
|
3559
3635
|
white-space: nowrap;
|
3560
3636
|
}
|
3561
3637
|
.dropdown-menu > li > a:hover,
|
@@ -3575,7 +3651,7 @@ tbody.collapse.in {
|
|
3575
3651
|
.dropdown-menu > .disabled > a,
|
3576
3652
|
.dropdown-menu > .disabled > a:hover,
|
3577
3653
|
.dropdown-menu > .disabled > a:focus {
|
3578
|
-
color: #
|
3654
|
+
color: #777777;
|
3579
3655
|
}
|
3580
3656
|
.dropdown-menu > .disabled > a:hover,
|
3581
3657
|
.dropdown-menu > .disabled > a:focus {
|
@@ -3604,7 +3680,7 @@ tbody.collapse.in {
|
|
3604
3680
|
padding: 3px 20px;
|
3605
3681
|
font-size: 12px;
|
3606
3682
|
line-height: 1.42857143;
|
3607
|
-
color: #
|
3683
|
+
color: #777777;
|
3608
3684
|
white-space: nowrap;
|
3609
3685
|
}
|
3610
3686
|
.dropdown-backdrop {
|
@@ -3725,12 +3801,12 @@ tbody.collapse.in {
|
|
3725
3801
|
padding-left: 12px;
|
3726
3802
|
}
|
3727
3803
|
.btn-group.open .dropdown-toggle {
|
3728
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3729
|
-
|
3804
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3805
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3730
3806
|
}
|
3731
3807
|
.btn-group.open .dropdown-toggle.btn-link {
|
3732
3808
|
-webkit-box-shadow: none;
|
3733
|
-
|
3809
|
+
box-shadow: none;
|
3734
3810
|
}
|
3735
3811
|
.btn .caret {
|
3736
3812
|
margin-left: 0;
|
@@ -3898,11 +3974,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3898
3974
|
.input-group-addon {
|
3899
3975
|
padding: 6px 12px;
|
3900
3976
|
font-size: 14px;
|
3901
|
-
font-weight:
|
3977
|
+
font-weight: 400;
|
3902
3978
|
line-height: 1;
|
3903
|
-
color: #
|
3979
|
+
color: #555555;
|
3904
3980
|
text-align: center;
|
3905
|
-
background-color: #
|
3981
|
+
background-color: #eeeeee;
|
3906
3982
|
border: 1px solid #ccc;
|
3907
3983
|
border-radius: 4px;
|
3908
3984
|
}
|
@@ -3988,14 +4064,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3988
4064
|
.nav > li > a:hover,
|
3989
4065
|
.nav > li > a:focus {
|
3990
4066
|
text-decoration: none;
|
3991
|
-
background-color: #
|
4067
|
+
background-color: #eeeeee;
|
3992
4068
|
}
|
3993
4069
|
.nav > li.disabled > a {
|
3994
|
-
color: #
|
4070
|
+
color: #777777;
|
3995
4071
|
}
|
3996
4072
|
.nav > li.disabled > a:hover,
|
3997
4073
|
.nav > li.disabled > a:focus {
|
3998
|
-
color: #
|
4074
|
+
color: #777777;
|
3999
4075
|
text-decoration: none;
|
4000
4076
|
cursor: not-allowed;
|
4001
4077
|
background-color: transparent;
|
@@ -4003,7 +4079,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4003
4079
|
.nav .open > a,
|
4004
4080
|
.nav .open > a:hover,
|
4005
4081
|
.nav .open > a:focus {
|
4006
|
-
background-color: #
|
4082
|
+
background-color: #eeeeee;
|
4007
4083
|
border-color: #337ab7;
|
4008
4084
|
}
|
4009
4085
|
.nav .nav-divider {
|
@@ -4029,12 +4105,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4029
4105
|
border-radius: 4px 4px 0 0;
|
4030
4106
|
}
|
4031
4107
|
.nav-tabs > li > a:hover {
|
4032
|
-
border-color: #
|
4108
|
+
border-color: #eeeeee #eeeeee #ddd;
|
4033
4109
|
}
|
4034
4110
|
.nav-tabs > li.active > a,
|
4035
4111
|
.nav-tabs > li.active > a:hover,
|
4036
4112
|
.nav-tabs > li.active > a:focus {
|
4037
|
-
color: #
|
4113
|
+
color: #555555;
|
4038
4114
|
cursor: default;
|
4039
4115
|
background-color: #fff;
|
4040
4116
|
border: 1px solid #ddd;
|
@@ -4183,10 +4259,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4183
4259
|
padding-right: 15px;
|
4184
4260
|
padding-left: 15px;
|
4185
4261
|
overflow-x: visible;
|
4186
|
-
-webkit-overflow-scrolling: touch;
|
4187
4262
|
border-top: 1px solid transparent;
|
4188
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4189
|
-
|
4263
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4264
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4265
|
+
-webkit-overflow-scrolling: touch;
|
4190
4266
|
}
|
4191
4267
|
.navbar-collapse.in {
|
4192
4268
|
overflow-y: auto;
|
@@ -4196,7 +4272,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4196
4272
|
width: auto;
|
4197
4273
|
border-top: 0;
|
4198
4274
|
-webkit-box-shadow: none;
|
4199
|
-
|
4275
|
+
box-shadow: none;
|
4200
4276
|
}
|
4201
4277
|
.navbar-collapse.collapse {
|
4202
4278
|
display: block !important;
|
@@ -4214,6 +4290,13 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4214
4290
|
padding-left: 0;
|
4215
4291
|
}
|
4216
4292
|
}
|
4293
|
+
.navbar-fixed-top,
|
4294
|
+
.navbar-fixed-bottom {
|
4295
|
+
position: fixed;
|
4296
|
+
right: 0;
|
4297
|
+
left: 0;
|
4298
|
+
z-index: 1030;
|
4299
|
+
}
|
4217
4300
|
.navbar-fixed-top .navbar-collapse,
|
4218
4301
|
.navbar-fixed-bottom .navbar-collapse {
|
4219
4302
|
max-height: 340px;
|
@@ -4224,6 +4307,21 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4224
4307
|
max-height: 200px;
|
4225
4308
|
}
|
4226
4309
|
}
|
4310
|
+
@media (min-width: 768px) {
|
4311
|
+
.navbar-fixed-top,
|
4312
|
+
.navbar-fixed-bottom {
|
4313
|
+
border-radius: 0;
|
4314
|
+
}
|
4315
|
+
}
|
4316
|
+
.navbar-fixed-top {
|
4317
|
+
top: 0;
|
4318
|
+
border-width: 0 0 1px;
|
4319
|
+
}
|
4320
|
+
.navbar-fixed-bottom {
|
4321
|
+
bottom: 0;
|
4322
|
+
margin-bottom: 0;
|
4323
|
+
border-width: 1px 0 0;
|
4324
|
+
}
|
4227
4325
|
.container > .navbar-header,
|
4228
4326
|
.container-fluid > .navbar-header,
|
4229
4327
|
.container > .navbar-collapse,
|
@@ -4249,28 +4347,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4249
4347
|
border-radius: 0;
|
4250
4348
|
}
|
4251
4349
|
}
|
4252
|
-
.navbar-fixed-top,
|
4253
|
-
.navbar-fixed-bottom {
|
4254
|
-
position: fixed;
|
4255
|
-
right: 0;
|
4256
|
-
left: 0;
|
4257
|
-
z-index: 1030;
|
4258
|
-
}
|
4259
|
-
@media (min-width: 768px) {
|
4260
|
-
.navbar-fixed-top,
|
4261
|
-
.navbar-fixed-bottom {
|
4262
|
-
border-radius: 0;
|
4263
|
-
}
|
4264
|
-
}
|
4265
|
-
.navbar-fixed-top {
|
4266
|
-
top: 0;
|
4267
|
-
border-width: 0 0 1px;
|
4268
|
-
}
|
4269
|
-
.navbar-fixed-bottom {
|
4270
|
-
bottom: 0;
|
4271
|
-
margin-bottom: 0;
|
4272
|
-
border-width: 1px 0 0;
|
4273
|
-
}
|
4274
4350
|
.navbar-brand {
|
4275
4351
|
float: left;
|
4276
4352
|
height: 50px;
|
@@ -4295,8 +4371,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4295
4371
|
position: relative;
|
4296
4372
|
float: right;
|
4297
4373
|
padding: 9px 10px;
|
4298
|
-
margin-top: 8px;
|
4299
4374
|
margin-right: 15px;
|
4375
|
+
margin-top: 8px;
|
4300
4376
|
margin-bottom: 8px;
|
4301
4377
|
background-color: transparent;
|
4302
4378
|
background-image: none;
|
@@ -4337,7 +4413,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4337
4413
|
background-color: transparent;
|
4338
4414
|
border: 0;
|
4339
4415
|
-webkit-box-shadow: none;
|
4340
|
-
|
4416
|
+
box-shadow: none;
|
4341
4417
|
}
|
4342
4418
|
.navbar-nav .open .dropdown-menu > li > a,
|
4343
4419
|
.navbar-nav .open .dropdown-menu .dropdown-header {
|
@@ -4366,14 +4442,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4366
4442
|
}
|
4367
4443
|
.navbar-form {
|
4368
4444
|
padding: 10px 15px;
|
4369
|
-
margin-top: 8px;
|
4370
4445
|
margin-right: -15px;
|
4371
|
-
margin-bottom: 8px;
|
4372
4446
|
margin-left: -15px;
|
4373
4447
|
border-top: 1px solid transparent;
|
4374
4448
|
border-bottom: 1px solid transparent;
|
4375
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4376
|
-
|
4449
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4450
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4451
|
+
margin-top: 8px;
|
4452
|
+
margin-bottom: 8px;
|
4377
4453
|
}
|
4378
4454
|
@media (min-width: 768px) {
|
4379
4455
|
.navbar-form .form-group {
|
@@ -4442,7 +4518,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4442
4518
|
margin-left: 0;
|
4443
4519
|
border: 0;
|
4444
4520
|
-webkit-box-shadow: none;
|
4445
|
-
|
4521
|
+
box-shadow: none;
|
4446
4522
|
}
|
4447
4523
|
}
|
4448
4524
|
.navbar-nav > li > .dropdown-menu {
|
@@ -4527,20 +4603,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4527
4603
|
color: #ccc;
|
4528
4604
|
background-color: transparent;
|
4529
4605
|
}
|
4530
|
-
.navbar-default .navbar-toggle {
|
4531
|
-
border-color: #ddd;
|
4532
|
-
}
|
4533
|
-
.navbar-default .navbar-toggle:hover,
|
4534
|
-
.navbar-default .navbar-toggle:focus {
|
4535
|
-
background-color: #ddd;
|
4536
|
-
}
|
4537
|
-
.navbar-default .navbar-toggle .icon-bar {
|
4538
|
-
background-color: #888;
|
4539
|
-
}
|
4540
|
-
.navbar-default .navbar-collapse,
|
4541
|
-
.navbar-default .navbar-form {
|
4542
|
-
border-color: #e7e7e7;
|
4543
|
-
}
|
4544
4606
|
.navbar-default .navbar-nav > .open > a,
|
4545
4607
|
.navbar-default .navbar-nav > .open > a:hover,
|
4546
4608
|
.navbar-default .navbar-nav > .open > a:focus {
|
@@ -4569,6 +4631,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4569
4631
|
background-color: transparent;
|
4570
4632
|
}
|
4571
4633
|
}
|
4634
|
+
.navbar-default .navbar-toggle {
|
4635
|
+
border-color: #ddd;
|
4636
|
+
}
|
4637
|
+
.navbar-default .navbar-toggle:hover,
|
4638
|
+
.navbar-default .navbar-toggle:focus {
|
4639
|
+
background-color: #ddd;
|
4640
|
+
}
|
4641
|
+
.navbar-default .navbar-toggle .icon-bar {
|
4642
|
+
background-color: #888;
|
4643
|
+
}
|
4644
|
+
.navbar-default .navbar-collapse,
|
4645
|
+
.navbar-default .navbar-form {
|
4646
|
+
border-color: #e7e7e7;
|
4647
|
+
}
|
4572
4648
|
.navbar-default .navbar-link {
|
4573
4649
|
color: #777;
|
4574
4650
|
}
|
@@ -4623,20 +4699,6 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4623
4699
|
color: #444;
|
4624
4700
|
background-color: transparent;
|
4625
4701
|
}
|
4626
|
-
.navbar-inverse .navbar-toggle {
|
4627
|
-
border-color: #333;
|
4628
|
-
}
|
4629
|
-
.navbar-inverse .navbar-toggle:hover,
|
4630
|
-
.navbar-inverse .navbar-toggle:focus {
|
4631
|
-
background-color: #333;
|
4632
|
-
}
|
4633
|
-
.navbar-inverse .navbar-toggle .icon-bar {
|
4634
|
-
background-color: #fff;
|
4635
|
-
}
|
4636
|
-
.navbar-inverse .navbar-collapse,
|
4637
|
-
.navbar-inverse .navbar-form {
|
4638
|
-
border-color: #101010;
|
4639
|
-
}
|
4640
4702
|
.navbar-inverse .navbar-nav > .open > a,
|
4641
4703
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
4642
4704
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
@@ -4671,6 +4733,20 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4671
4733
|
background-color: transparent;
|
4672
4734
|
}
|
4673
4735
|
}
|
4736
|
+
.navbar-inverse .navbar-toggle {
|
4737
|
+
border-color: #333;
|
4738
|
+
}
|
4739
|
+
.navbar-inverse .navbar-toggle:hover,
|
4740
|
+
.navbar-inverse .navbar-toggle:focus {
|
4741
|
+
background-color: #333;
|
4742
|
+
}
|
4743
|
+
.navbar-inverse .navbar-toggle .icon-bar {
|
4744
|
+
background-color: #fff;
|
4745
|
+
}
|
4746
|
+
.navbar-inverse .navbar-collapse,
|
4747
|
+
.navbar-inverse .navbar-form {
|
4748
|
+
border-color: #101010;
|
4749
|
+
}
|
4674
4750
|
.navbar-inverse .navbar-link {
|
4675
4751
|
color: #9d9d9d;
|
4676
4752
|
}
|
@@ -4706,7 +4782,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4706
4782
|
content: "/\00a0";
|
4707
4783
|
}
|
4708
4784
|
.breadcrumb > .active {
|
4709
|
-
color: #
|
4785
|
+
color: #777777;
|
4710
4786
|
}
|
4711
4787
|
.pagination {
|
4712
4788
|
display: inline-block;
|
@@ -4729,6 +4805,15 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4729
4805
|
background-color: #fff;
|
4730
4806
|
border: 1px solid #ddd;
|
4731
4807
|
}
|
4808
|
+
.pagination > li > a:hover,
|
4809
|
+
.pagination > li > span:hover,
|
4810
|
+
.pagination > li > a:focus,
|
4811
|
+
.pagination > li > span:focus {
|
4812
|
+
z-index: 2;
|
4813
|
+
color: #23527c;
|
4814
|
+
background-color: #eeeeee;
|
4815
|
+
border-color: #ddd;
|
4816
|
+
}
|
4732
4817
|
.pagination > li:first-child > a,
|
4733
4818
|
.pagination > li:first-child > span {
|
4734
4819
|
margin-left: 0;
|
@@ -4740,15 +4825,6 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4740
4825
|
border-top-right-radius: 4px;
|
4741
4826
|
border-bottom-right-radius: 4px;
|
4742
4827
|
}
|
4743
|
-
.pagination > li > a:hover,
|
4744
|
-
.pagination > li > span:hover,
|
4745
|
-
.pagination > li > a:focus,
|
4746
|
-
.pagination > li > span:focus {
|
4747
|
-
z-index: 2;
|
4748
|
-
color: #23527c;
|
4749
|
-
background-color: #eee;
|
4750
|
-
border-color: #ddd;
|
4751
|
-
}
|
4752
4828
|
.pagination > .active > a,
|
4753
4829
|
.pagination > .active > span,
|
4754
4830
|
.pagination > .active > a:hover,
|
@@ -4767,7 +4843,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4767
4843
|
.pagination > .disabled > a,
|
4768
4844
|
.pagination > .disabled > a:hover,
|
4769
4845
|
.pagination > .disabled > a:focus {
|
4770
|
-
color: #
|
4846
|
+
color: #777777;
|
4771
4847
|
cursor: not-allowed;
|
4772
4848
|
background-color: #fff;
|
4773
4849
|
border-color: #ddd;
|
@@ -4824,7 +4900,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4824
4900
|
.pager li > a:hover,
|
4825
4901
|
.pager li > a:focus {
|
4826
4902
|
text-decoration: none;
|
4827
|
-
background-color: #
|
4903
|
+
background-color: #eeeeee;
|
4828
4904
|
}
|
4829
4905
|
.pager .next > a,
|
4830
4906
|
.pager .next > span {
|
@@ -4838,21 +4914,21 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4838
4914
|
.pager .disabled > a:hover,
|
4839
4915
|
.pager .disabled > a:focus,
|
4840
4916
|
.pager .disabled > span {
|
4841
|
-
color: #
|
4917
|
+
color: #777777;
|
4842
4918
|
cursor: not-allowed;
|
4843
4919
|
background-color: #fff;
|
4844
4920
|
}
|
4845
4921
|
.label {
|
4846
4922
|
display: inline;
|
4847
|
-
padding: .2em .6em .3em;
|
4923
|
+
padding: 0.2em 0.6em 0.3em;
|
4848
4924
|
font-size: 75%;
|
4849
|
-
font-weight:
|
4925
|
+
font-weight: 700;
|
4850
4926
|
line-height: 1;
|
4851
4927
|
color: #fff;
|
4852
4928
|
text-align: center;
|
4853
4929
|
white-space: nowrap;
|
4854
4930
|
vertical-align: baseline;
|
4855
|
-
border-radius: .25em;
|
4931
|
+
border-radius: 0.25em;
|
4856
4932
|
}
|
4857
4933
|
a.label:hover,
|
4858
4934
|
a.label:focus {
|
@@ -4868,7 +4944,7 @@ a.label:focus {
|
|
4868
4944
|
top: -1px;
|
4869
4945
|
}
|
4870
4946
|
.label-default {
|
4871
|
-
background-color: #
|
4947
|
+
background-color: #777777;
|
4872
4948
|
}
|
4873
4949
|
.label-default[href]:hover,
|
4874
4950
|
.label-default[href]:focus {
|
@@ -4920,7 +4996,7 @@ a.label:focus {
|
|
4920
4996
|
text-align: center;
|
4921
4997
|
white-space: nowrap;
|
4922
4998
|
vertical-align: middle;
|
4923
|
-
background-color: #
|
4999
|
+
background-color: #777777;
|
4924
5000
|
border-radius: 10px;
|
4925
5001
|
}
|
4926
5002
|
.badge:empty {
|
@@ -4960,7 +5036,7 @@ a.badge:focus {
|
|
4960
5036
|
padding-bottom: 30px;
|
4961
5037
|
margin-bottom: 30px;
|
4962
5038
|
color: inherit;
|
4963
|
-
background-color: #
|
5039
|
+
background-color: #eeeeee;
|
4964
5040
|
}
|
4965
5041
|
.jumbotron h1,
|
4966
5042
|
.jumbotron .h1 {
|
@@ -5006,9 +5082,9 @@ a.badge:focus {
|
|
5006
5082
|
background-color: #fff;
|
5007
5083
|
border: 1px solid #ddd;
|
5008
5084
|
border-radius: 4px;
|
5009
|
-
-webkit-transition: border .2s ease-in-out;
|
5010
|
-
|
5011
|
-
|
5085
|
+
-webkit-transition: border 0.2s ease-in-out;
|
5086
|
+
-o-transition: border 0.2s ease-in-out;
|
5087
|
+
transition: border 0.2s ease-in-out;
|
5012
5088
|
}
|
5013
5089
|
.thumbnail > img,
|
5014
5090
|
.thumbnail a > img {
|
@@ -5022,7 +5098,7 @@ a.thumbnail.active {
|
|
5022
5098
|
}
|
5023
5099
|
.thumbnail .caption {
|
5024
5100
|
padding: 9px;
|
5025
|
-
color: #
|
5101
|
+
color: #333333;
|
5026
5102
|
}
|
5027
5103
|
.alert {
|
5028
5104
|
padding: 15px;
|
@@ -5129,69 +5205,69 @@ a.thumbnail.active {
|
|
5129
5205
|
overflow: hidden;
|
5130
5206
|
background-color: #f5f5f5;
|
5131
5207
|
border-radius: 4px;
|
5132
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5133
|
-
|
5208
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5209
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5134
5210
|
}
|
5135
5211
|
.progress-bar {
|
5136
5212
|
float: left;
|
5137
|
-
width: 0
|
5213
|
+
width: 0%;
|
5138
5214
|
height: 100%;
|
5139
5215
|
font-size: 12px;
|
5140
5216
|
line-height: 20px;
|
5141
5217
|
color: #fff;
|
5142
5218
|
text-align: center;
|
5143
5219
|
background-color: #337ab7;
|
5144
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5145
|
-
|
5146
|
-
-webkit-transition: width .6s ease;
|
5147
|
-
|
5148
|
-
|
5220
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5221
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5222
|
+
-webkit-transition: width 0.6s ease;
|
5223
|
+
-o-transition: width 0.6s ease;
|
5224
|
+
transition: width 0.6s ease;
|
5149
5225
|
}
|
5150
5226
|
.progress-striped .progress-bar,
|
5151
5227
|
.progress-bar-striped {
|
5152
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5153
|
-
background-image:
|
5154
|
-
background-image:
|
5228
|
+
background-image: -webkit-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);
|
5229
|
+
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);
|
5230
|
+
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);
|
5155
5231
|
-webkit-background-size: 40px 40px;
|
5156
|
-
|
5232
|
+
background-size: 40px 40px;
|
5157
5233
|
}
|
5158
5234
|
.progress.active .progress-bar,
|
5159
5235
|
.progress-bar.active {
|
5160
5236
|
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
5161
|
-
|
5162
|
-
|
5237
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
5238
|
+
animation: progress-bar-stripes 2s linear infinite;
|
5163
5239
|
}
|
5164
5240
|
.progress-bar-success {
|
5165
5241
|
background-color: #5cb85c;
|
5166
5242
|
}
|
5167
5243
|
.progress-striped .progress-bar-success {
|
5168
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5169
|
-
background-image:
|
5170
|
-
background-image:
|
5244
|
+
background-image: -webkit-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);
|
5245
|
+
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);
|
5246
|
+
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);
|
5171
5247
|
}
|
5172
5248
|
.progress-bar-info {
|
5173
5249
|
background-color: #5bc0de;
|
5174
5250
|
}
|
5175
5251
|
.progress-striped .progress-bar-info {
|
5176
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5177
|
-
background-image:
|
5178
|
-
background-image:
|
5252
|
+
background-image: -webkit-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);
|
5253
|
+
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);
|
5254
|
+
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);
|
5179
5255
|
}
|
5180
5256
|
.progress-bar-warning {
|
5181
5257
|
background-color: #f0ad4e;
|
5182
5258
|
}
|
5183
5259
|
.progress-striped .progress-bar-warning {
|
5184
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5185
|
-
background-image:
|
5186
|
-
background-image:
|
5260
|
+
background-image: -webkit-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);
|
5261
|
+
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);
|
5262
|
+
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);
|
5187
5263
|
}
|
5188
5264
|
.progress-bar-danger {
|
5189
5265
|
background-color: #d9534f;
|
5190
5266
|
}
|
5191
5267
|
.progress-striped .progress-bar-danger {
|
5192
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5193
|
-
background-image:
|
5194
|
-
background-image:
|
5268
|
+
background-image: -webkit-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);
|
5269
|
+
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);
|
5270
|
+
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);
|
5195
5271
|
}
|
5196
5272
|
.media {
|
5197
5273
|
margin-top: 15px;
|
@@ -5262,32 +5338,12 @@ a.thumbnail.active {
|
|
5262
5338
|
border-bottom-right-radius: 4px;
|
5263
5339
|
border-bottom-left-radius: 4px;
|
5264
5340
|
}
|
5265
|
-
a.list-group-item,
|
5266
|
-
button.list-group-item {
|
5267
|
-
color: #555;
|
5268
|
-
}
|
5269
|
-
a.list-group-item .list-group-item-heading,
|
5270
|
-
button.list-group-item .list-group-item-heading {
|
5271
|
-
color: #333;
|
5272
|
-
}
|
5273
|
-
a.list-group-item:hover,
|
5274
|
-
button.list-group-item:hover,
|
5275
|
-
a.list-group-item:focus,
|
5276
|
-
button.list-group-item:focus {
|
5277
|
-
color: #555;
|
5278
|
-
text-decoration: none;
|
5279
|
-
background-color: #f5f5f5;
|
5280
|
-
}
|
5281
|
-
button.list-group-item {
|
5282
|
-
width: 100%;
|
5283
|
-
text-align: left;
|
5284
|
-
}
|
5285
5341
|
.list-group-item.disabled,
|
5286
5342
|
.list-group-item.disabled:hover,
|
5287
5343
|
.list-group-item.disabled:focus {
|
5288
|
-
color: #
|
5344
|
+
color: #777777;
|
5289
5345
|
cursor: not-allowed;
|
5290
|
-
background-color: #
|
5346
|
+
background-color: #eeeeee;
|
5291
5347
|
}
|
5292
5348
|
.list-group-item.disabled .list-group-item-heading,
|
5293
5349
|
.list-group-item.disabled:hover .list-group-item-heading,
|
@@ -5297,7 +5353,7 @@ button.list-group-item {
|
|
5297
5353
|
.list-group-item.disabled .list-group-item-text,
|
5298
5354
|
.list-group-item.disabled:hover .list-group-item-text,
|
5299
5355
|
.list-group-item.disabled:focus .list-group-item-text {
|
5300
|
-
color: #
|
5356
|
+
color: #777777;
|
5301
5357
|
}
|
5302
5358
|
.list-group-item.active,
|
5303
5359
|
.list-group-item.active:hover,
|
@@ -5323,6 +5379,26 @@ button.list-group-item {
|
|
5323
5379
|
.list-group-item.active:focus .list-group-item-text {
|
5324
5380
|
color: #c7ddef;
|
5325
5381
|
}
|
5382
|
+
a.list-group-item,
|
5383
|
+
button.list-group-item {
|
5384
|
+
color: #555;
|
5385
|
+
}
|
5386
|
+
a.list-group-item .list-group-item-heading,
|
5387
|
+
button.list-group-item .list-group-item-heading {
|
5388
|
+
color: #333;
|
5389
|
+
}
|
5390
|
+
a.list-group-item:hover,
|
5391
|
+
button.list-group-item:hover,
|
5392
|
+
a.list-group-item:focus,
|
5393
|
+
button.list-group-item:focus {
|
5394
|
+
color: #555;
|
5395
|
+
text-decoration: none;
|
5396
|
+
background-color: #f5f5f5;
|
5397
|
+
}
|
5398
|
+
button.list-group-item {
|
5399
|
+
width: 100%;
|
5400
|
+
text-align: left;
|
5401
|
+
}
|
5326
5402
|
.list-group-item-success {
|
5327
5403
|
color: #3c763d;
|
5328
5404
|
background-color: #dff0d8;
|
@@ -5452,8 +5528,8 @@ button.list-group-item-danger.active:focus {
|
|
5452
5528
|
background-color: #fff;
|
5453
5529
|
border: 1px solid transparent;
|
5454
5530
|
border-radius: 4px;
|
5455
|
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5456
|
-
|
5531
|
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5532
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5457
5533
|
}
|
5458
5534
|
.panel-body {
|
5459
5535
|
padding: 15px;
|
@@ -5686,7 +5762,7 @@ button.list-group-item-danger.active:focus {
|
|
5686
5762
|
border-color: #ddd;
|
5687
5763
|
}
|
5688
5764
|
.panel-default > .panel-heading {
|
5689
|
-
color: #
|
5765
|
+
color: #333333;
|
5690
5766
|
background-color: #f5f5f5;
|
5691
5767
|
border-color: #ddd;
|
5692
5768
|
}
|
@@ -5695,7 +5771,7 @@ button.list-group-item-danger.active:focus {
|
|
5695
5771
|
}
|
5696
5772
|
.panel-default > .panel-heading .badge {
|
5697
5773
|
color: #f5f5f5;
|
5698
|
-
background-color: #
|
5774
|
+
background-color: #333333;
|
5699
5775
|
}
|
5700
5776
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
5701
5777
|
border-bottom-color: #ddd;
|
@@ -5823,12 +5899,12 @@ button.list-group-item-danger.active:focus {
|
|
5823
5899
|
background-color: #f5f5f5;
|
5824
5900
|
border: 1px solid #e3e3e3;
|
5825
5901
|
border-radius: 4px;
|
5826
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5827
|
-
|
5902
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
5903
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
5828
5904
|
}
|
5829
5905
|
.well blockquote {
|
5830
5906
|
border-color: #ddd;
|
5831
|
-
border-color: rgba(0, 0, 0, .15);
|
5907
|
+
border-color: rgba(0, 0, 0, 0.15);
|
5832
5908
|
}
|
5833
5909
|
.well-lg {
|
5834
5910
|
padding: 24px;
|
@@ -5846,7 +5922,7 @@ button.list-group-item-danger.active:focus {
|
|
5846
5922
|
color: #000;
|
5847
5923
|
text-shadow: 0 1px 0 #fff;
|
5848
5924
|
filter: alpha(opacity=20);
|
5849
|
-
opacity: .2;
|
5925
|
+
opacity: 0.2;
|
5850
5926
|
}
|
5851
5927
|
.close:hover,
|
5852
5928
|
.close:focus {
|
@@ -5854,14 +5930,16 @@ button.list-group-item-danger.active:focus {
|
|
5854
5930
|
text-decoration: none;
|
5855
5931
|
cursor: pointer;
|
5856
5932
|
filter: alpha(opacity=50);
|
5857
|
-
opacity: .5;
|
5933
|
+
opacity: 0.5;
|
5858
5934
|
}
|
5859
5935
|
button.close {
|
5860
|
-
-webkit-appearance: none;
|
5861
5936
|
padding: 0;
|
5862
5937
|
cursor: pointer;
|
5863
5938
|
background: transparent;
|
5864
5939
|
border: 0;
|
5940
|
+
-webkit-appearance: none;
|
5941
|
+
-moz-appearance: none;
|
5942
|
+
appearance: none;
|
5865
5943
|
}
|
5866
5944
|
.modal-open {
|
5867
5945
|
overflow: hidden;
|
@@ -5879,19 +5957,21 @@ button.close {
|
|
5879
5957
|
outline: 0;
|
5880
5958
|
}
|
5881
5959
|
.modal.fade .modal-dialog {
|
5882
|
-
-webkit-transition: -webkit-transform .3s ease-out;
|
5883
|
-
-o-transition: -o-transform .3s ease-out;
|
5884
|
-
transition: transform .3s ease-out;
|
5885
5960
|
-webkit-transform: translate(0, -25%);
|
5886
|
-
|
5887
|
-
|
5888
|
-
|
5961
|
+
-ms-transform: translate(0, -25%);
|
5962
|
+
-o-transform: translate(0, -25%);
|
5963
|
+
transform: translate(0, -25%);
|
5964
|
+
-webkit-transition: -webkit-transform 0.3s ease-out;
|
5965
|
+
-o-transition: -o-transform 0.3s ease-out;
|
5966
|
+
transition: -webkit-transform 0.3s ease-out;
|
5967
|
+
transition: transform 0.3s ease-out;
|
5968
|
+
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
|
5889
5969
|
}
|
5890
5970
|
.modal.in .modal-dialog {
|
5891
5971
|
-webkit-transform: translate(0, 0);
|
5892
|
-
|
5893
|
-
|
5894
|
-
|
5972
|
+
-ms-transform: translate(0, 0);
|
5973
|
+
-o-transform: translate(0, 0);
|
5974
|
+
transform: translate(0, 0);
|
5895
5975
|
}
|
5896
5976
|
.modal-open .modal {
|
5897
5977
|
overflow-x: hidden;
|
@@ -5905,14 +5985,13 @@ button.close {
|
|
5905
5985
|
.modal-content {
|
5906
5986
|
position: relative;
|
5907
5987
|
background-color: #fff;
|
5908
|
-
|
5909
|
-
background-clip: padding-box;
|
5988
|
+
background-clip: padding-box;
|
5910
5989
|
border: 1px solid #999;
|
5911
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
5990
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
5912
5991
|
border-radius: 6px;
|
5992
|
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5993
|
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5913
5994
|
outline: 0;
|
5914
|
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5915
|
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5916
5995
|
}
|
5917
5996
|
.modal-backdrop {
|
5918
5997
|
position: fixed;
|
@@ -5929,7 +6008,7 @@ button.close {
|
|
5929
6008
|
}
|
5930
6009
|
.modal-backdrop.in {
|
5931
6010
|
filter: alpha(opacity=50);
|
5932
|
-
opacity: .5;
|
6011
|
+
opacity: 0.5;
|
5933
6012
|
}
|
5934
6013
|
.modal-header {
|
5935
6014
|
padding: 15px;
|
@@ -5974,8 +6053,8 @@ button.close {
|
|
5974
6053
|
margin: 30px auto;
|
5975
6054
|
}
|
5976
6055
|
.modal-content {
|
5977
|
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5978
|
-
|
6056
|
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
6057
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
5979
6058
|
}
|
5980
6059
|
.modal-sm {
|
5981
6060
|
width: 300px;
|
@@ -5991,10 +6070,10 @@ button.close {
|
|
5991
6070
|
z-index: 1070;
|
5992
6071
|
display: block;
|
5993
6072
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5994
|
-
font-size: 12px;
|
5995
6073
|
font-style: normal;
|
5996
|
-
font-weight:
|
6074
|
+
font-weight: 400;
|
5997
6075
|
line-height: 1.42857143;
|
6076
|
+
line-break: auto;
|
5998
6077
|
text-align: left;
|
5999
6078
|
text-align: start;
|
6000
6079
|
text-decoration: none;
|
@@ -6005,14 +6084,13 @@ button.close {
|
|
6005
6084
|
word-spacing: normal;
|
6006
6085
|
word-wrap: normal;
|
6007
6086
|
white-space: normal;
|
6087
|
+
font-size: 12px;
|
6008
6088
|
filter: alpha(opacity=0);
|
6009
6089
|
opacity: 0;
|
6010
|
-
|
6011
|
-
line-break: auto;
|
6012
6090
|
}
|
6013
6091
|
.tooltip.in {
|
6014
6092
|
filter: alpha(opacity=90);
|
6015
|
-
opacity: .9;
|
6093
|
+
opacity: 0.9;
|
6016
6094
|
}
|
6017
6095
|
.tooltip.top {
|
6018
6096
|
padding: 5px 0;
|
@@ -6030,21 +6108,6 @@ button.close {
|
|
6030
6108
|
padding: 0 5px;
|
6031
6109
|
margin-left: -3px;
|
6032
6110
|
}
|
6033
|
-
.tooltip-inner {
|
6034
|
-
max-width: 200px;
|
6035
|
-
padding: 3px 8px;
|
6036
|
-
color: #fff;
|
6037
|
-
text-align: center;
|
6038
|
-
background-color: #000;
|
6039
|
-
border-radius: 4px;
|
6040
|
-
}
|
6041
|
-
.tooltip-arrow {
|
6042
|
-
position: absolute;
|
6043
|
-
width: 0;
|
6044
|
-
height: 0;
|
6045
|
-
border-color: transparent;
|
6046
|
-
border-style: solid;
|
6047
|
-
}
|
6048
6111
|
.tooltip.top .tooltip-arrow {
|
6049
6112
|
bottom: 0;
|
6050
6113
|
left: 50%;
|
@@ -6101,6 +6164,21 @@ button.close {
|
|
6101
6164
|
border-width: 0 5px 5px;
|
6102
6165
|
border-bottom-color: #000;
|
6103
6166
|
}
|
6167
|
+
.tooltip-inner {
|
6168
|
+
max-width: 200px;
|
6169
|
+
padding: 3px 8px;
|
6170
|
+
color: #fff;
|
6171
|
+
text-align: center;
|
6172
|
+
background-color: #000;
|
6173
|
+
border-radius: 4px;
|
6174
|
+
}
|
6175
|
+
.tooltip-arrow {
|
6176
|
+
position: absolute;
|
6177
|
+
width: 0;
|
6178
|
+
height: 0;
|
6179
|
+
border-color: transparent;
|
6180
|
+
border-style: solid;
|
6181
|
+
}
|
6104
6182
|
.popover {
|
6105
6183
|
position: absolute;
|
6106
6184
|
top: 0;
|
@@ -6110,10 +6188,10 @@ button.close {
|
|
6110
6188
|
max-width: 276px;
|
6111
6189
|
padding: 1px;
|
6112
6190
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6113
|
-
font-size: 14px;
|
6114
6191
|
font-style: normal;
|
6115
|
-
font-weight:
|
6192
|
+
font-weight: 400;
|
6116
6193
|
line-height: 1.42857143;
|
6194
|
+
line-break: auto;
|
6117
6195
|
text-align: left;
|
6118
6196
|
text-align: start;
|
6119
6197
|
text-decoration: none;
|
@@ -6124,16 +6202,14 @@ button.close {
|
|
6124
6202
|
word-spacing: normal;
|
6125
6203
|
word-wrap: normal;
|
6126
6204
|
white-space: normal;
|
6205
|
+
font-size: 14px;
|
6127
6206
|
background-color: #fff;
|
6128
|
-
|
6129
|
-
background-clip: padding-box;
|
6207
|
+
background-clip: padding-box;
|
6130
6208
|
border: 1px solid #ccc;
|
6131
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
6209
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
6132
6210
|
border-radius: 6px;
|
6133
|
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6134
|
-
|
6135
|
-
|
6136
|
-
line-break: auto;
|
6211
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6212
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6137
6213
|
}
|
6138
6214
|
.popover.top {
|
6139
6215
|
margin-top: -10px;
|
@@ -6147,16 +6223,8 @@ button.close {
|
|
6147
6223
|
.popover.left {
|
6148
6224
|
margin-left: -10px;
|
6149
6225
|
}
|
6150
|
-
.popover
|
6151
|
-
|
6152
|
-
margin: 0;
|
6153
|
-
font-size: 14px;
|
6154
|
-
background-color: #f7f7f7;
|
6155
|
-
border-bottom: 1px solid #ebebeb;
|
6156
|
-
border-radius: 5px 5px 0 0;
|
6157
|
-
}
|
6158
|
-
.popover-content {
|
6159
|
-
padding: 9px 14px;
|
6226
|
+
.popover > .arrow {
|
6227
|
+
border-width: 11px;
|
6160
6228
|
}
|
6161
6229
|
.popover > .arrow,
|
6162
6230
|
.popover > .arrow:after {
|
@@ -6167,9 +6235,6 @@ button.close {
|
|
6167
6235
|
border-color: transparent;
|
6168
6236
|
border-style: solid;
|
6169
6237
|
}
|
6170
|
-
.popover > .arrow {
|
6171
|
-
border-width: 11px;
|
6172
|
-
}
|
6173
6238
|
.popover > .arrow:after {
|
6174
6239
|
content: "";
|
6175
6240
|
border-width: 10px;
|
@@ -6178,8 +6243,8 @@ button.close {
|
|
6178
6243
|
bottom: -11px;
|
6179
6244
|
left: 50%;
|
6180
6245
|
margin-left: -11px;
|
6181
|
-
border-top-color: #
|
6182
|
-
border-top-color: rgba(0, 0, 0, .25);
|
6246
|
+
border-top-color: #999999;
|
6247
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
6183
6248
|
border-bottom-width: 0;
|
6184
6249
|
}
|
6185
6250
|
.popover.top > .arrow:after {
|
@@ -6193,8 +6258,8 @@ button.close {
|
|
6193
6258
|
top: 50%;
|
6194
6259
|
left: -11px;
|
6195
6260
|
margin-top: -11px;
|
6196
|
-
border-right-color: #
|
6197
|
-
border-right-color: rgba(0, 0, 0, .25);
|
6261
|
+
border-right-color: #999999;
|
6262
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
6198
6263
|
border-left-width: 0;
|
6199
6264
|
}
|
6200
6265
|
.popover.right > .arrow:after {
|
@@ -6209,8 +6274,8 @@ button.close {
|
|
6209
6274
|
left: 50%;
|
6210
6275
|
margin-left: -11px;
|
6211
6276
|
border-top-width: 0;
|
6212
|
-
border-bottom-color: #
|
6213
|
-
border-bottom-color: rgba(0, 0, 0, .25);
|
6277
|
+
border-bottom-color: #999999;
|
6278
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
6214
6279
|
}
|
6215
6280
|
.popover.bottom > .arrow:after {
|
6216
6281
|
top: 1px;
|
@@ -6224,8 +6289,8 @@ button.close {
|
|
6224
6289
|
right: -11px;
|
6225
6290
|
margin-top: -11px;
|
6226
6291
|
border-right-width: 0;
|
6227
|
-
border-left-color: #
|
6228
|
-
border-left-color: rgba(0, 0, 0, .25);
|
6292
|
+
border-left-color: #999999;
|
6293
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
6229
6294
|
}
|
6230
6295
|
.popover.left > .arrow:after {
|
6231
6296
|
right: 1px;
|
@@ -6234,6 +6299,17 @@ button.close {
|
|
6234
6299
|
border-right-width: 0;
|
6235
6300
|
border-left-color: #fff;
|
6236
6301
|
}
|
6302
|
+
.popover-title {
|
6303
|
+
padding: 8px 14px;
|
6304
|
+
margin: 0;
|
6305
|
+
font-size: 14px;
|
6306
|
+
background-color: #f7f7f7;
|
6307
|
+
border-bottom: 1px solid #ebebeb;
|
6308
|
+
border-radius: 5px 5px 0 0;
|
6309
|
+
}
|
6310
|
+
.popover-content {
|
6311
|
+
padding: 9px 14px;
|
6312
|
+
}
|
6237
6313
|
.carousel {
|
6238
6314
|
position: relative;
|
6239
6315
|
}
|
@@ -6245,9 +6321,9 @@ button.close {
|
|
6245
6321
|
.carousel-inner > .item {
|
6246
6322
|
position: relative;
|
6247
6323
|
display: none;
|
6248
|
-
-webkit-transition: .6s ease-in-out left;
|
6249
|
-
|
6250
|
-
|
6324
|
+
-webkit-transition: 0.6s ease-in-out left;
|
6325
|
+
-o-transition: 0.6s ease-in-out left;
|
6326
|
+
transition: 0.6s ease-in-out left;
|
6251
6327
|
}
|
6252
6328
|
.carousel-inner > .item > img,
|
6253
6329
|
.carousel-inner > .item > a > img {
|
@@ -6255,33 +6331,34 @@ button.close {
|
|
6255
6331
|
}
|
6256
6332
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
6257
6333
|
.carousel-inner > .item {
|
6258
|
-
-webkit-transition: -webkit-transform .6s ease-in-out;
|
6259
|
-
|
6260
|
-
|
6261
|
-
|
6334
|
+
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
6335
|
+
-o-transition: -o-transform 0.6s ease-in-out;
|
6336
|
+
transition: -webkit-transform 0.6s ease-in-out;
|
6337
|
+
transition: transform 0.6s ease-in-out;
|
6338
|
+
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
|
6262
6339
|
-webkit-backface-visibility: hidden;
|
6263
|
-
|
6340
|
+
backface-visibility: hidden;
|
6264
6341
|
-webkit-perspective: 1000px;
|
6265
|
-
|
6342
|
+
perspective: 1000px;
|
6266
6343
|
}
|
6267
6344
|
.carousel-inner > .item.next,
|
6268
6345
|
.carousel-inner > .item.active.right {
|
6269
|
-
left: 0;
|
6270
6346
|
-webkit-transform: translate3d(100%, 0, 0);
|
6271
|
-
|
6347
|
+
transform: translate3d(100%, 0, 0);
|
6348
|
+
left: 0;
|
6272
6349
|
}
|
6273
6350
|
.carousel-inner > .item.prev,
|
6274
6351
|
.carousel-inner > .item.active.left {
|
6275
|
-
left: 0;
|
6276
6352
|
-webkit-transform: translate3d(-100%, 0, 0);
|
6277
|
-
|
6353
|
+
transform: translate3d(-100%, 0, 0);
|
6354
|
+
left: 0;
|
6278
6355
|
}
|
6279
6356
|
.carousel-inner > .item.next.left,
|
6280
6357
|
.carousel-inner > .item.prev.right,
|
6281
6358
|
.carousel-inner > .item.active {
|
6282
|
-
left: 0;
|
6283
6359
|
-webkit-transform: translate3d(0, 0, 0);
|
6284
|
-
|
6360
|
+
transform: translate3d(0, 0, 0);
|
6361
|
+
left: 0;
|
6285
6362
|
}
|
6286
6363
|
}
|
6287
6364
|
.carousel-inner > .active,
|
@@ -6323,26 +6400,26 @@ button.close {
|
|
6323
6400
|
font-size: 20px;
|
6324
6401
|
color: #fff;
|
6325
6402
|
text-align: center;
|
6326
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6403
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6327
6404
|
background-color: rgba(0, 0, 0, 0);
|
6328
6405
|
filter: alpha(opacity=50);
|
6329
|
-
opacity: .5;
|
6406
|
+
opacity: 0.5;
|
6330
6407
|
}
|
6331
6408
|
.carousel-control.left {
|
6332
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6333
|
-
background-image:
|
6334
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
6335
|
-
background-image:
|
6409
|
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6410
|
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6411
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
6412
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6336
6413
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
6337
6414
|
background-repeat: repeat-x;
|
6338
6415
|
}
|
6339
6416
|
.carousel-control.right {
|
6340
6417
|
right: 0;
|
6341
6418
|
left: auto;
|
6342
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6343
|
-
background-image:
|
6344
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
6345
|
-
background-image:
|
6419
|
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6420
|
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6421
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
6422
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6346
6423
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
6347
6424
|
background-repeat: repeat-x;
|
6348
6425
|
}
|
@@ -6350,9 +6427,9 @@ button.close {
|
|
6350
6427
|
.carousel-control:focus {
|
6351
6428
|
color: #fff;
|
6352
6429
|
text-decoration: none;
|
6353
|
-
filter: alpha(opacity=90);
|
6354
6430
|
outline: 0;
|
6355
|
-
|
6431
|
+
filter: alpha(opacity=90);
|
6432
|
+
opacity: 0.9;
|
6356
6433
|
}
|
6357
6434
|
.carousel-control .icon-prev,
|
6358
6435
|
.carousel-control .icon-next,
|
@@ -6382,10 +6459,10 @@ button.close {
|
|
6382
6459
|
line-height: 1;
|
6383
6460
|
}
|
6384
6461
|
.carousel-control .icon-prev:before {
|
6385
|
-
content:
|
6462
|
+
content: "\2039";
|
6386
6463
|
}
|
6387
6464
|
.carousel-control .icon-next:before {
|
6388
|
-
content:
|
6465
|
+
content: "\203a";
|
6389
6466
|
}
|
6390
6467
|
.carousel-indicators {
|
6391
6468
|
position: absolute;
|
@@ -6426,7 +6503,7 @@ button.close {
|
|
6426
6503
|
padding-bottom: 20px;
|
6427
6504
|
color: #fff;
|
6428
6505
|
text-align: center;
|
6429
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6506
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6430
6507
|
}
|
6431
6508
|
.carousel-caption .btn {
|
6432
6509
|
text-shadow: none;
|
@@ -6754,3 +6831,4 @@ button.close {
|
|
6754
6831
|
display: none !important;
|
6755
6832
|
}
|
6756
6833
|
}
|
6834
|
+
/*# sourceMappingURL=bootstrap.css.map */
|