jekyll-roadmap 0.4.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Docs/README.md +204 -0
- data/_includes/footer.html +1 -1
- data/_includes/head.html +4 -11
- data/_layouts/default.html +1 -1
- data/assets/css/bootstrap.css +823 -573
- data/assets/js/bootstrap.js +441 -178
- data/assets/js/bootstrap.min.js +4 -5
- data/assets/js/jquery.js +2 -4
- metadata +16 -17
- data/README.md +0 -52
data/assets/css/bootstrap.css
CHANGED
|
@@ -1,14 +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
|
-
|
|
7
|
-
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
|
6
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
|
8
7
|
html {
|
|
9
8
|
font-family: sans-serif;
|
|
9
|
+
-ms-text-size-adjust: 100%;
|
|
10
10
|
-webkit-text-size-adjust: 100%;
|
|
11
|
-
-ms-text-size-adjust: 100%;
|
|
12
11
|
}
|
|
13
12
|
body {
|
|
14
13
|
margin: 0;
|
|
@@ -51,7 +50,11 @@ a:hover {
|
|
|
51
50
|
outline: 0;
|
|
52
51
|
}
|
|
53
52
|
abbr[title] {
|
|
54
|
-
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;
|
|
55
58
|
}
|
|
56
59
|
b,
|
|
57
60
|
strong {
|
|
@@ -61,28 +64,28 @@ dfn {
|
|
|
61
64
|
font-style: italic;
|
|
62
65
|
}
|
|
63
66
|
h1 {
|
|
64
|
-
margin: .67em 0;
|
|
65
67
|
font-size: 2em;
|
|
68
|
+
margin: 0.67em 0;
|
|
66
69
|
}
|
|
67
70
|
mark {
|
|
68
|
-
color: #000;
|
|
69
71
|
background: #ff0;
|
|
72
|
+
color: #000;
|
|
70
73
|
}
|
|
71
74
|
small {
|
|
72
75
|
font-size: 80%;
|
|
73
76
|
}
|
|
74
77
|
sub,
|
|
75
78
|
sup {
|
|
76
|
-
position: relative;
|
|
77
79
|
font-size: 75%;
|
|
78
80
|
line-height: 0;
|
|
81
|
+
position: relative;
|
|
79
82
|
vertical-align: baseline;
|
|
80
83
|
}
|
|
81
84
|
sup {
|
|
82
|
-
top:
|
|
85
|
+
top: -0.5em;
|
|
83
86
|
}
|
|
84
87
|
sub {
|
|
85
|
-
bottom:
|
|
88
|
+
bottom: -0.25em;
|
|
86
89
|
}
|
|
87
90
|
img {
|
|
88
91
|
border: 0;
|
|
@@ -94,10 +97,10 @@ figure {
|
|
|
94
97
|
margin: 1em 40px;
|
|
95
98
|
}
|
|
96
99
|
hr {
|
|
97
|
-
height: 0;
|
|
98
100
|
-webkit-box-sizing: content-box;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
+
-moz-box-sizing: content-box;
|
|
102
|
+
box-sizing: content-box;
|
|
103
|
+
height: 0;
|
|
101
104
|
}
|
|
102
105
|
pre {
|
|
103
106
|
overflow: auto;
|
|
@@ -114,9 +117,9 @@ input,
|
|
|
114
117
|
optgroup,
|
|
115
118
|
select,
|
|
116
119
|
textarea {
|
|
117
|
-
margin: 0;
|
|
118
|
-
font: inherit;
|
|
119
120
|
color: inherit;
|
|
121
|
+
font: inherit;
|
|
122
|
+
margin: 0;
|
|
120
123
|
}
|
|
121
124
|
button {
|
|
122
125
|
overflow: visible;
|
|
@@ -138,8 +141,8 @@ html input[disabled] {
|
|
|
138
141
|
}
|
|
139
142
|
button::-moz-focus-inner,
|
|
140
143
|
input::-moz-focus-inner {
|
|
141
|
-
padding: 0;
|
|
142
144
|
border: 0;
|
|
145
|
+
padding: 0;
|
|
143
146
|
}
|
|
144
147
|
input {
|
|
145
148
|
line-height: normal;
|
|
@@ -147,8 +150,8 @@ input {
|
|
|
147
150
|
input[type="checkbox"],
|
|
148
151
|
input[type="radio"] {
|
|
149
152
|
-webkit-box-sizing: border-box;
|
|
150
|
-
|
|
151
|
-
|
|
153
|
+
-moz-box-sizing: border-box;
|
|
154
|
+
box-sizing: border-box;
|
|
152
155
|
padding: 0;
|
|
153
156
|
}
|
|
154
157
|
input[type="number"]::-webkit-inner-spin-button,
|
|
@@ -156,23 +159,23 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
|
156
159
|
height: auto;
|
|
157
160
|
}
|
|
158
161
|
input[type="search"] {
|
|
159
|
-
-webkit-box-sizing: content-box;
|
|
160
|
-
-moz-box-sizing: content-box;
|
|
161
|
-
box-sizing: content-box;
|
|
162
162
|
-webkit-appearance: textfield;
|
|
163
|
+
-webkit-box-sizing: content-box;
|
|
164
|
+
-moz-box-sizing: content-box;
|
|
165
|
+
box-sizing: content-box;
|
|
163
166
|
}
|
|
164
167
|
input[type="search"]::-webkit-search-cancel-button,
|
|
165
168
|
input[type="search"]::-webkit-search-decoration {
|
|
166
169
|
-webkit-appearance: none;
|
|
167
170
|
}
|
|
168
171
|
fieldset {
|
|
169
|
-
padding: .35em .625em .75em;
|
|
170
|
-
margin: 0 2px;
|
|
171
172
|
border: 1px solid #c0c0c0;
|
|
173
|
+
margin: 0 2px;
|
|
174
|
+
padding: 0.35em 0.625em 0.75em;
|
|
172
175
|
}
|
|
173
176
|
legend {
|
|
174
|
-
padding: 0;
|
|
175
177
|
border: 0;
|
|
178
|
+
padding: 0;
|
|
176
179
|
}
|
|
177
180
|
textarea {
|
|
178
181
|
overflow: auto;
|
|
@@ -181,8 +184,8 @@ optgroup {
|
|
|
181
184
|
font-weight: bold;
|
|
182
185
|
}
|
|
183
186
|
table {
|
|
184
|
-
border-spacing: 0;
|
|
185
187
|
border-collapse: collapse;
|
|
188
|
+
border-spacing: 0;
|
|
186
189
|
}
|
|
187
190
|
td,
|
|
188
191
|
th {
|
|
@@ -197,7 +200,7 @@ th {
|
|
|
197
200
|
text-shadow: none !important;
|
|
198
201
|
background: transparent !important;
|
|
199
202
|
-webkit-box-shadow: none !important;
|
|
200
|
-
|
|
203
|
+
box-shadow: none !important;
|
|
201
204
|
}
|
|
202
205
|
a,
|
|
203
206
|
a:visited {
|
|
@@ -216,7 +219,6 @@ th {
|
|
|
216
219
|
pre,
|
|
217
220
|
blockquote {
|
|
218
221
|
border: 1px solid #999;
|
|
219
|
-
|
|
220
222
|
page-break-inside: avoid;
|
|
221
223
|
}
|
|
222
224
|
thead {
|
|
@@ -239,9 +241,6 @@ th {
|
|
|
239
241
|
h3 {
|
|
240
242
|
page-break-after: avoid;
|
|
241
243
|
}
|
|
242
|
-
select {
|
|
243
|
-
background: #fff !important;
|
|
244
|
-
}
|
|
245
244
|
.navbar {
|
|
246
245
|
display: none;
|
|
247
246
|
}
|
|
@@ -265,28 +264,26 @@ th {
|
|
|
265
264
|
}
|
|
266
265
|
}
|
|
267
266
|
@font-face {
|
|
268
|
-
font-family:
|
|
269
|
-
|
|
270
|
-
src: url(
|
|
271
|
-
src: url('../assets/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../assets/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../assets/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../assets/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
|
267
|
+
font-family: "Glyphicons Halflings";
|
|
268
|
+
src: url("../fonts/glyphicons-halflings-regular.eot");
|
|
269
|
+
src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
|
|
272
270
|
}
|
|
273
271
|
.glyphicon {
|
|
274
272
|
position: relative;
|
|
275
273
|
top: 1px;
|
|
276
274
|
display: inline-block;
|
|
277
|
-
font-family:
|
|
275
|
+
font-family: "Glyphicons Halflings";
|
|
278
276
|
font-style: normal;
|
|
279
|
-
font-weight:
|
|
277
|
+
font-weight: 400;
|
|
280
278
|
line-height: 1;
|
|
281
|
-
|
|
282
279
|
-webkit-font-smoothing: antialiased;
|
|
283
280
|
-moz-osx-font-smoothing: grayscale;
|
|
284
281
|
}
|
|
285
282
|
.glyphicon-asterisk:before {
|
|
286
|
-
content: "\
|
|
283
|
+
content: "\002a";
|
|
287
284
|
}
|
|
288
285
|
.glyphicon-plus:before {
|
|
289
|
-
content: "\
|
|
286
|
+
content: "\002b";
|
|
290
287
|
}
|
|
291
288
|
.glyphicon-euro:before,
|
|
292
289
|
.glyphicon-eur:before {
|
|
@@ -1071,25 +1068,24 @@ th {
|
|
|
1071
1068
|
}
|
|
1072
1069
|
* {
|
|
1073
1070
|
-webkit-box-sizing: border-box;
|
|
1074
|
-
|
|
1075
|
-
|
|
1071
|
+
-moz-box-sizing: border-box;
|
|
1072
|
+
box-sizing: border-box;
|
|
1076
1073
|
}
|
|
1077
1074
|
*:before,
|
|
1078
1075
|
*:after {
|
|
1079
1076
|
-webkit-box-sizing: border-box;
|
|
1080
|
-
|
|
1081
|
-
|
|
1077
|
+
-moz-box-sizing: border-box;
|
|
1078
|
+
box-sizing: border-box;
|
|
1082
1079
|
}
|
|
1083
1080
|
html {
|
|
1084
1081
|
font-size: 10px;
|
|
1085
|
-
|
|
1086
1082
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1087
1083
|
}
|
|
1088
1084
|
body {
|
|
1089
1085
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
1090
1086
|
font-size: 14px;
|
|
1091
1087
|
line-height: 1.42857143;
|
|
1092
|
-
color: #
|
|
1088
|
+
color: #333333;
|
|
1093
1089
|
background-color: #fff;
|
|
1094
1090
|
}
|
|
1095
1091
|
input,
|
|
@@ -1110,7 +1106,6 @@ a:focus {
|
|
|
1110
1106
|
text-decoration: underline;
|
|
1111
1107
|
}
|
|
1112
1108
|
a:focus {
|
|
1113
|
-
outline: thin dotted;
|
|
1114
1109
|
outline: 5px auto -webkit-focus-ring-color;
|
|
1115
1110
|
outline-offset: -2px;
|
|
1116
1111
|
}
|
|
@@ -1133,17 +1128,17 @@ img {
|
|
|
1133
1128
|
border-radius: 6px;
|
|
1134
1129
|
}
|
|
1135
1130
|
.img-thumbnail {
|
|
1136
|
-
display: inline-block;
|
|
1137
|
-
max-width: 100%;
|
|
1138
|
-
height: auto;
|
|
1139
1131
|
padding: 4px;
|
|
1140
1132
|
line-height: 1.42857143;
|
|
1141
1133
|
background-color: #fff;
|
|
1142
1134
|
border: 1px solid #ddd;
|
|
1143
1135
|
border-radius: 4px;
|
|
1144
|
-
-webkit-transition: all .2s ease-in-out;
|
|
1145
|
-
|
|
1146
|
-
|
|
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;
|
|
1147
1142
|
}
|
|
1148
1143
|
.img-circle {
|
|
1149
1144
|
border-radius: 50%;
|
|
@@ -1152,7 +1147,7 @@ hr {
|
|
|
1152
1147
|
margin-top: 20px;
|
|
1153
1148
|
margin-bottom: 20px;
|
|
1154
1149
|
border: 0;
|
|
1155
|
-
border-top: 1px solid #
|
|
1150
|
+
border-top: 1px solid #eeeeee;
|
|
1156
1151
|
}
|
|
1157
1152
|
.sr-only {
|
|
1158
1153
|
position: absolute;
|
|
@@ -1217,9 +1212,9 @@ h6 .small,
|
|
|
1217
1212
|
.h4 .small,
|
|
1218
1213
|
.h5 .small,
|
|
1219
1214
|
.h6 .small {
|
|
1220
|
-
font-weight:
|
|
1215
|
+
font-weight: 400;
|
|
1221
1216
|
line-height: 1;
|
|
1222
|
-
color: #
|
|
1217
|
+
color: #777777;
|
|
1223
1218
|
}
|
|
1224
1219
|
h1,
|
|
1225
1220
|
.h1,
|
|
@@ -1311,7 +1306,7 @@ small,
|
|
|
1311
1306
|
}
|
|
1312
1307
|
mark,
|
|
1313
1308
|
.mark {
|
|
1314
|
-
padding: .2em;
|
|
1309
|
+
padding: 0.2em;
|
|
1315
1310
|
background-color: #fcf8e3;
|
|
1316
1311
|
}
|
|
1317
1312
|
.text-left {
|
|
@@ -1339,73 +1334,83 @@ mark,
|
|
|
1339
1334
|
text-transform: capitalize;
|
|
1340
1335
|
}
|
|
1341
1336
|
.text-muted {
|
|
1342
|
-
color: #
|
|
1337
|
+
color: #777777;
|
|
1343
1338
|
}
|
|
1344
1339
|
.text-primary {
|
|
1345
1340
|
color: #337ab7;
|
|
1346
1341
|
}
|
|
1347
|
-
a.text-primary:hover
|
|
1342
|
+
a.text-primary:hover,
|
|
1343
|
+
a.text-primary:focus {
|
|
1348
1344
|
color: #286090;
|
|
1349
1345
|
}
|
|
1350
1346
|
.text-success {
|
|
1351
1347
|
color: #3c763d;
|
|
1352
1348
|
}
|
|
1353
|
-
a.text-success:hover
|
|
1349
|
+
a.text-success:hover,
|
|
1350
|
+
a.text-success:focus {
|
|
1354
1351
|
color: #2b542c;
|
|
1355
1352
|
}
|
|
1356
1353
|
.text-info {
|
|
1357
1354
|
color: #31708f;
|
|
1358
1355
|
}
|
|
1359
|
-
a.text-info:hover
|
|
1356
|
+
a.text-info:hover,
|
|
1357
|
+
a.text-info:focus {
|
|
1360
1358
|
color: #245269;
|
|
1361
1359
|
}
|
|
1362
1360
|
.text-warning {
|
|
1363
1361
|
color: #8a6d3b;
|
|
1364
1362
|
}
|
|
1365
|
-
a.text-warning:hover
|
|
1363
|
+
a.text-warning:hover,
|
|
1364
|
+
a.text-warning:focus {
|
|
1366
1365
|
color: #66512c;
|
|
1367
1366
|
}
|
|
1368
1367
|
.text-danger {
|
|
1369
1368
|
color: #a94442;
|
|
1370
1369
|
}
|
|
1371
|
-
a.text-danger:hover
|
|
1370
|
+
a.text-danger:hover,
|
|
1371
|
+
a.text-danger:focus {
|
|
1372
1372
|
color: #843534;
|
|
1373
1373
|
}
|
|
1374
1374
|
.bg-primary {
|
|
1375
1375
|
color: #fff;
|
|
1376
1376
|
background-color: #337ab7;
|
|
1377
1377
|
}
|
|
1378
|
-
a.bg-primary:hover
|
|
1378
|
+
a.bg-primary:hover,
|
|
1379
|
+
a.bg-primary:focus {
|
|
1379
1380
|
background-color: #286090;
|
|
1380
1381
|
}
|
|
1381
1382
|
.bg-success {
|
|
1382
1383
|
background-color: #dff0d8;
|
|
1383
1384
|
}
|
|
1384
|
-
a.bg-success:hover
|
|
1385
|
+
a.bg-success:hover,
|
|
1386
|
+
a.bg-success:focus {
|
|
1385
1387
|
background-color: #c1e2b3;
|
|
1386
1388
|
}
|
|
1387
1389
|
.bg-info {
|
|
1388
1390
|
background-color: #d9edf7;
|
|
1389
1391
|
}
|
|
1390
|
-
a.bg-info:hover
|
|
1392
|
+
a.bg-info:hover,
|
|
1393
|
+
a.bg-info:focus {
|
|
1391
1394
|
background-color: #afd9ee;
|
|
1392
1395
|
}
|
|
1393
1396
|
.bg-warning {
|
|
1394
1397
|
background-color: #fcf8e3;
|
|
1395
1398
|
}
|
|
1396
|
-
a.bg-warning:hover
|
|
1399
|
+
a.bg-warning:hover,
|
|
1400
|
+
a.bg-warning:focus {
|
|
1397
1401
|
background-color: #f7ecb5;
|
|
1398
1402
|
}
|
|
1399
1403
|
.bg-danger {
|
|
1400
1404
|
background-color: #f2dede;
|
|
1401
1405
|
}
|
|
1402
|
-
a.bg-danger:hover
|
|
1406
|
+
a.bg-danger:hover,
|
|
1407
|
+
a.bg-danger:focus {
|
|
1403
1408
|
background-color: #e4b9b9;
|
|
1404
1409
|
}
|
|
1405
1410
|
.page-header {
|
|
1406
1411
|
padding-bottom: 9px;
|
|
1407
1412
|
margin: 40px 0 20px;
|
|
1408
|
-
border-bottom: 1px solid #
|
|
1413
|
+
border-bottom: 1px solid #eeeeee;
|
|
1409
1414
|
}
|
|
1410
1415
|
ul,
|
|
1411
1416
|
ol {
|
|
@@ -1424,8 +1429,8 @@ ol ol {
|
|
|
1424
1429
|
}
|
|
1425
1430
|
.list-inline {
|
|
1426
1431
|
padding-left: 0;
|
|
1427
|
-
margin-left: -5px;
|
|
1428
1432
|
list-style: none;
|
|
1433
|
+
margin-left: -5px;
|
|
1429
1434
|
}
|
|
1430
1435
|
.list-inline > li {
|
|
1431
1436
|
display: inline-block;
|
|
@@ -1441,7 +1446,7 @@ dd {
|
|
|
1441
1446
|
line-height: 1.42857143;
|
|
1442
1447
|
}
|
|
1443
1448
|
dt {
|
|
1444
|
-
font-weight:
|
|
1449
|
+
font-weight: 700;
|
|
1445
1450
|
}
|
|
1446
1451
|
dd {
|
|
1447
1452
|
margin-left: 0;
|
|
@@ -1450,9 +1455,9 @@ dd {
|
|
|
1450
1455
|
.dl-horizontal dt {
|
|
1451
1456
|
float: left;
|
|
1452
1457
|
width: 160px;
|
|
1453
|
-
overflow: hidden;
|
|
1454
1458
|
clear: left;
|
|
1455
1459
|
text-align: right;
|
|
1460
|
+
overflow: hidden;
|
|
1456
1461
|
text-overflow: ellipsis;
|
|
1457
1462
|
white-space: nowrap;
|
|
1458
1463
|
}
|
|
@@ -1463,7 +1468,6 @@ dd {
|
|
|
1463
1468
|
abbr[title],
|
|
1464
1469
|
abbr[data-original-title] {
|
|
1465
1470
|
cursor: help;
|
|
1466
|
-
border-bottom: 1px dotted #777;
|
|
1467
1471
|
}
|
|
1468
1472
|
.initialism {
|
|
1469
1473
|
font-size: 90%;
|
|
@@ -1473,7 +1477,7 @@ blockquote {
|
|
|
1473
1477
|
padding: 10px 20px;
|
|
1474
1478
|
margin: 0 0 20px;
|
|
1475
1479
|
font-size: 17.5px;
|
|
1476
|
-
border-left: 5px solid #
|
|
1480
|
+
border-left: 5px solid #eeeeee;
|
|
1477
1481
|
}
|
|
1478
1482
|
blockquote p:last-child,
|
|
1479
1483
|
blockquote ul:last-child,
|
|
@@ -1486,19 +1490,19 @@ blockquote .small {
|
|
|
1486
1490
|
display: block;
|
|
1487
1491
|
font-size: 80%;
|
|
1488
1492
|
line-height: 1.42857143;
|
|
1489
|
-
color: #
|
|
1493
|
+
color: #777777;
|
|
1490
1494
|
}
|
|
1491
1495
|
blockquote footer:before,
|
|
1492
1496
|
blockquote small:before,
|
|
1493
1497
|
blockquote .small:before {
|
|
1494
|
-
content:
|
|
1498
|
+
content: "\2014 \00A0";
|
|
1495
1499
|
}
|
|
1496
1500
|
.blockquote-reverse,
|
|
1497
1501
|
blockquote.pull-right {
|
|
1498
1502
|
padding-right: 15px;
|
|
1499
1503
|
padding-left: 0;
|
|
1500
1504
|
text-align: right;
|
|
1501
|
-
border-right: 5px solid #
|
|
1505
|
+
border-right: 5px solid #eeeeee;
|
|
1502
1506
|
border-left: 0;
|
|
1503
1507
|
}
|
|
1504
1508
|
.blockquote-reverse footer:before,
|
|
@@ -1507,7 +1511,7 @@ blockquote.pull-right footer:before,
|
|
|
1507
1511
|
blockquote.pull-right small:before,
|
|
1508
1512
|
.blockquote-reverse .small:before,
|
|
1509
1513
|
blockquote.pull-right .small:before {
|
|
1510
|
-
content:
|
|
1514
|
+
content: "";
|
|
1511
1515
|
}
|
|
1512
1516
|
.blockquote-reverse footer:after,
|
|
1513
1517
|
blockquote.pull-right footer:after,
|
|
@@ -1515,7 +1519,7 @@ blockquote.pull-right footer:after,
|
|
|
1515
1519
|
blockquote.pull-right small:after,
|
|
1516
1520
|
.blockquote-reverse .small:after,
|
|
1517
1521
|
blockquote.pull-right .small:after {
|
|
1518
|
-
content:
|
|
1522
|
+
content: "\00A0 \2014";
|
|
1519
1523
|
}
|
|
1520
1524
|
address {
|
|
1521
1525
|
margin-bottom: 20px;
|
|
@@ -1541,15 +1545,15 @@ kbd {
|
|
|
1541
1545
|
color: #fff;
|
|
1542
1546
|
background-color: #333;
|
|
1543
1547
|
border-radius: 3px;
|
|
1544
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
|
1545
|
-
|
|
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);
|
|
1546
1550
|
}
|
|
1547
1551
|
kbd kbd {
|
|
1548
1552
|
padding: 0;
|
|
1549
1553
|
font-size: 100%;
|
|
1550
|
-
font-weight:
|
|
1554
|
+
font-weight: 700;
|
|
1551
1555
|
-webkit-box-shadow: none;
|
|
1552
|
-
|
|
1556
|
+
box-shadow: none;
|
|
1553
1557
|
}
|
|
1554
1558
|
pre {
|
|
1555
1559
|
display: block;
|
|
@@ -1557,7 +1561,7 @@ pre {
|
|
|
1557
1561
|
margin: 0 0 10px;
|
|
1558
1562
|
font-size: 13px;
|
|
1559
1563
|
line-height: 1.42857143;
|
|
1560
|
-
color: #
|
|
1564
|
+
color: #333333;
|
|
1561
1565
|
word-break: break-all;
|
|
1562
1566
|
word-wrap: break-word;
|
|
1563
1567
|
background-color: #f5f5f5;
|
|
@@ -1584,17 +1588,17 @@ pre code {
|
|
|
1584
1588
|
}
|
|
1585
1589
|
@media (min-width: 768px) {
|
|
1586
1590
|
.container {
|
|
1587
|
-
width:
|
|
1591
|
+
width: 750px;
|
|
1588
1592
|
}
|
|
1589
1593
|
}
|
|
1590
1594
|
@media (min-width: 992px) {
|
|
1591
1595
|
.container {
|
|
1592
|
-
width:
|
|
1596
|
+
width: 970px;
|
|
1593
1597
|
}
|
|
1594
1598
|
}
|
|
1595
1599
|
@media (min-width: 1200px) {
|
|
1596
1600
|
.container {
|
|
1597
|
-
width:
|
|
1601
|
+
width: 1170px;
|
|
1598
1602
|
}
|
|
1599
1603
|
}
|
|
1600
1604
|
.container-fluid {
|
|
@@ -1607,13 +1611,79 @@ pre code {
|
|
|
1607
1611
|
margin-right: -15px;
|
|
1608
1612
|
margin-left: -15px;
|
|
1609
1613
|
}
|
|
1610
|
-
.
|
|
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 {
|
|
1611
1670
|
position: relative;
|
|
1612
1671
|
min-height: 1px;
|
|
1613
1672
|
padding-right: 15px;
|
|
1614
1673
|
padding-left: 15px;
|
|
1615
1674
|
}
|
|
1616
|
-
.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 {
|
|
1617
1687
|
float: left;
|
|
1618
1688
|
}
|
|
1619
1689
|
.col-xs-12 {
|
|
@@ -1767,10 +1837,21 @@ pre code {
|
|
|
1767
1837
|
margin-left: 8.33333333%;
|
|
1768
1838
|
}
|
|
1769
1839
|
.col-xs-offset-0 {
|
|
1770
|
-
margin-left: 0
|
|
1840
|
+
margin-left: 0%;
|
|
1771
1841
|
}
|
|
1772
1842
|
@media (min-width: 768px) {
|
|
1773
|
-
.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 {
|
|
1774
1855
|
float: left;
|
|
1775
1856
|
}
|
|
1776
1857
|
.col-sm-12 {
|
|
@@ -1924,11 +2005,22 @@ pre code {
|
|
|
1924
2005
|
margin-left: 8.33333333%;
|
|
1925
2006
|
}
|
|
1926
2007
|
.col-sm-offset-0 {
|
|
1927
|
-
margin-left: 0
|
|
2008
|
+
margin-left: 0%;
|
|
1928
2009
|
}
|
|
1929
2010
|
}
|
|
1930
2011
|
@media (min-width: 992px) {
|
|
1931
|
-
.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 {
|
|
1932
2024
|
float: left;
|
|
1933
2025
|
}
|
|
1934
2026
|
.col-md-12 {
|
|
@@ -2082,11 +2174,22 @@ pre code {
|
|
|
2082
2174
|
margin-left: 8.33333333%;
|
|
2083
2175
|
}
|
|
2084
2176
|
.col-md-offset-0 {
|
|
2085
|
-
margin-left: 0
|
|
2177
|
+
margin-left: 0%;
|
|
2086
2178
|
}
|
|
2087
2179
|
}
|
|
2088
2180
|
@media (min-width: 1200px) {
|
|
2089
|
-
.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 {
|
|
2090
2193
|
float: left;
|
|
2091
2194
|
}
|
|
2092
2195
|
.col-lg-12 {
|
|
@@ -2240,16 +2343,27 @@ pre code {
|
|
|
2240
2343
|
margin-left: 8.33333333%;
|
|
2241
2344
|
}
|
|
2242
2345
|
.col-lg-offset-0 {
|
|
2243
|
-
margin-left: 0
|
|
2346
|
+
margin-left: 0%;
|
|
2244
2347
|
}
|
|
2245
2348
|
}
|
|
2246
2349
|
table {
|
|
2247
2350
|
background-color: transparent;
|
|
2248
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
|
+
}
|
|
2249
2363
|
caption {
|
|
2250
2364
|
padding-top: 8px;
|
|
2251
2365
|
padding-bottom: 8px;
|
|
2252
|
-
color: #
|
|
2366
|
+
color: #777777;
|
|
2253
2367
|
text-align: left;
|
|
2254
2368
|
}
|
|
2255
2369
|
th {
|
|
@@ -2318,17 +2432,6 @@ th {
|
|
|
2318
2432
|
.table-hover > tbody > tr:hover {
|
|
2319
2433
|
background-color: #f5f5f5;
|
|
2320
2434
|
}
|
|
2321
|
-
table col[class*="col-"] {
|
|
2322
|
-
position: static;
|
|
2323
|
-
display: table-column;
|
|
2324
|
-
float: none;
|
|
2325
|
-
}
|
|
2326
|
-
table td[class*="col-"],
|
|
2327
|
-
table th[class*="col-"] {
|
|
2328
|
-
position: static;
|
|
2329
|
-
display: table-cell;
|
|
2330
|
-
float: none;
|
|
2331
|
-
}
|
|
2332
2435
|
.table > thead > tr > td.active,
|
|
2333
2436
|
.table > tbody > tr > td.active,
|
|
2334
2437
|
.table > tfoot > tr > td.active,
|
|
@@ -2435,7 +2538,7 @@ table th[class*="col-"] {
|
|
|
2435
2538
|
background-color: #ebcccc;
|
|
2436
2539
|
}
|
|
2437
2540
|
.table-responsive {
|
|
2438
|
-
min-height: .01%;
|
|
2541
|
+
min-height: 0.01%;
|
|
2439
2542
|
overflow-x: auto;
|
|
2440
2543
|
}
|
|
2441
2544
|
@media screen and (max-width: 767px) {
|
|
@@ -2496,7 +2599,7 @@ legend {
|
|
|
2496
2599
|
margin-bottom: 20px;
|
|
2497
2600
|
font-size: 21px;
|
|
2498
2601
|
line-height: inherit;
|
|
2499
|
-
color: #
|
|
2602
|
+
color: #333333;
|
|
2500
2603
|
border: 0;
|
|
2501
2604
|
border-bottom: 1px solid #e5e5e5;
|
|
2502
2605
|
}
|
|
@@ -2504,12 +2607,15 @@ label {
|
|
|
2504
2607
|
display: inline-block;
|
|
2505
2608
|
max-width: 100%;
|
|
2506
2609
|
margin-bottom: 5px;
|
|
2507
|
-
font-weight:
|
|
2610
|
+
font-weight: 700;
|
|
2508
2611
|
}
|
|
2509
2612
|
input[type="search"] {
|
|
2510
2613
|
-webkit-box-sizing: border-box;
|
|
2511
|
-
|
|
2512
|
-
|
|
2614
|
+
-moz-box-sizing: border-box;
|
|
2615
|
+
box-sizing: border-box;
|
|
2616
|
+
-webkit-appearance: none;
|
|
2617
|
+
-moz-appearance: none;
|
|
2618
|
+
appearance: none;
|
|
2513
2619
|
}
|
|
2514
2620
|
input[type="radio"],
|
|
2515
2621
|
input[type="checkbox"] {
|
|
@@ -2517,6 +2623,14 @@ input[type="checkbox"] {
|
|
|
2517
2623
|
margin-top: 1px \9;
|
|
2518
2624
|
line-height: normal;
|
|
2519
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
|
+
}
|
|
2520
2634
|
input[type="file"] {
|
|
2521
2635
|
display: block;
|
|
2522
2636
|
}
|
|
@@ -2531,7 +2645,6 @@ select[size] {
|
|
|
2531
2645
|
input[type="file"]:focus,
|
|
2532
2646
|
input[type="radio"]:focus,
|
|
2533
2647
|
input[type="checkbox"]:focus {
|
|
2534
|
-
outline: thin dotted;
|
|
2535
2648
|
outline: 5px auto -webkit-focus-ring-color;
|
|
2536
2649
|
outline-offset: -2px;
|
|
2537
2650
|
}
|
|
@@ -2540,7 +2653,7 @@ output {
|
|
|
2540
2653
|
padding-top: 7px;
|
|
2541
2654
|
font-size: 14px;
|
|
2542
2655
|
line-height: 1.42857143;
|
|
2543
|
-
color: #
|
|
2656
|
+
color: #555555;
|
|
2544
2657
|
}
|
|
2545
2658
|
.form-control {
|
|
2546
2659
|
display: block;
|
|
@@ -2549,22 +2662,25 @@ output {
|
|
|
2549
2662
|
padding: 6px 12px;
|
|
2550
2663
|
font-size: 14px;
|
|
2551
2664
|
line-height: 1.42857143;
|
|
2552
|
-
color: #
|
|
2665
|
+
color: #555555;
|
|
2553
2666
|
background-color: #fff;
|
|
2554
2667
|
background-image: none;
|
|
2555
2668
|
border: 1px solid #ccc;
|
|
2556
2669
|
border-radius: 4px;
|
|
2557
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
2558
|
-
|
|
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;
|
|
2559
2674
|
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
|
2560
|
-
|
|
2561
|
-
|
|
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;
|
|
2562
2678
|
}
|
|
2563
2679
|
.form-control:focus {
|
|
2564
2680
|
border-color: #66afe9;
|
|
2565
2681
|
outline: 0;
|
|
2566
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0
|
|
2567
|
-
|
|
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);
|
|
2568
2684
|
}
|
|
2569
2685
|
.form-control::-moz-placeholder {
|
|
2570
2686
|
color: #999;
|
|
@@ -2576,10 +2692,14 @@ output {
|
|
|
2576
2692
|
.form-control::-webkit-input-placeholder {
|
|
2577
2693
|
color: #999;
|
|
2578
2694
|
}
|
|
2695
|
+
.form-control::-ms-expand {
|
|
2696
|
+
background-color: transparent;
|
|
2697
|
+
border: 0;
|
|
2698
|
+
}
|
|
2579
2699
|
.form-control[disabled],
|
|
2580
2700
|
.form-control[readonly],
|
|
2581
2701
|
fieldset[disabled] .form-control {
|
|
2582
|
-
background-color: #
|
|
2702
|
+
background-color: #eeeeee;
|
|
2583
2703
|
opacity: 1;
|
|
2584
2704
|
}
|
|
2585
2705
|
.form-control[disabled],
|
|
@@ -2589,14 +2709,11 @@ fieldset[disabled] .form-control {
|
|
|
2589
2709
|
textarea.form-control {
|
|
2590
2710
|
height: auto;
|
|
2591
2711
|
}
|
|
2592
|
-
input[type="search"] {
|
|
2593
|
-
-webkit-appearance: none;
|
|
2594
|
-
}
|
|
2595
2712
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
2596
|
-
input[type="date"],
|
|
2597
|
-
input[type="time"],
|
|
2598
|
-
input[type="datetime-local"],
|
|
2599
|
-
input[type="month"] {
|
|
2713
|
+
input[type="date"].form-control,
|
|
2714
|
+
input[type="time"].form-control,
|
|
2715
|
+
input[type="datetime-local"].form-control,
|
|
2716
|
+
input[type="month"].form-control {
|
|
2600
2717
|
line-height: 34px;
|
|
2601
2718
|
}
|
|
2602
2719
|
input[type="date"].input-sm,
|
|
@@ -2630,12 +2747,18 @@ input[type="search"] {
|
|
|
2630
2747
|
margin-top: 10px;
|
|
2631
2748
|
margin-bottom: 10px;
|
|
2632
2749
|
}
|
|
2750
|
+
.radio.disabled label,
|
|
2751
|
+
.checkbox.disabled label,
|
|
2752
|
+
fieldset[disabled] .radio label,
|
|
2753
|
+
fieldset[disabled] .checkbox label {
|
|
2754
|
+
cursor: not-allowed;
|
|
2755
|
+
}
|
|
2633
2756
|
.radio label,
|
|
2634
2757
|
.checkbox label {
|
|
2635
2758
|
min-height: 20px;
|
|
2636
2759
|
padding-left: 20px;
|
|
2637
2760
|
margin-bottom: 0;
|
|
2638
|
-
font-weight:
|
|
2761
|
+
font-weight: 400;
|
|
2639
2762
|
cursor: pointer;
|
|
2640
2763
|
}
|
|
2641
2764
|
.radio input[type="radio"],
|
|
@@ -2656,34 +2779,20 @@ input[type="search"] {
|
|
|
2656
2779
|
display: inline-block;
|
|
2657
2780
|
padding-left: 20px;
|
|
2658
2781
|
margin-bottom: 0;
|
|
2659
|
-
font-weight:
|
|
2782
|
+
font-weight: 400;
|
|
2660
2783
|
vertical-align: middle;
|
|
2661
2784
|
cursor: pointer;
|
|
2662
2785
|
}
|
|
2663
|
-
.radio-inline + .radio-inline,
|
|
2664
|
-
.checkbox-inline + .checkbox-inline {
|
|
2665
|
-
margin-top: 0;
|
|
2666
|
-
margin-left: 10px;
|
|
2667
|
-
}
|
|
2668
|
-
input[type="radio"][disabled],
|
|
2669
|
-
input[type="checkbox"][disabled],
|
|
2670
|
-
input[type="radio"].disabled,
|
|
2671
|
-
input[type="checkbox"].disabled,
|
|
2672
|
-
fieldset[disabled] input[type="radio"],
|
|
2673
|
-
fieldset[disabled] input[type="checkbox"] {
|
|
2674
|
-
cursor: not-allowed;
|
|
2675
|
-
}
|
|
2676
2786
|
.radio-inline.disabled,
|
|
2677
2787
|
.checkbox-inline.disabled,
|
|
2678
2788
|
fieldset[disabled] .radio-inline,
|
|
2679
2789
|
fieldset[disabled] .checkbox-inline {
|
|
2680
2790
|
cursor: not-allowed;
|
|
2681
2791
|
}
|
|
2682
|
-
.radio.
|
|
2683
|
-
.checkbox.
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
cursor: not-allowed;
|
|
2792
|
+
.radio-inline + .radio-inline,
|
|
2793
|
+
.checkbox-inline + .checkbox-inline {
|
|
2794
|
+
margin-top: 0;
|
|
2795
|
+
margin-left: 10px;
|
|
2687
2796
|
}
|
|
2688
2797
|
.form-control-static {
|
|
2689
2798
|
min-height: 34px;
|
|
@@ -2718,18 +2827,18 @@ select[multiple].input-sm {
|
|
|
2718
2827
|
line-height: 1.5;
|
|
2719
2828
|
border-radius: 3px;
|
|
2720
2829
|
}
|
|
2721
|
-
|
|
2830
|
+
.form-group-sm select.form-control {
|
|
2722
2831
|
height: 30px;
|
|
2723
2832
|
line-height: 30px;
|
|
2724
2833
|
}
|
|
2725
|
-
|
|
2726
|
-
|
|
2834
|
+
.form-group-sm textarea.form-control,
|
|
2835
|
+
.form-group-sm select[multiple].form-control {
|
|
2727
2836
|
height: auto;
|
|
2728
2837
|
}
|
|
2729
2838
|
.form-group-sm .form-control-static {
|
|
2730
2839
|
height: 30px;
|
|
2731
2840
|
min-height: 32px;
|
|
2732
|
-
padding:
|
|
2841
|
+
padding: 6px 10px;
|
|
2733
2842
|
font-size: 12px;
|
|
2734
2843
|
line-height: 1.5;
|
|
2735
2844
|
}
|
|
@@ -2755,18 +2864,18 @@ select[multiple].input-lg {
|
|
|
2755
2864
|
line-height: 1.3333333;
|
|
2756
2865
|
border-radius: 6px;
|
|
2757
2866
|
}
|
|
2758
|
-
|
|
2867
|
+
.form-group-lg select.form-control {
|
|
2759
2868
|
height: 46px;
|
|
2760
2869
|
line-height: 46px;
|
|
2761
2870
|
}
|
|
2762
|
-
|
|
2763
|
-
|
|
2871
|
+
.form-group-lg textarea.form-control,
|
|
2872
|
+
.form-group-lg select[multiple].form-control {
|
|
2764
2873
|
height: auto;
|
|
2765
2874
|
}
|
|
2766
2875
|
.form-group-lg .form-control-static {
|
|
2767
2876
|
height: 46px;
|
|
2768
2877
|
min-height: 38px;
|
|
2769
|
-
padding:
|
|
2878
|
+
padding: 11px 16px;
|
|
2770
2879
|
font-size: 18px;
|
|
2771
2880
|
line-height: 1.3333333;
|
|
2772
2881
|
}
|
|
@@ -2788,12 +2897,16 @@ select[multiple].form-group-lg .form-control {
|
|
|
2788
2897
|
text-align: center;
|
|
2789
2898
|
pointer-events: none;
|
|
2790
2899
|
}
|
|
2791
|
-
.input-lg + .form-control-feedback
|
|
2900
|
+
.input-lg + .form-control-feedback,
|
|
2901
|
+
.input-group-lg + .form-control-feedback,
|
|
2902
|
+
.form-group-lg .form-control + .form-control-feedback {
|
|
2792
2903
|
width: 46px;
|
|
2793
2904
|
height: 46px;
|
|
2794
2905
|
line-height: 46px;
|
|
2795
2906
|
}
|
|
2796
|
-
.input-sm + .form-control-feedback
|
|
2907
|
+
.input-sm + .form-control-feedback,
|
|
2908
|
+
.input-group-sm + .form-control-feedback,
|
|
2909
|
+
.form-group-sm .form-control + .form-control-feedback {
|
|
2797
2910
|
width: 30px;
|
|
2798
2911
|
height: 30px;
|
|
2799
2912
|
line-height: 30px;
|
|
@@ -2812,13 +2925,13 @@ select[multiple].form-group-lg .form-control {
|
|
|
2812
2925
|
}
|
|
2813
2926
|
.has-success .form-control {
|
|
2814
2927
|
border-color: #3c763d;
|
|
2815
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
2816
|
-
|
|
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);
|
|
2817
2930
|
}
|
|
2818
2931
|
.has-success .form-control:focus {
|
|
2819
2932
|
border-color: #2b542c;
|
|
2820
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
|
2821
|
-
|
|
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;
|
|
2822
2935
|
}
|
|
2823
2936
|
.has-success .input-group-addon {
|
|
2824
2937
|
color: #3c763d;
|
|
@@ -2842,13 +2955,13 @@ select[multiple].form-group-lg .form-control {
|
|
|
2842
2955
|
}
|
|
2843
2956
|
.has-warning .form-control {
|
|
2844
2957
|
border-color: #8a6d3b;
|
|
2845
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
2846
|
-
|
|
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);
|
|
2847
2960
|
}
|
|
2848
2961
|
.has-warning .form-control:focus {
|
|
2849
2962
|
border-color: #66512c;
|
|
2850
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
|
2851
|
-
|
|
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;
|
|
2852
2965
|
}
|
|
2853
2966
|
.has-warning .input-group-addon {
|
|
2854
2967
|
color: #8a6d3b;
|
|
@@ -2872,13 +2985,13 @@ select[multiple].form-group-lg .form-control {
|
|
|
2872
2985
|
}
|
|
2873
2986
|
.has-error .form-control {
|
|
2874
2987
|
border-color: #a94442;
|
|
2875
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
|
2876
|
-
|
|
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);
|
|
2877
2990
|
}
|
|
2878
2991
|
.has-error .form-control:focus {
|
|
2879
2992
|
border-color: #843534;
|
|
2880
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
|
2881
|
-
|
|
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;
|
|
2882
2995
|
}
|
|
2883
2996
|
.has-error .input-group-addon {
|
|
2884
2997
|
color: #a94442;
|
|
@@ -2978,34 +3091,36 @@ select[multiple].form-group-lg .form-control {
|
|
|
2978
3091
|
}
|
|
2979
3092
|
@media (min-width: 768px) {
|
|
2980
3093
|
.form-horizontal .form-group-lg .control-label {
|
|
2981
|
-
padding-top:
|
|
3094
|
+
padding-top: 11px;
|
|
3095
|
+
font-size: 18px;
|
|
2982
3096
|
}
|
|
2983
3097
|
}
|
|
2984
3098
|
@media (min-width: 768px) {
|
|
2985
3099
|
.form-horizontal .form-group-sm .control-label {
|
|
2986
3100
|
padding-top: 6px;
|
|
3101
|
+
font-size: 12px;
|
|
2987
3102
|
}
|
|
2988
3103
|
}
|
|
2989
3104
|
.btn {
|
|
2990
3105
|
display: inline-block;
|
|
2991
|
-
padding: 6px 12px;
|
|
2992
3106
|
margin-bottom: 0;
|
|
2993
|
-
font-size: 14px;
|
|
2994
3107
|
font-weight: normal;
|
|
2995
|
-
line-height: 1.42857143;
|
|
2996
3108
|
text-align: center;
|
|
2997
3109
|
white-space: nowrap;
|
|
2998
3110
|
vertical-align: middle;
|
|
2999
3111
|
-ms-touch-action: manipulation;
|
|
3000
|
-
|
|
3112
|
+
touch-action: manipulation;
|
|
3001
3113
|
cursor: pointer;
|
|
3002
|
-
-webkit-user-select: none;
|
|
3003
|
-
-moz-user-select: none;
|
|
3004
|
-
-ms-user-select: none;
|
|
3005
|
-
user-select: none;
|
|
3006
3114
|
background-image: none;
|
|
3007
3115
|
border: 1px solid transparent;
|
|
3116
|
+
padding: 6px 12px;
|
|
3117
|
+
font-size: 14px;
|
|
3118
|
+
line-height: 1.42857143;
|
|
3008
3119
|
border-radius: 4px;
|
|
3120
|
+
-webkit-user-select: none;
|
|
3121
|
+
-moz-user-select: none;
|
|
3122
|
+
-ms-user-select: none;
|
|
3123
|
+
user-select: none;
|
|
3009
3124
|
}
|
|
3010
3125
|
.btn:focus,
|
|
3011
3126
|
.btn:active:focus,
|
|
@@ -3013,7 +3128,6 @@ select[multiple].form-group-lg .form-control {
|
|
|
3013
3128
|
.btn.focus,
|
|
3014
3129
|
.btn:active.focus,
|
|
3015
3130
|
.btn.active.focus {
|
|
3016
|
-
outline: thin dotted;
|
|
3017
3131
|
outline: 5px auto -webkit-focus-ring-color;
|
|
3018
3132
|
outline-offset: -2px;
|
|
3019
3133
|
}
|
|
@@ -3027,30 +3141,34 @@ select[multiple].form-group-lg .form-control {
|
|
|
3027
3141
|
.btn.active {
|
|
3028
3142
|
background-image: none;
|
|
3029
3143
|
outline: 0;
|
|
3030
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
|
3031
|
-
|
|
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);
|
|
3032
3146
|
}
|
|
3033
3147
|
.btn.disabled,
|
|
3034
3148
|
.btn[disabled],
|
|
3035
3149
|
fieldset[disabled] .btn {
|
|
3036
|
-
pointer-events: none;
|
|
3037
3150
|
cursor: not-allowed;
|
|
3038
3151
|
filter: alpha(opacity=65);
|
|
3152
|
+
opacity: 0.65;
|
|
3039
3153
|
-webkit-box-shadow: none;
|
|
3040
|
-
|
|
3041
|
-
|
|
3154
|
+
box-shadow: none;
|
|
3155
|
+
}
|
|
3156
|
+
a.btn.disabled,
|
|
3157
|
+
fieldset[disabled] a.btn {
|
|
3158
|
+
pointer-events: none;
|
|
3042
3159
|
}
|
|
3043
3160
|
.btn-default {
|
|
3044
3161
|
color: #333;
|
|
3045
3162
|
background-color: #fff;
|
|
3046
3163
|
border-color: #ccc;
|
|
3047
3164
|
}
|
|
3048
|
-
.btn-default:hover,
|
|
3049
3165
|
.btn-default:focus,
|
|
3050
|
-
.btn-default.focus
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3166
|
+
.btn-default.focus {
|
|
3167
|
+
color: #333;
|
|
3168
|
+
background-color: #e6e6e6;
|
|
3169
|
+
border-color: #8c8c8c;
|
|
3170
|
+
}
|
|
3171
|
+
.btn-default:hover {
|
|
3054
3172
|
color: #333;
|
|
3055
3173
|
background-color: #e6e6e6;
|
|
3056
3174
|
border-color: #adadad;
|
|
@@ -3058,11 +3176,24 @@ fieldset[disabled] .btn {
|
|
|
3058
3176
|
.btn-default:active,
|
|
3059
3177
|
.btn-default.active,
|
|
3060
3178
|
.open > .dropdown-toggle.btn-default {
|
|
3179
|
+
color: #333;
|
|
3180
|
+
background-color: #e6e6e6;
|
|
3061
3181
|
background-image: none;
|
|
3182
|
+
border-color: #adadad;
|
|
3183
|
+
}
|
|
3184
|
+
.btn-default:active:hover,
|
|
3185
|
+
.btn-default.active:hover,
|
|
3186
|
+
.open > .dropdown-toggle.btn-default:hover,
|
|
3187
|
+
.btn-default:active:focus,
|
|
3188
|
+
.btn-default.active:focus,
|
|
3189
|
+
.open > .dropdown-toggle.btn-default:focus,
|
|
3190
|
+
.btn-default:active.focus,
|
|
3191
|
+
.btn-default.active.focus,
|
|
3192
|
+
.open > .dropdown-toggle.btn-default.focus {
|
|
3193
|
+
color: #333;
|
|
3194
|
+
background-color: #d4d4d4;
|
|
3195
|
+
border-color: #8c8c8c;
|
|
3062
3196
|
}
|
|
3063
|
-
.btn-default.disabled,
|
|
3064
|
-
.btn-default[disabled],
|
|
3065
|
-
fieldset[disabled] .btn-default,
|
|
3066
3197
|
.btn-default.disabled:hover,
|
|
3067
3198
|
.btn-default[disabled]:hover,
|
|
3068
3199
|
fieldset[disabled] .btn-default:hover,
|
|
@@ -3071,13 +3202,7 @@ fieldset[disabled] .btn-default:hover,
|
|
|
3071
3202
|
fieldset[disabled] .btn-default:focus,
|
|
3072
3203
|
.btn-default.disabled.focus,
|
|
3073
3204
|
.btn-default[disabled].focus,
|
|
3074
|
-
fieldset[disabled] .btn-default.focus
|
|
3075
|
-
.btn-default.disabled:active,
|
|
3076
|
-
.btn-default[disabled]:active,
|
|
3077
|
-
fieldset[disabled] .btn-default:active,
|
|
3078
|
-
.btn-default.disabled.active,
|
|
3079
|
-
.btn-default[disabled].active,
|
|
3080
|
-
fieldset[disabled] .btn-default.active {
|
|
3205
|
+
fieldset[disabled] .btn-default.focus {
|
|
3081
3206
|
background-color: #fff;
|
|
3082
3207
|
border-color: #ccc;
|
|
3083
3208
|
}
|
|
@@ -3090,12 +3215,13 @@ fieldset[disabled] .btn-default.active {
|
|
|
3090
3215
|
background-color: #337ab7;
|
|
3091
3216
|
border-color: #2e6da4;
|
|
3092
3217
|
}
|
|
3093
|
-
.btn-primary:hover,
|
|
3094
3218
|
.btn-primary:focus,
|
|
3095
|
-
.btn-primary.focus
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3219
|
+
.btn-primary.focus {
|
|
3220
|
+
color: #fff;
|
|
3221
|
+
background-color: #286090;
|
|
3222
|
+
border-color: #122b40;
|
|
3223
|
+
}
|
|
3224
|
+
.btn-primary:hover {
|
|
3099
3225
|
color: #fff;
|
|
3100
3226
|
background-color: #286090;
|
|
3101
3227
|
border-color: #204d74;
|
|
@@ -3103,11 +3229,24 @@ fieldset[disabled] .btn-default.active {
|
|
|
3103
3229
|
.btn-primary:active,
|
|
3104
3230
|
.btn-primary.active,
|
|
3105
3231
|
.open > .dropdown-toggle.btn-primary {
|
|
3232
|
+
color: #fff;
|
|
3233
|
+
background-color: #286090;
|
|
3106
3234
|
background-image: none;
|
|
3235
|
+
border-color: #204d74;
|
|
3236
|
+
}
|
|
3237
|
+
.btn-primary:active:hover,
|
|
3238
|
+
.btn-primary.active:hover,
|
|
3239
|
+
.open > .dropdown-toggle.btn-primary:hover,
|
|
3240
|
+
.btn-primary:active:focus,
|
|
3241
|
+
.btn-primary.active:focus,
|
|
3242
|
+
.open > .dropdown-toggle.btn-primary:focus,
|
|
3243
|
+
.btn-primary:active.focus,
|
|
3244
|
+
.btn-primary.active.focus,
|
|
3245
|
+
.open > .dropdown-toggle.btn-primary.focus {
|
|
3246
|
+
color: #fff;
|
|
3247
|
+
background-color: #204d74;
|
|
3248
|
+
border-color: #122b40;
|
|
3107
3249
|
}
|
|
3108
|
-
.btn-primary.disabled,
|
|
3109
|
-
.btn-primary[disabled],
|
|
3110
|
-
fieldset[disabled] .btn-primary,
|
|
3111
3250
|
.btn-primary.disabled:hover,
|
|
3112
3251
|
.btn-primary[disabled]:hover,
|
|
3113
3252
|
fieldset[disabled] .btn-primary:hover,
|
|
@@ -3116,13 +3255,7 @@ fieldset[disabled] .btn-primary:hover,
|
|
|
3116
3255
|
fieldset[disabled] .btn-primary:focus,
|
|
3117
3256
|
.btn-primary.disabled.focus,
|
|
3118
3257
|
.btn-primary[disabled].focus,
|
|
3119
|
-
fieldset[disabled] .btn-primary.focus
|
|
3120
|
-
.btn-primary.disabled:active,
|
|
3121
|
-
.btn-primary[disabled]:active,
|
|
3122
|
-
fieldset[disabled] .btn-primary:active,
|
|
3123
|
-
.btn-primary.disabled.active,
|
|
3124
|
-
.btn-primary[disabled].active,
|
|
3125
|
-
fieldset[disabled] .btn-primary.active {
|
|
3258
|
+
fieldset[disabled] .btn-primary.focus {
|
|
3126
3259
|
background-color: #337ab7;
|
|
3127
3260
|
border-color: #2e6da4;
|
|
3128
3261
|
}
|
|
@@ -3135,12 +3268,13 @@ fieldset[disabled] .btn-primary.active {
|
|
|
3135
3268
|
background-color: #5cb85c;
|
|
3136
3269
|
border-color: #4cae4c;
|
|
3137
3270
|
}
|
|
3138
|
-
.btn-success:hover,
|
|
3139
3271
|
.btn-success:focus,
|
|
3140
|
-
.btn-success.focus
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3272
|
+
.btn-success.focus {
|
|
3273
|
+
color: #fff;
|
|
3274
|
+
background-color: #449d44;
|
|
3275
|
+
border-color: #255625;
|
|
3276
|
+
}
|
|
3277
|
+
.btn-success:hover {
|
|
3144
3278
|
color: #fff;
|
|
3145
3279
|
background-color: #449d44;
|
|
3146
3280
|
border-color: #398439;
|
|
@@ -3148,11 +3282,24 @@ fieldset[disabled] .btn-primary.active {
|
|
|
3148
3282
|
.btn-success:active,
|
|
3149
3283
|
.btn-success.active,
|
|
3150
3284
|
.open > .dropdown-toggle.btn-success {
|
|
3285
|
+
color: #fff;
|
|
3286
|
+
background-color: #449d44;
|
|
3151
3287
|
background-image: none;
|
|
3288
|
+
border-color: #398439;
|
|
3289
|
+
}
|
|
3290
|
+
.btn-success:active:hover,
|
|
3291
|
+
.btn-success.active:hover,
|
|
3292
|
+
.open > .dropdown-toggle.btn-success:hover,
|
|
3293
|
+
.btn-success:active:focus,
|
|
3294
|
+
.btn-success.active:focus,
|
|
3295
|
+
.open > .dropdown-toggle.btn-success:focus,
|
|
3296
|
+
.btn-success:active.focus,
|
|
3297
|
+
.btn-success.active.focus,
|
|
3298
|
+
.open > .dropdown-toggle.btn-success.focus {
|
|
3299
|
+
color: #fff;
|
|
3300
|
+
background-color: #398439;
|
|
3301
|
+
border-color: #255625;
|
|
3152
3302
|
}
|
|
3153
|
-
.btn-success.disabled,
|
|
3154
|
-
.btn-success[disabled],
|
|
3155
|
-
fieldset[disabled] .btn-success,
|
|
3156
3303
|
.btn-success.disabled:hover,
|
|
3157
3304
|
.btn-success[disabled]:hover,
|
|
3158
3305
|
fieldset[disabled] .btn-success:hover,
|
|
@@ -3161,13 +3308,7 @@ fieldset[disabled] .btn-success:hover,
|
|
|
3161
3308
|
fieldset[disabled] .btn-success:focus,
|
|
3162
3309
|
.btn-success.disabled.focus,
|
|
3163
3310
|
.btn-success[disabled].focus,
|
|
3164
|
-
fieldset[disabled] .btn-success.focus
|
|
3165
|
-
.btn-success.disabled:active,
|
|
3166
|
-
.btn-success[disabled]:active,
|
|
3167
|
-
fieldset[disabled] .btn-success:active,
|
|
3168
|
-
.btn-success.disabled.active,
|
|
3169
|
-
.btn-success[disabled].active,
|
|
3170
|
-
fieldset[disabled] .btn-success.active {
|
|
3311
|
+
fieldset[disabled] .btn-success.focus {
|
|
3171
3312
|
background-color: #5cb85c;
|
|
3172
3313
|
border-color: #4cae4c;
|
|
3173
3314
|
}
|
|
@@ -3180,12 +3321,13 @@ fieldset[disabled] .btn-success.active {
|
|
|
3180
3321
|
background-color: #5bc0de;
|
|
3181
3322
|
border-color: #46b8da;
|
|
3182
3323
|
}
|
|
3183
|
-
.btn-info:hover,
|
|
3184
3324
|
.btn-info:focus,
|
|
3185
|
-
.btn-info.focus
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3325
|
+
.btn-info.focus {
|
|
3326
|
+
color: #fff;
|
|
3327
|
+
background-color: #31b0d5;
|
|
3328
|
+
border-color: #1b6d85;
|
|
3329
|
+
}
|
|
3330
|
+
.btn-info:hover {
|
|
3189
3331
|
color: #fff;
|
|
3190
3332
|
background-color: #31b0d5;
|
|
3191
3333
|
border-color: #269abc;
|
|
@@ -3193,11 +3335,24 @@ fieldset[disabled] .btn-success.active {
|
|
|
3193
3335
|
.btn-info:active,
|
|
3194
3336
|
.btn-info.active,
|
|
3195
3337
|
.open > .dropdown-toggle.btn-info {
|
|
3338
|
+
color: #fff;
|
|
3339
|
+
background-color: #31b0d5;
|
|
3196
3340
|
background-image: none;
|
|
3341
|
+
border-color: #269abc;
|
|
3342
|
+
}
|
|
3343
|
+
.btn-info:active:hover,
|
|
3344
|
+
.btn-info.active:hover,
|
|
3345
|
+
.open > .dropdown-toggle.btn-info:hover,
|
|
3346
|
+
.btn-info:active:focus,
|
|
3347
|
+
.btn-info.active:focus,
|
|
3348
|
+
.open > .dropdown-toggle.btn-info:focus,
|
|
3349
|
+
.btn-info:active.focus,
|
|
3350
|
+
.btn-info.active.focus,
|
|
3351
|
+
.open > .dropdown-toggle.btn-info.focus {
|
|
3352
|
+
color: #fff;
|
|
3353
|
+
background-color: #269abc;
|
|
3354
|
+
border-color: #1b6d85;
|
|
3197
3355
|
}
|
|
3198
|
-
.btn-info.disabled,
|
|
3199
|
-
.btn-info[disabled],
|
|
3200
|
-
fieldset[disabled] .btn-info,
|
|
3201
3356
|
.btn-info.disabled:hover,
|
|
3202
3357
|
.btn-info[disabled]:hover,
|
|
3203
3358
|
fieldset[disabled] .btn-info:hover,
|
|
@@ -3206,13 +3361,7 @@ fieldset[disabled] .btn-info:hover,
|
|
|
3206
3361
|
fieldset[disabled] .btn-info:focus,
|
|
3207
3362
|
.btn-info.disabled.focus,
|
|
3208
3363
|
.btn-info[disabled].focus,
|
|
3209
|
-
fieldset[disabled] .btn-info.focus
|
|
3210
|
-
.btn-info.disabled:active,
|
|
3211
|
-
.btn-info[disabled]:active,
|
|
3212
|
-
fieldset[disabled] .btn-info:active,
|
|
3213
|
-
.btn-info.disabled.active,
|
|
3214
|
-
.btn-info[disabled].active,
|
|
3215
|
-
fieldset[disabled] .btn-info.active {
|
|
3364
|
+
fieldset[disabled] .btn-info.focus {
|
|
3216
3365
|
background-color: #5bc0de;
|
|
3217
3366
|
border-color: #46b8da;
|
|
3218
3367
|
}
|
|
@@ -3225,12 +3374,13 @@ fieldset[disabled] .btn-info.active {
|
|
|
3225
3374
|
background-color: #f0ad4e;
|
|
3226
3375
|
border-color: #eea236;
|
|
3227
3376
|
}
|
|
3228
|
-
.btn-warning:hover,
|
|
3229
3377
|
.btn-warning:focus,
|
|
3230
|
-
.btn-warning.focus
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3378
|
+
.btn-warning.focus {
|
|
3379
|
+
color: #fff;
|
|
3380
|
+
background-color: #ec971f;
|
|
3381
|
+
border-color: #985f0d;
|
|
3382
|
+
}
|
|
3383
|
+
.btn-warning:hover {
|
|
3234
3384
|
color: #fff;
|
|
3235
3385
|
background-color: #ec971f;
|
|
3236
3386
|
border-color: #d58512;
|
|
@@ -3238,11 +3388,24 @@ fieldset[disabled] .btn-info.active {
|
|
|
3238
3388
|
.btn-warning:active,
|
|
3239
3389
|
.btn-warning.active,
|
|
3240
3390
|
.open > .dropdown-toggle.btn-warning {
|
|
3391
|
+
color: #fff;
|
|
3392
|
+
background-color: #ec971f;
|
|
3241
3393
|
background-image: none;
|
|
3394
|
+
border-color: #d58512;
|
|
3395
|
+
}
|
|
3396
|
+
.btn-warning:active:hover,
|
|
3397
|
+
.btn-warning.active:hover,
|
|
3398
|
+
.open > .dropdown-toggle.btn-warning:hover,
|
|
3399
|
+
.btn-warning:active:focus,
|
|
3400
|
+
.btn-warning.active:focus,
|
|
3401
|
+
.open > .dropdown-toggle.btn-warning:focus,
|
|
3402
|
+
.btn-warning:active.focus,
|
|
3403
|
+
.btn-warning.active.focus,
|
|
3404
|
+
.open > .dropdown-toggle.btn-warning.focus {
|
|
3405
|
+
color: #fff;
|
|
3406
|
+
background-color: #d58512;
|
|
3407
|
+
border-color: #985f0d;
|
|
3242
3408
|
}
|
|
3243
|
-
.btn-warning.disabled,
|
|
3244
|
-
.btn-warning[disabled],
|
|
3245
|
-
fieldset[disabled] .btn-warning,
|
|
3246
3409
|
.btn-warning.disabled:hover,
|
|
3247
3410
|
.btn-warning[disabled]:hover,
|
|
3248
3411
|
fieldset[disabled] .btn-warning:hover,
|
|
@@ -3251,13 +3414,7 @@ fieldset[disabled] .btn-warning:hover,
|
|
|
3251
3414
|
fieldset[disabled] .btn-warning:focus,
|
|
3252
3415
|
.btn-warning.disabled.focus,
|
|
3253
3416
|
.btn-warning[disabled].focus,
|
|
3254
|
-
fieldset[disabled] .btn-warning.focus
|
|
3255
|
-
.btn-warning.disabled:active,
|
|
3256
|
-
.btn-warning[disabled]:active,
|
|
3257
|
-
fieldset[disabled] .btn-warning:active,
|
|
3258
|
-
.btn-warning.disabled.active,
|
|
3259
|
-
.btn-warning[disabled].active,
|
|
3260
|
-
fieldset[disabled] .btn-warning.active {
|
|
3417
|
+
fieldset[disabled] .btn-warning.focus {
|
|
3261
3418
|
background-color: #f0ad4e;
|
|
3262
3419
|
border-color: #eea236;
|
|
3263
3420
|
}
|
|
@@ -3270,12 +3427,13 @@ fieldset[disabled] .btn-warning.active {
|
|
|
3270
3427
|
background-color: #d9534f;
|
|
3271
3428
|
border-color: #d43f3a;
|
|
3272
3429
|
}
|
|
3273
|
-
.btn-danger:hover,
|
|
3274
3430
|
.btn-danger:focus,
|
|
3275
|
-
.btn-danger.focus
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3431
|
+
.btn-danger.focus {
|
|
3432
|
+
color: #fff;
|
|
3433
|
+
background-color: #c9302c;
|
|
3434
|
+
border-color: #761c19;
|
|
3435
|
+
}
|
|
3436
|
+
.btn-danger:hover {
|
|
3279
3437
|
color: #fff;
|
|
3280
3438
|
background-color: #c9302c;
|
|
3281
3439
|
border-color: #ac2925;
|
|
@@ -3283,11 +3441,24 @@ fieldset[disabled] .btn-warning.active {
|
|
|
3283
3441
|
.btn-danger:active,
|
|
3284
3442
|
.btn-danger.active,
|
|
3285
3443
|
.open > .dropdown-toggle.btn-danger {
|
|
3444
|
+
color: #fff;
|
|
3445
|
+
background-color: #c9302c;
|
|
3286
3446
|
background-image: none;
|
|
3447
|
+
border-color: #ac2925;
|
|
3448
|
+
}
|
|
3449
|
+
.btn-danger:active:hover,
|
|
3450
|
+
.btn-danger.active:hover,
|
|
3451
|
+
.open > .dropdown-toggle.btn-danger:hover,
|
|
3452
|
+
.btn-danger:active:focus,
|
|
3453
|
+
.btn-danger.active:focus,
|
|
3454
|
+
.open > .dropdown-toggle.btn-danger:focus,
|
|
3455
|
+
.btn-danger:active.focus,
|
|
3456
|
+
.btn-danger.active.focus,
|
|
3457
|
+
.open > .dropdown-toggle.btn-danger.focus {
|
|
3458
|
+
color: #fff;
|
|
3459
|
+
background-color: #ac2925;
|
|
3460
|
+
border-color: #761c19;
|
|
3287
3461
|
}
|
|
3288
|
-
.btn-danger.disabled,
|
|
3289
|
-
.btn-danger[disabled],
|
|
3290
|
-
fieldset[disabled] .btn-danger,
|
|
3291
3462
|
.btn-danger.disabled:hover,
|
|
3292
3463
|
.btn-danger[disabled]:hover,
|
|
3293
3464
|
fieldset[disabled] .btn-danger:hover,
|
|
@@ -3296,13 +3467,7 @@ fieldset[disabled] .btn-danger:hover,
|
|
|
3296
3467
|
fieldset[disabled] .btn-danger:focus,
|
|
3297
3468
|
.btn-danger.disabled.focus,
|
|
3298
3469
|
.btn-danger[disabled].focus,
|
|
3299
|
-
fieldset[disabled] .btn-danger.focus
|
|
3300
|
-
.btn-danger.disabled:active,
|
|
3301
|
-
.btn-danger[disabled]:active,
|
|
3302
|
-
fieldset[disabled] .btn-danger:active,
|
|
3303
|
-
.btn-danger.disabled.active,
|
|
3304
|
-
.btn-danger[disabled].active,
|
|
3305
|
-
fieldset[disabled] .btn-danger.active {
|
|
3470
|
+
fieldset[disabled] .btn-danger.focus {
|
|
3306
3471
|
background-color: #d9534f;
|
|
3307
3472
|
border-color: #d43f3a;
|
|
3308
3473
|
}
|
|
@@ -3311,7 +3476,7 @@ fieldset[disabled] .btn-danger.active {
|
|
|
3311
3476
|
background-color: #fff;
|
|
3312
3477
|
}
|
|
3313
3478
|
.btn-link {
|
|
3314
|
-
font-weight:
|
|
3479
|
+
font-weight: 400;
|
|
3315
3480
|
color: #337ab7;
|
|
3316
3481
|
border-radius: 0;
|
|
3317
3482
|
}
|
|
@@ -3322,7 +3487,7 @@ fieldset[disabled] .btn-danger.active {
|
|
|
3322
3487
|
fieldset[disabled] .btn-link {
|
|
3323
3488
|
background-color: transparent;
|
|
3324
3489
|
-webkit-box-shadow: none;
|
|
3325
|
-
|
|
3490
|
+
box-shadow: none;
|
|
3326
3491
|
}
|
|
3327
3492
|
.btn-link,
|
|
3328
3493
|
.btn-link:hover,
|
|
@@ -3340,7 +3505,7 @@ fieldset[disabled] .btn-link {
|
|
|
3340
3505
|
fieldset[disabled] .btn-link:hover,
|
|
3341
3506
|
.btn-link[disabled]:focus,
|
|
3342
3507
|
fieldset[disabled] .btn-link:focus {
|
|
3343
|
-
color: #
|
|
3508
|
+
color: #777777;
|
|
3344
3509
|
text-decoration: none;
|
|
3345
3510
|
}
|
|
3346
3511
|
.btn-lg,
|
|
@@ -3378,9 +3543,9 @@ input[type="button"].btn-block {
|
|
|
3378
3543
|
}
|
|
3379
3544
|
.fade {
|
|
3380
3545
|
opacity: 0;
|
|
3381
|
-
-webkit-transition: opacity .15s linear;
|
|
3382
|
-
|
|
3383
|
-
|
|
3546
|
+
-webkit-transition: opacity 0.15s linear;
|
|
3547
|
+
-o-transition: opacity 0.15s linear;
|
|
3548
|
+
transition: opacity 0.15s linear;
|
|
3384
3549
|
}
|
|
3385
3550
|
.fade.in {
|
|
3386
3551
|
opacity: 1;
|
|
@@ -3401,15 +3566,15 @@ tbody.collapse.in {
|
|
|
3401
3566
|
position: relative;
|
|
3402
3567
|
height: 0;
|
|
3403
3568
|
overflow: hidden;
|
|
3404
|
-
-webkit-transition-timing-function: ease;
|
|
3405
|
-
-o-transition-timing-function: ease;
|
|
3406
|
-
transition-timing-function: ease;
|
|
3407
|
-
-webkit-transition-duration: .35s;
|
|
3408
|
-
-o-transition-duration: .35s;
|
|
3409
|
-
transition-duration: .35s;
|
|
3410
3569
|
-webkit-transition-property: height, visibility;
|
|
3411
|
-
|
|
3412
|
-
|
|
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;
|
|
3413
3578
|
}
|
|
3414
3579
|
.caret {
|
|
3415
3580
|
display: inline-block;
|
|
@@ -3418,6 +3583,7 @@ tbody.collapse.in {
|
|
|
3418
3583
|
margin-left: 2px;
|
|
3419
3584
|
vertical-align: middle;
|
|
3420
3585
|
border-top: 4px dashed;
|
|
3586
|
+
border-top: 4px solid \9;
|
|
3421
3587
|
border-right: 4px solid transparent;
|
|
3422
3588
|
border-left: 4px solid transparent;
|
|
3423
3589
|
}
|
|
@@ -3442,13 +3608,12 @@ tbody.collapse.in {
|
|
|
3442
3608
|
text-align: left;
|
|
3443
3609
|
list-style: none;
|
|
3444
3610
|
background-color: #fff;
|
|
3445
|
-
|
|
3446
|
-
background-clip: padding-box;
|
|
3611
|
+
background-clip: padding-box;
|
|
3447
3612
|
border: 1px solid #ccc;
|
|
3448
|
-
border: 1px solid rgba(0, 0, 0, .15);
|
|
3613
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
3449
3614
|
border-radius: 4px;
|
|
3450
|
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
|
3451
|
-
|
|
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);
|
|
3452
3617
|
}
|
|
3453
3618
|
.dropdown-menu.pull-right {
|
|
3454
3619
|
right: 0;
|
|
@@ -3464,9 +3629,9 @@ tbody.collapse.in {
|
|
|
3464
3629
|
display: block;
|
|
3465
3630
|
padding: 3px 20px;
|
|
3466
3631
|
clear: both;
|
|
3467
|
-
font-weight:
|
|
3632
|
+
font-weight: 400;
|
|
3468
3633
|
line-height: 1.42857143;
|
|
3469
|
-
color: #
|
|
3634
|
+
color: #333333;
|
|
3470
3635
|
white-space: nowrap;
|
|
3471
3636
|
}
|
|
3472
3637
|
.dropdown-menu > li > a:hover,
|
|
@@ -3486,7 +3651,7 @@ tbody.collapse.in {
|
|
|
3486
3651
|
.dropdown-menu > .disabled > a,
|
|
3487
3652
|
.dropdown-menu > .disabled > a:hover,
|
|
3488
3653
|
.dropdown-menu > .disabled > a:focus {
|
|
3489
|
-
color: #
|
|
3654
|
+
color: #777777;
|
|
3490
3655
|
}
|
|
3491
3656
|
.dropdown-menu > .disabled > a:hover,
|
|
3492
3657
|
.dropdown-menu > .disabled > a:focus {
|
|
@@ -3515,7 +3680,7 @@ tbody.collapse.in {
|
|
|
3515
3680
|
padding: 3px 20px;
|
|
3516
3681
|
font-size: 12px;
|
|
3517
3682
|
line-height: 1.42857143;
|
|
3518
|
-
color: #
|
|
3683
|
+
color: #777777;
|
|
3519
3684
|
white-space: nowrap;
|
|
3520
3685
|
}
|
|
3521
3686
|
.dropdown-backdrop {
|
|
@@ -3534,7 +3699,8 @@ tbody.collapse.in {
|
|
|
3534
3699
|
.navbar-fixed-bottom .dropdown .caret {
|
|
3535
3700
|
content: "";
|
|
3536
3701
|
border-top: 0;
|
|
3537
|
-
border-bottom: 4px
|
|
3702
|
+
border-bottom: 4px dashed;
|
|
3703
|
+
border-bottom: 4px solid \9;
|
|
3538
3704
|
}
|
|
3539
3705
|
.dropup .dropdown-menu,
|
|
3540
3706
|
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
@@ -3582,6 +3748,7 @@ tbody.collapse.in {
|
|
|
3582
3748
|
.btn-toolbar {
|
|
3583
3749
|
margin-left: -5px;
|
|
3584
3750
|
}
|
|
3751
|
+
.btn-toolbar .btn,
|
|
3585
3752
|
.btn-toolbar .btn-group,
|
|
3586
3753
|
.btn-toolbar .input-group {
|
|
3587
3754
|
float: left;
|
|
@@ -3634,12 +3801,12 @@ tbody.collapse.in {
|
|
|
3634
3801
|
padding-left: 12px;
|
|
3635
3802
|
}
|
|
3636
3803
|
.btn-group.open .dropdown-toggle {
|
|
3637
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
|
3638
|
-
|
|
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);
|
|
3639
3806
|
}
|
|
3640
3807
|
.btn-group.open .dropdown-toggle.btn-link {
|
|
3641
3808
|
-webkit-box-shadow: none;
|
|
3642
|
-
|
|
3809
|
+
box-shadow: none;
|
|
3643
3810
|
}
|
|
3644
3811
|
.btn .caret {
|
|
3645
3812
|
margin-left: 0;
|
|
@@ -3673,6 +3840,7 @@ tbody.collapse.in {
|
|
|
3673
3840
|
border-radius: 0;
|
|
3674
3841
|
}
|
|
3675
3842
|
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
|
3843
|
+
border-top-left-radius: 4px;
|
|
3676
3844
|
border-top-right-radius: 4px;
|
|
3677
3845
|
border-bottom-right-radius: 0;
|
|
3678
3846
|
border-bottom-left-radius: 0;
|
|
@@ -3680,6 +3848,7 @@ tbody.collapse.in {
|
|
|
3680
3848
|
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
|
3681
3849
|
border-top-left-radius: 0;
|
|
3682
3850
|
border-top-right-radius: 0;
|
|
3851
|
+
border-bottom-right-radius: 4px;
|
|
3683
3852
|
border-bottom-left-radius: 4px;
|
|
3684
3853
|
}
|
|
3685
3854
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
@@ -3737,6 +3906,9 @@ tbody.collapse.in {
|
|
|
3737
3906
|
width: 100%;
|
|
3738
3907
|
margin-bottom: 0;
|
|
3739
3908
|
}
|
|
3909
|
+
.input-group .form-control:focus {
|
|
3910
|
+
z-index: 3;
|
|
3911
|
+
}
|
|
3740
3912
|
.input-group-lg > .form-control,
|
|
3741
3913
|
.input-group-lg > .input-group-addon,
|
|
3742
3914
|
.input-group-lg > .input-group-btn > .btn {
|
|
@@ -3802,11 +3974,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3802
3974
|
.input-group-addon {
|
|
3803
3975
|
padding: 6px 12px;
|
|
3804
3976
|
font-size: 14px;
|
|
3805
|
-
font-weight:
|
|
3977
|
+
font-weight: 400;
|
|
3806
3978
|
line-height: 1;
|
|
3807
|
-
color: #
|
|
3979
|
+
color: #555555;
|
|
3808
3980
|
text-align: center;
|
|
3809
|
-
background-color: #
|
|
3981
|
+
background-color: #eeeeee;
|
|
3810
3982
|
border: 1px solid #ccc;
|
|
3811
3983
|
border-radius: 4px;
|
|
3812
3984
|
}
|
|
@@ -3872,6 +4044,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3872
4044
|
}
|
|
3873
4045
|
.input-group-btn:last-child > .btn,
|
|
3874
4046
|
.input-group-btn:last-child > .btn-group {
|
|
4047
|
+
z-index: 2;
|
|
3875
4048
|
margin-left: -1px;
|
|
3876
4049
|
}
|
|
3877
4050
|
.nav {
|
|
@@ -3891,14 +4064,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3891
4064
|
.nav > li > a:hover,
|
|
3892
4065
|
.nav > li > a:focus {
|
|
3893
4066
|
text-decoration: none;
|
|
3894
|
-
background-color: #
|
|
4067
|
+
background-color: #eeeeee;
|
|
3895
4068
|
}
|
|
3896
4069
|
.nav > li.disabled > a {
|
|
3897
|
-
color: #
|
|
4070
|
+
color: #777777;
|
|
3898
4071
|
}
|
|
3899
4072
|
.nav > li.disabled > a:hover,
|
|
3900
4073
|
.nav > li.disabled > a:focus {
|
|
3901
|
-
color: #
|
|
4074
|
+
color: #777777;
|
|
3902
4075
|
text-decoration: none;
|
|
3903
4076
|
cursor: not-allowed;
|
|
3904
4077
|
background-color: transparent;
|
|
@@ -3906,7 +4079,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3906
4079
|
.nav .open > a,
|
|
3907
4080
|
.nav .open > a:hover,
|
|
3908
4081
|
.nav .open > a:focus {
|
|
3909
|
-
background-color: #
|
|
4082
|
+
background-color: #eeeeee;
|
|
3910
4083
|
border-color: #337ab7;
|
|
3911
4084
|
}
|
|
3912
4085
|
.nav .nav-divider {
|
|
@@ -3932,12 +4105,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
3932
4105
|
border-radius: 4px 4px 0 0;
|
|
3933
4106
|
}
|
|
3934
4107
|
.nav-tabs > li > a:hover {
|
|
3935
|
-
border-color: #
|
|
4108
|
+
border-color: #eeeeee #eeeeee #ddd;
|
|
3936
4109
|
}
|
|
3937
4110
|
.nav-tabs > li.active > a,
|
|
3938
4111
|
.nav-tabs > li.active > a:hover,
|
|
3939
4112
|
.nav-tabs > li.active > a:focus {
|
|
3940
|
-
color: #
|
|
4113
|
+
color: #555555;
|
|
3941
4114
|
cursor: default;
|
|
3942
4115
|
background-color: #fff;
|
|
3943
4116
|
border: 1px solid #ddd;
|
|
@@ -4086,10 +4259,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4086
4259
|
padding-right: 15px;
|
|
4087
4260
|
padding-left: 15px;
|
|
4088
4261
|
overflow-x: visible;
|
|
4089
|
-
-webkit-overflow-scrolling: touch;
|
|
4090
4262
|
border-top: 1px solid transparent;
|
|
4091
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
|
4092
|
-
|
|
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;
|
|
4093
4266
|
}
|
|
4094
4267
|
.navbar-collapse.in {
|
|
4095
4268
|
overflow-y: auto;
|
|
@@ -4099,7 +4272,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4099
4272
|
width: auto;
|
|
4100
4273
|
border-top: 0;
|
|
4101
4274
|
-webkit-box-shadow: none;
|
|
4102
|
-
|
|
4275
|
+
box-shadow: none;
|
|
4103
4276
|
}
|
|
4104
4277
|
.navbar-collapse.collapse {
|
|
4105
4278
|
display: block !important;
|
|
@@ -4117,6 +4290,13 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4117
4290
|
padding-left: 0;
|
|
4118
4291
|
}
|
|
4119
4292
|
}
|
|
4293
|
+
.navbar-fixed-top,
|
|
4294
|
+
.navbar-fixed-bottom {
|
|
4295
|
+
position: fixed;
|
|
4296
|
+
right: 0;
|
|
4297
|
+
left: 0;
|
|
4298
|
+
z-index: 1030;
|
|
4299
|
+
}
|
|
4120
4300
|
.navbar-fixed-top .navbar-collapse,
|
|
4121
4301
|
.navbar-fixed-bottom .navbar-collapse {
|
|
4122
4302
|
max-height: 340px;
|
|
@@ -4127,6 +4307,21 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4127
4307
|
max-height: 200px;
|
|
4128
4308
|
}
|
|
4129
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
|
+
}
|
|
4130
4325
|
.container > .navbar-header,
|
|
4131
4326
|
.container-fluid > .navbar-header,
|
|
4132
4327
|
.container > .navbar-collapse,
|
|
@@ -4152,28 +4347,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4152
4347
|
border-radius: 0;
|
|
4153
4348
|
}
|
|
4154
4349
|
}
|
|
4155
|
-
.navbar-fixed-top,
|
|
4156
|
-
.navbar-fixed-bottom {
|
|
4157
|
-
position: fixed;
|
|
4158
|
-
right: 0;
|
|
4159
|
-
left: 0;
|
|
4160
|
-
z-index: 1030;
|
|
4161
|
-
}
|
|
4162
|
-
@media (min-width: 768px) {
|
|
4163
|
-
.navbar-fixed-top,
|
|
4164
|
-
.navbar-fixed-bottom {
|
|
4165
|
-
border-radius: 0;
|
|
4166
|
-
}
|
|
4167
|
-
}
|
|
4168
|
-
.navbar-fixed-top {
|
|
4169
|
-
top: 0;
|
|
4170
|
-
border-width: 0 0 1px;
|
|
4171
|
-
}
|
|
4172
|
-
.navbar-fixed-bottom {
|
|
4173
|
-
bottom: 0;
|
|
4174
|
-
margin-bottom: 0;
|
|
4175
|
-
border-width: 1px 0 0;
|
|
4176
|
-
}
|
|
4177
4350
|
.navbar-brand {
|
|
4178
4351
|
float: left;
|
|
4179
4352
|
height: 50px;
|
|
@@ -4198,8 +4371,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4198
4371
|
position: relative;
|
|
4199
4372
|
float: right;
|
|
4200
4373
|
padding: 9px 10px;
|
|
4201
|
-
margin-top: 8px;
|
|
4202
4374
|
margin-right: 15px;
|
|
4375
|
+
margin-top: 8px;
|
|
4203
4376
|
margin-bottom: 8px;
|
|
4204
4377
|
background-color: transparent;
|
|
4205
4378
|
background-image: none;
|
|
@@ -4240,7 +4413,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4240
4413
|
background-color: transparent;
|
|
4241
4414
|
border: 0;
|
|
4242
4415
|
-webkit-box-shadow: none;
|
|
4243
|
-
|
|
4416
|
+
box-shadow: none;
|
|
4244
4417
|
}
|
|
4245
4418
|
.navbar-nav .open .dropdown-menu > li > a,
|
|
4246
4419
|
.navbar-nav .open .dropdown-menu .dropdown-header {
|
|
@@ -4269,14 +4442,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4269
4442
|
}
|
|
4270
4443
|
.navbar-form {
|
|
4271
4444
|
padding: 10px 15px;
|
|
4272
|
-
margin-top: 8px;
|
|
4273
4445
|
margin-right: -15px;
|
|
4274
|
-
margin-bottom: 8px;
|
|
4275
4446
|
margin-left: -15px;
|
|
4276
4447
|
border-top: 1px solid transparent;
|
|
4277
4448
|
border-bottom: 1px solid transparent;
|
|
4278
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
|
4279
|
-
|
|
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;
|
|
4280
4453
|
}
|
|
4281
4454
|
@media (min-width: 768px) {
|
|
4282
4455
|
.navbar-form .form-group {
|
|
@@ -4345,7 +4518,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4345
4518
|
margin-left: 0;
|
|
4346
4519
|
border: 0;
|
|
4347
4520
|
-webkit-box-shadow: none;
|
|
4348
|
-
|
|
4521
|
+
box-shadow: none;
|
|
4349
4522
|
}
|
|
4350
4523
|
}
|
|
4351
4524
|
.navbar-nav > li > .dropdown-menu {
|
|
@@ -4430,20 +4603,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4430
4603
|
color: #ccc;
|
|
4431
4604
|
background-color: transparent;
|
|
4432
4605
|
}
|
|
4433
|
-
.navbar-default .navbar-toggle {
|
|
4434
|
-
border-color: #ddd;
|
|
4435
|
-
}
|
|
4436
|
-
.navbar-default .navbar-toggle:hover,
|
|
4437
|
-
.navbar-default .navbar-toggle:focus {
|
|
4438
|
-
background-color: #ddd;
|
|
4439
|
-
}
|
|
4440
|
-
.navbar-default .navbar-toggle .icon-bar {
|
|
4441
|
-
background-color: #888;
|
|
4442
|
-
}
|
|
4443
|
-
.navbar-default .navbar-collapse,
|
|
4444
|
-
.navbar-default .navbar-form {
|
|
4445
|
-
border-color: #e7e7e7;
|
|
4446
|
-
}
|
|
4447
4606
|
.navbar-default .navbar-nav > .open > a,
|
|
4448
4607
|
.navbar-default .navbar-nav > .open > a:hover,
|
|
4449
4608
|
.navbar-default .navbar-nav > .open > a:focus {
|
|
@@ -4472,6 +4631,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
|
4472
4631
|
background-color: transparent;
|
|
4473
4632
|
}
|
|
4474
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
|
+
}
|
|
4475
4648
|
.navbar-default .navbar-link {
|
|
4476
4649
|
color: #777;
|
|
4477
4650
|
}
|
|
@@ -4526,20 +4699,6 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
|
4526
4699
|
color: #444;
|
|
4527
4700
|
background-color: transparent;
|
|
4528
4701
|
}
|
|
4529
|
-
.navbar-inverse .navbar-toggle {
|
|
4530
|
-
border-color: #333;
|
|
4531
|
-
}
|
|
4532
|
-
.navbar-inverse .navbar-toggle:hover,
|
|
4533
|
-
.navbar-inverse .navbar-toggle:focus {
|
|
4534
|
-
background-color: #333;
|
|
4535
|
-
}
|
|
4536
|
-
.navbar-inverse .navbar-toggle .icon-bar {
|
|
4537
|
-
background-color: #fff;
|
|
4538
|
-
}
|
|
4539
|
-
.navbar-inverse .navbar-collapse,
|
|
4540
|
-
.navbar-inverse .navbar-form {
|
|
4541
|
-
border-color: #101010;
|
|
4542
|
-
}
|
|
4543
4702
|
.navbar-inverse .navbar-nav > .open > a,
|
|
4544
4703
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
|
4545
4704
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
|
@@ -4574,6 +4733,20 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
|
4574
4733
|
background-color: transparent;
|
|
4575
4734
|
}
|
|
4576
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
|
+
}
|
|
4577
4750
|
.navbar-inverse .navbar-link {
|
|
4578
4751
|
color: #9d9d9d;
|
|
4579
4752
|
}
|
|
@@ -4609,7 +4782,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4609
4782
|
content: "/\00a0";
|
|
4610
4783
|
}
|
|
4611
4784
|
.breadcrumb > .active {
|
|
4612
|
-
color: #
|
|
4785
|
+
color: #777777;
|
|
4613
4786
|
}
|
|
4614
4787
|
.pagination {
|
|
4615
4788
|
display: inline-block;
|
|
@@ -4632,6 +4805,15 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4632
4805
|
background-color: #fff;
|
|
4633
4806
|
border: 1px solid #ddd;
|
|
4634
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
|
+
}
|
|
4635
4817
|
.pagination > li:first-child > a,
|
|
4636
4818
|
.pagination > li:first-child > span {
|
|
4637
4819
|
margin-left: 0;
|
|
@@ -4643,21 +4825,13 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4643
4825
|
border-top-right-radius: 4px;
|
|
4644
4826
|
border-bottom-right-radius: 4px;
|
|
4645
4827
|
}
|
|
4646
|
-
.pagination > li > a:hover,
|
|
4647
|
-
.pagination > li > span:hover,
|
|
4648
|
-
.pagination > li > a:focus,
|
|
4649
|
-
.pagination > li > span:focus {
|
|
4650
|
-
color: #23527c;
|
|
4651
|
-
background-color: #eee;
|
|
4652
|
-
border-color: #ddd;
|
|
4653
|
-
}
|
|
4654
4828
|
.pagination > .active > a,
|
|
4655
4829
|
.pagination > .active > span,
|
|
4656
4830
|
.pagination > .active > a:hover,
|
|
4657
4831
|
.pagination > .active > span:hover,
|
|
4658
4832
|
.pagination > .active > a:focus,
|
|
4659
4833
|
.pagination > .active > span:focus {
|
|
4660
|
-
z-index:
|
|
4834
|
+
z-index: 3;
|
|
4661
4835
|
color: #fff;
|
|
4662
4836
|
cursor: default;
|
|
4663
4837
|
background-color: #337ab7;
|
|
@@ -4669,7 +4843,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4669
4843
|
.pagination > .disabled > a,
|
|
4670
4844
|
.pagination > .disabled > a:hover,
|
|
4671
4845
|
.pagination > .disabled > a:focus {
|
|
4672
|
-
color: #
|
|
4846
|
+
color: #777777;
|
|
4673
4847
|
cursor: not-allowed;
|
|
4674
4848
|
background-color: #fff;
|
|
4675
4849
|
border-color: #ddd;
|
|
@@ -4678,6 +4852,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4678
4852
|
.pagination-lg > li > span {
|
|
4679
4853
|
padding: 10px 16px;
|
|
4680
4854
|
font-size: 18px;
|
|
4855
|
+
line-height: 1.3333333;
|
|
4681
4856
|
}
|
|
4682
4857
|
.pagination-lg > li:first-child > a,
|
|
4683
4858
|
.pagination-lg > li:first-child > span {
|
|
@@ -4693,6 +4868,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4693
4868
|
.pagination-sm > li > span {
|
|
4694
4869
|
padding: 5px 10px;
|
|
4695
4870
|
font-size: 12px;
|
|
4871
|
+
line-height: 1.5;
|
|
4696
4872
|
}
|
|
4697
4873
|
.pagination-sm > li:first-child > a,
|
|
4698
4874
|
.pagination-sm > li:first-child > span {
|
|
@@ -4724,7 +4900,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4724
4900
|
.pager li > a:hover,
|
|
4725
4901
|
.pager li > a:focus {
|
|
4726
4902
|
text-decoration: none;
|
|
4727
|
-
background-color: #
|
|
4903
|
+
background-color: #eeeeee;
|
|
4728
4904
|
}
|
|
4729
4905
|
.pager .next > a,
|
|
4730
4906
|
.pager .next > span {
|
|
@@ -4738,21 +4914,21 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
|
4738
4914
|
.pager .disabled > a:hover,
|
|
4739
4915
|
.pager .disabled > a:focus,
|
|
4740
4916
|
.pager .disabled > span {
|
|
4741
|
-
color: #
|
|
4917
|
+
color: #777777;
|
|
4742
4918
|
cursor: not-allowed;
|
|
4743
4919
|
background-color: #fff;
|
|
4744
4920
|
}
|
|
4745
4921
|
.label {
|
|
4746
4922
|
display: inline;
|
|
4747
|
-
padding: .2em .6em .3em;
|
|
4923
|
+
padding: 0.2em 0.6em 0.3em;
|
|
4748
4924
|
font-size: 75%;
|
|
4749
|
-
font-weight:
|
|
4925
|
+
font-weight: 700;
|
|
4750
4926
|
line-height: 1;
|
|
4751
4927
|
color: #fff;
|
|
4752
4928
|
text-align: center;
|
|
4753
4929
|
white-space: nowrap;
|
|
4754
4930
|
vertical-align: baseline;
|
|
4755
|
-
border-radius: .25em;
|
|
4931
|
+
border-radius: 0.25em;
|
|
4756
4932
|
}
|
|
4757
4933
|
a.label:hover,
|
|
4758
4934
|
a.label:focus {
|
|
@@ -4768,7 +4944,7 @@ a.label:focus {
|
|
|
4768
4944
|
top: -1px;
|
|
4769
4945
|
}
|
|
4770
4946
|
.label-default {
|
|
4771
|
-
background-color: #
|
|
4947
|
+
background-color: #777777;
|
|
4772
4948
|
}
|
|
4773
4949
|
.label-default[href]:hover,
|
|
4774
4950
|
.label-default[href]:focus {
|
|
@@ -4819,8 +4995,8 @@ a.label:focus {
|
|
|
4819
4995
|
color: #fff;
|
|
4820
4996
|
text-align: center;
|
|
4821
4997
|
white-space: nowrap;
|
|
4822
|
-
vertical-align:
|
|
4823
|
-
background-color: #
|
|
4998
|
+
vertical-align: middle;
|
|
4999
|
+
background-color: #777777;
|
|
4824
5000
|
border-radius: 10px;
|
|
4825
5001
|
}
|
|
4826
5002
|
.badge:empty {
|
|
@@ -4856,10 +5032,11 @@ a.badge:focus {
|
|
|
4856
5032
|
margin-left: 3px;
|
|
4857
5033
|
}
|
|
4858
5034
|
.jumbotron {
|
|
4859
|
-
padding: 30px
|
|
5035
|
+
padding-top: 30px;
|
|
5036
|
+
padding-bottom: 30px;
|
|
4860
5037
|
margin-bottom: 30px;
|
|
4861
5038
|
color: inherit;
|
|
4862
|
-
background-color: #
|
|
5039
|
+
background-color: #eeeeee;
|
|
4863
5040
|
}
|
|
4864
5041
|
.jumbotron h1,
|
|
4865
5042
|
.jumbotron .h1 {
|
|
@@ -4875,6 +5052,8 @@ a.badge:focus {
|
|
|
4875
5052
|
}
|
|
4876
5053
|
.container .jumbotron,
|
|
4877
5054
|
.container-fluid .jumbotron {
|
|
5055
|
+
padding-right: 15px;
|
|
5056
|
+
padding-left: 15px;
|
|
4878
5057
|
border-radius: 6px;
|
|
4879
5058
|
}
|
|
4880
5059
|
.jumbotron .container {
|
|
@@ -4882,7 +5061,8 @@ a.badge:focus {
|
|
|
4882
5061
|
}
|
|
4883
5062
|
@media screen and (min-width: 768px) {
|
|
4884
5063
|
.jumbotron {
|
|
4885
|
-
padding: 48px
|
|
5064
|
+
padding-top: 48px;
|
|
5065
|
+
padding-bottom: 48px;
|
|
4886
5066
|
}
|
|
4887
5067
|
.container .jumbotron,
|
|
4888
5068
|
.container-fluid .jumbotron {
|
|
@@ -4902,9 +5082,9 @@ a.badge:focus {
|
|
|
4902
5082
|
background-color: #fff;
|
|
4903
5083
|
border: 1px solid #ddd;
|
|
4904
5084
|
border-radius: 4px;
|
|
4905
|
-
-webkit-transition: border .2s ease-in-out;
|
|
4906
|
-
|
|
4907
|
-
|
|
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;
|
|
4908
5088
|
}
|
|
4909
5089
|
.thumbnail > img,
|
|
4910
5090
|
.thumbnail a > img {
|
|
@@ -4918,7 +5098,7 @@ a.thumbnail.active {
|
|
|
4918
5098
|
}
|
|
4919
5099
|
.thumbnail .caption {
|
|
4920
5100
|
padding: 9px;
|
|
4921
|
-
color: #
|
|
5101
|
+
color: #333333;
|
|
4922
5102
|
}
|
|
4923
5103
|
.alert {
|
|
4924
5104
|
padding: 15px;
|
|
@@ -5025,69 +5205,69 @@ a.thumbnail.active {
|
|
|
5025
5205
|
overflow: hidden;
|
|
5026
5206
|
background-color: #f5f5f5;
|
|
5027
5207
|
border-radius: 4px;
|
|
5028
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
|
5029
|
-
|
|
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);
|
|
5030
5210
|
}
|
|
5031
5211
|
.progress-bar {
|
|
5032
5212
|
float: left;
|
|
5033
|
-
width: 0
|
|
5213
|
+
width: 0%;
|
|
5034
5214
|
height: 100%;
|
|
5035
5215
|
font-size: 12px;
|
|
5036
5216
|
line-height: 20px;
|
|
5037
5217
|
color: #fff;
|
|
5038
5218
|
text-align: center;
|
|
5039
5219
|
background-color: #337ab7;
|
|
5040
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
|
5041
|
-
|
|
5042
|
-
-webkit-transition: width .6s ease;
|
|
5043
|
-
|
|
5044
|
-
|
|
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;
|
|
5045
5225
|
}
|
|
5046
5226
|
.progress-striped .progress-bar,
|
|
5047
5227
|
.progress-bar-striped {
|
|
5048
|
-
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);
|
|
5049
|
-
background-image:
|
|
5050
|
-
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);
|
|
5051
5231
|
-webkit-background-size: 40px 40px;
|
|
5052
|
-
|
|
5232
|
+
background-size: 40px 40px;
|
|
5053
5233
|
}
|
|
5054
5234
|
.progress.active .progress-bar,
|
|
5055
5235
|
.progress-bar.active {
|
|
5056
5236
|
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
|
5057
|
-
|
|
5058
|
-
|
|
5237
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
|
5238
|
+
animation: progress-bar-stripes 2s linear infinite;
|
|
5059
5239
|
}
|
|
5060
5240
|
.progress-bar-success {
|
|
5061
5241
|
background-color: #5cb85c;
|
|
5062
5242
|
}
|
|
5063
5243
|
.progress-striped .progress-bar-success {
|
|
5064
|
-
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);
|
|
5065
|
-
background-image:
|
|
5066
|
-
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);
|
|
5067
5247
|
}
|
|
5068
5248
|
.progress-bar-info {
|
|
5069
5249
|
background-color: #5bc0de;
|
|
5070
5250
|
}
|
|
5071
5251
|
.progress-striped .progress-bar-info {
|
|
5072
|
-
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);
|
|
5073
|
-
background-image:
|
|
5074
|
-
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);
|
|
5075
5255
|
}
|
|
5076
5256
|
.progress-bar-warning {
|
|
5077
5257
|
background-color: #f0ad4e;
|
|
5078
5258
|
}
|
|
5079
5259
|
.progress-striped .progress-bar-warning {
|
|
5080
|
-
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);
|
|
5081
|
-
background-image:
|
|
5082
|
-
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);
|
|
5083
5263
|
}
|
|
5084
5264
|
.progress-bar-danger {
|
|
5085
5265
|
background-color: #d9534f;
|
|
5086
5266
|
}
|
|
5087
5267
|
.progress-striped .progress-bar-danger {
|
|
5088
|
-
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);
|
|
5089
|
-
background-image:
|
|
5090
|
-
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);
|
|
5091
5271
|
}
|
|
5092
5272
|
.media {
|
|
5093
5273
|
margin-top: 15px;
|
|
@@ -5106,6 +5286,9 @@ a.thumbnail.active {
|
|
|
5106
5286
|
.media-object {
|
|
5107
5287
|
display: block;
|
|
5108
5288
|
}
|
|
5289
|
+
.media-object.img-thumbnail {
|
|
5290
|
+
max-width: none;
|
|
5291
|
+
}
|
|
5109
5292
|
.media-right,
|
|
5110
5293
|
.media > .pull-right {
|
|
5111
5294
|
padding-left: 10px;
|
|
@@ -5155,24 +5338,12 @@ a.thumbnail.active {
|
|
|
5155
5338
|
border-bottom-right-radius: 4px;
|
|
5156
5339
|
border-bottom-left-radius: 4px;
|
|
5157
5340
|
}
|
|
5158
|
-
a.list-group-item {
|
|
5159
|
-
color: #555;
|
|
5160
|
-
}
|
|
5161
|
-
a.list-group-item .list-group-item-heading {
|
|
5162
|
-
color: #333;
|
|
5163
|
-
}
|
|
5164
|
-
a.list-group-item:hover,
|
|
5165
|
-
a.list-group-item:focus {
|
|
5166
|
-
color: #555;
|
|
5167
|
-
text-decoration: none;
|
|
5168
|
-
background-color: #f5f5f5;
|
|
5169
|
-
}
|
|
5170
5341
|
.list-group-item.disabled,
|
|
5171
5342
|
.list-group-item.disabled:hover,
|
|
5172
5343
|
.list-group-item.disabled:focus {
|
|
5173
|
-
color: #
|
|
5344
|
+
color: #777777;
|
|
5174
5345
|
cursor: not-allowed;
|
|
5175
|
-
background-color: #
|
|
5346
|
+
background-color: #eeeeee;
|
|
5176
5347
|
}
|
|
5177
5348
|
.list-group-item.disabled .list-group-item-heading,
|
|
5178
5349
|
.list-group-item.disabled:hover .list-group-item-heading,
|
|
@@ -5182,7 +5353,7 @@ a.list-group-item:focus {
|
|
|
5182
5353
|
.list-group-item.disabled .list-group-item-text,
|
|
5183
5354
|
.list-group-item.disabled:hover .list-group-item-text,
|
|
5184
5355
|
.list-group-item.disabled:focus .list-group-item-text {
|
|
5185
|
-
color: #
|
|
5356
|
+
color: #777777;
|
|
5186
5357
|
}
|
|
5187
5358
|
.list-group-item.active,
|
|
5188
5359
|
.list-group-item.active:hover,
|
|
@@ -5208,24 +5379,51 @@ a.list-group-item:focus {
|
|
|
5208
5379
|
.list-group-item.active:focus .list-group-item-text {
|
|
5209
5380
|
color: #c7ddef;
|
|
5210
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
|
+
}
|
|
5211
5402
|
.list-group-item-success {
|
|
5212
5403
|
color: #3c763d;
|
|
5213
5404
|
background-color: #dff0d8;
|
|
5214
5405
|
}
|
|
5215
|
-
a.list-group-item-success
|
|
5406
|
+
a.list-group-item-success,
|
|
5407
|
+
button.list-group-item-success {
|
|
5216
5408
|
color: #3c763d;
|
|
5217
5409
|
}
|
|
5218
|
-
a.list-group-item-success .list-group-item-heading
|
|
5410
|
+
a.list-group-item-success .list-group-item-heading,
|
|
5411
|
+
button.list-group-item-success .list-group-item-heading {
|
|
5219
5412
|
color: inherit;
|
|
5220
5413
|
}
|
|
5221
5414
|
a.list-group-item-success:hover,
|
|
5222
|
-
|
|
5415
|
+
button.list-group-item-success:hover,
|
|
5416
|
+
a.list-group-item-success:focus,
|
|
5417
|
+
button.list-group-item-success:focus {
|
|
5223
5418
|
color: #3c763d;
|
|
5224
5419
|
background-color: #d0e9c6;
|
|
5225
5420
|
}
|
|
5226
5421
|
a.list-group-item-success.active,
|
|
5422
|
+
button.list-group-item-success.active,
|
|
5227
5423
|
a.list-group-item-success.active:hover,
|
|
5228
|
-
|
|
5424
|
+
button.list-group-item-success.active:hover,
|
|
5425
|
+
a.list-group-item-success.active:focus,
|
|
5426
|
+
button.list-group-item-success.active:focus {
|
|
5229
5427
|
color: #fff;
|
|
5230
5428
|
background-color: #3c763d;
|
|
5231
5429
|
border-color: #3c763d;
|
|
@@ -5234,20 +5432,27 @@ a.list-group-item-success.active:focus {
|
|
|
5234
5432
|
color: #31708f;
|
|
5235
5433
|
background-color: #d9edf7;
|
|
5236
5434
|
}
|
|
5237
|
-
a.list-group-item-info
|
|
5435
|
+
a.list-group-item-info,
|
|
5436
|
+
button.list-group-item-info {
|
|
5238
5437
|
color: #31708f;
|
|
5239
5438
|
}
|
|
5240
|
-
a.list-group-item-info .list-group-item-heading
|
|
5439
|
+
a.list-group-item-info .list-group-item-heading,
|
|
5440
|
+
button.list-group-item-info .list-group-item-heading {
|
|
5241
5441
|
color: inherit;
|
|
5242
5442
|
}
|
|
5243
5443
|
a.list-group-item-info:hover,
|
|
5244
|
-
|
|
5444
|
+
button.list-group-item-info:hover,
|
|
5445
|
+
a.list-group-item-info:focus,
|
|
5446
|
+
button.list-group-item-info:focus {
|
|
5245
5447
|
color: #31708f;
|
|
5246
5448
|
background-color: #c4e3f3;
|
|
5247
5449
|
}
|
|
5248
5450
|
a.list-group-item-info.active,
|
|
5451
|
+
button.list-group-item-info.active,
|
|
5249
5452
|
a.list-group-item-info.active:hover,
|
|
5250
|
-
|
|
5453
|
+
button.list-group-item-info.active:hover,
|
|
5454
|
+
a.list-group-item-info.active:focus,
|
|
5455
|
+
button.list-group-item-info.active:focus {
|
|
5251
5456
|
color: #fff;
|
|
5252
5457
|
background-color: #31708f;
|
|
5253
5458
|
border-color: #31708f;
|
|
@@ -5256,20 +5461,27 @@ a.list-group-item-info.active:focus {
|
|
|
5256
5461
|
color: #8a6d3b;
|
|
5257
5462
|
background-color: #fcf8e3;
|
|
5258
5463
|
}
|
|
5259
|
-
a.list-group-item-warning
|
|
5464
|
+
a.list-group-item-warning,
|
|
5465
|
+
button.list-group-item-warning {
|
|
5260
5466
|
color: #8a6d3b;
|
|
5261
5467
|
}
|
|
5262
|
-
a.list-group-item-warning .list-group-item-heading
|
|
5468
|
+
a.list-group-item-warning .list-group-item-heading,
|
|
5469
|
+
button.list-group-item-warning .list-group-item-heading {
|
|
5263
5470
|
color: inherit;
|
|
5264
5471
|
}
|
|
5265
5472
|
a.list-group-item-warning:hover,
|
|
5266
|
-
|
|
5473
|
+
button.list-group-item-warning:hover,
|
|
5474
|
+
a.list-group-item-warning:focus,
|
|
5475
|
+
button.list-group-item-warning:focus {
|
|
5267
5476
|
color: #8a6d3b;
|
|
5268
5477
|
background-color: #faf2cc;
|
|
5269
5478
|
}
|
|
5270
5479
|
a.list-group-item-warning.active,
|
|
5480
|
+
button.list-group-item-warning.active,
|
|
5271
5481
|
a.list-group-item-warning.active:hover,
|
|
5272
|
-
|
|
5482
|
+
button.list-group-item-warning.active:hover,
|
|
5483
|
+
a.list-group-item-warning.active:focus,
|
|
5484
|
+
button.list-group-item-warning.active:focus {
|
|
5273
5485
|
color: #fff;
|
|
5274
5486
|
background-color: #8a6d3b;
|
|
5275
5487
|
border-color: #8a6d3b;
|
|
@@ -5278,20 +5490,27 @@ a.list-group-item-warning.active:focus {
|
|
|
5278
5490
|
color: #a94442;
|
|
5279
5491
|
background-color: #f2dede;
|
|
5280
5492
|
}
|
|
5281
|
-
a.list-group-item-danger
|
|
5493
|
+
a.list-group-item-danger,
|
|
5494
|
+
button.list-group-item-danger {
|
|
5282
5495
|
color: #a94442;
|
|
5283
5496
|
}
|
|
5284
|
-
a.list-group-item-danger .list-group-item-heading
|
|
5497
|
+
a.list-group-item-danger .list-group-item-heading,
|
|
5498
|
+
button.list-group-item-danger .list-group-item-heading {
|
|
5285
5499
|
color: inherit;
|
|
5286
5500
|
}
|
|
5287
5501
|
a.list-group-item-danger:hover,
|
|
5288
|
-
|
|
5502
|
+
button.list-group-item-danger:hover,
|
|
5503
|
+
a.list-group-item-danger:focus,
|
|
5504
|
+
button.list-group-item-danger:focus {
|
|
5289
5505
|
color: #a94442;
|
|
5290
5506
|
background-color: #ebcccc;
|
|
5291
5507
|
}
|
|
5292
5508
|
a.list-group-item-danger.active,
|
|
5509
|
+
button.list-group-item-danger.active,
|
|
5293
5510
|
a.list-group-item-danger.active:hover,
|
|
5294
|
-
|
|
5511
|
+
button.list-group-item-danger.active:hover,
|
|
5512
|
+
a.list-group-item-danger.active:focus,
|
|
5513
|
+
button.list-group-item-danger.active:focus {
|
|
5295
5514
|
color: #fff;
|
|
5296
5515
|
background-color: #a94442;
|
|
5297
5516
|
border-color: #a94442;
|
|
@@ -5309,8 +5528,8 @@ a.list-group-item-danger.active:focus {
|
|
|
5309
5528
|
background-color: #fff;
|
|
5310
5529
|
border: 1px solid transparent;
|
|
5311
5530
|
border-radius: 4px;
|
|
5312
|
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
|
5313
|
-
|
|
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);
|
|
5314
5533
|
}
|
|
5315
5534
|
.panel-body {
|
|
5316
5535
|
padding: 15px;
|
|
@@ -5365,6 +5584,10 @@ a.list-group-item-danger.active:focus {
|
|
|
5365
5584
|
border-bottom-right-radius: 3px;
|
|
5366
5585
|
border-bottom-left-radius: 3px;
|
|
5367
5586
|
}
|
|
5587
|
+
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
|
5588
|
+
border-top-left-radius: 0;
|
|
5589
|
+
border-top-right-radius: 0;
|
|
5590
|
+
}
|
|
5368
5591
|
.panel-heading + .list-group .list-group-item:first-child {
|
|
5369
5592
|
border-top-width: 0;
|
|
5370
5593
|
}
|
|
@@ -5539,7 +5762,7 @@ a.list-group-item-danger.active:focus {
|
|
|
5539
5762
|
border-color: #ddd;
|
|
5540
5763
|
}
|
|
5541
5764
|
.panel-default > .panel-heading {
|
|
5542
|
-
color: #
|
|
5765
|
+
color: #333333;
|
|
5543
5766
|
background-color: #f5f5f5;
|
|
5544
5767
|
border-color: #ddd;
|
|
5545
5768
|
}
|
|
@@ -5548,7 +5771,7 @@ a.list-group-item-danger.active:focus {
|
|
|
5548
5771
|
}
|
|
5549
5772
|
.panel-default > .panel-heading .badge {
|
|
5550
5773
|
color: #f5f5f5;
|
|
5551
|
-
background-color: #
|
|
5774
|
+
background-color: #333333;
|
|
5552
5775
|
}
|
|
5553
5776
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
|
5554
5777
|
border-bottom-color: #ddd;
|
|
@@ -5676,12 +5899,12 @@ a.list-group-item-danger.active:focus {
|
|
|
5676
5899
|
background-color: #f5f5f5;
|
|
5677
5900
|
border: 1px solid #e3e3e3;
|
|
5678
5901
|
border-radius: 4px;
|
|
5679
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
|
5680
|
-
|
|
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);
|
|
5681
5904
|
}
|
|
5682
5905
|
.well blockquote {
|
|
5683
5906
|
border-color: #ddd;
|
|
5684
|
-
border-color: rgba(0, 0, 0, .15);
|
|
5907
|
+
border-color: rgba(0, 0, 0, 0.15);
|
|
5685
5908
|
}
|
|
5686
5909
|
.well-lg {
|
|
5687
5910
|
padding: 24px;
|
|
@@ -5699,7 +5922,7 @@ a.list-group-item-danger.active:focus {
|
|
|
5699
5922
|
color: #000;
|
|
5700
5923
|
text-shadow: 0 1px 0 #fff;
|
|
5701
5924
|
filter: alpha(opacity=20);
|
|
5702
|
-
opacity: .2;
|
|
5925
|
+
opacity: 0.2;
|
|
5703
5926
|
}
|
|
5704
5927
|
.close:hover,
|
|
5705
5928
|
.close:focus {
|
|
@@ -5707,14 +5930,16 @@ a.list-group-item-danger.active:focus {
|
|
|
5707
5930
|
text-decoration: none;
|
|
5708
5931
|
cursor: pointer;
|
|
5709
5932
|
filter: alpha(opacity=50);
|
|
5710
|
-
opacity: .5;
|
|
5933
|
+
opacity: 0.5;
|
|
5711
5934
|
}
|
|
5712
5935
|
button.close {
|
|
5713
|
-
-webkit-appearance: none;
|
|
5714
5936
|
padding: 0;
|
|
5715
5937
|
cursor: pointer;
|
|
5716
5938
|
background: transparent;
|
|
5717
5939
|
border: 0;
|
|
5940
|
+
-webkit-appearance: none;
|
|
5941
|
+
-moz-appearance: none;
|
|
5942
|
+
appearance: none;
|
|
5718
5943
|
}
|
|
5719
5944
|
.modal-open {
|
|
5720
5945
|
overflow: hidden;
|
|
@@ -5732,19 +5957,21 @@ button.close {
|
|
|
5732
5957
|
outline: 0;
|
|
5733
5958
|
}
|
|
5734
5959
|
.modal.fade .modal-dialog {
|
|
5735
|
-
-webkit-transition: -webkit-transform .3s ease-out;
|
|
5736
|
-
-o-transition: -o-transform .3s ease-out;
|
|
5737
|
-
transition: transform .3s ease-out;
|
|
5738
5960
|
-webkit-transform: translate(0, -25%);
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
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;
|
|
5742
5969
|
}
|
|
5743
5970
|
.modal.in .modal-dialog {
|
|
5744
5971
|
-webkit-transform: translate(0, 0);
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5972
|
+
-ms-transform: translate(0, 0);
|
|
5973
|
+
-o-transform: translate(0, 0);
|
|
5974
|
+
transform: translate(0, 0);
|
|
5748
5975
|
}
|
|
5749
5976
|
.modal-open .modal {
|
|
5750
5977
|
overflow-x: hidden;
|
|
@@ -5758,14 +5985,13 @@ button.close {
|
|
|
5758
5985
|
.modal-content {
|
|
5759
5986
|
position: relative;
|
|
5760
5987
|
background-color: #fff;
|
|
5761
|
-
|
|
5762
|
-
background-clip: padding-box;
|
|
5988
|
+
background-clip: padding-box;
|
|
5763
5989
|
border: 1px solid #999;
|
|
5764
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
|
5990
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
5765
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);
|
|
5766
5994
|
outline: 0;
|
|
5767
|
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
|
5768
|
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
|
5769
5995
|
}
|
|
5770
5996
|
.modal-backdrop {
|
|
5771
5997
|
position: fixed;
|
|
@@ -5782,10 +6008,9 @@ button.close {
|
|
|
5782
6008
|
}
|
|
5783
6009
|
.modal-backdrop.in {
|
|
5784
6010
|
filter: alpha(opacity=50);
|
|
5785
|
-
opacity: .5;
|
|
6011
|
+
opacity: 0.5;
|
|
5786
6012
|
}
|
|
5787
6013
|
.modal-header {
|
|
5788
|
-
min-height: 16.42857143px;
|
|
5789
6014
|
padding: 15px;
|
|
5790
6015
|
border-bottom: 1px solid #e5e5e5;
|
|
5791
6016
|
}
|
|
@@ -5828,8 +6053,8 @@ button.close {
|
|
|
5828
6053
|
margin: 30px auto;
|
|
5829
6054
|
}
|
|
5830
6055
|
.modal-content {
|
|
5831
|
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
|
5832
|
-
|
|
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);
|
|
5833
6058
|
}
|
|
5834
6059
|
.modal-sm {
|
|
5835
6060
|
width: 300px;
|
|
@@ -5845,15 +6070,27 @@ button.close {
|
|
|
5845
6070
|
z-index: 1070;
|
|
5846
6071
|
display: block;
|
|
5847
6072
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
6073
|
+
font-style: normal;
|
|
6074
|
+
font-weight: 400;
|
|
6075
|
+
line-height: 1.42857143;
|
|
6076
|
+
line-break: auto;
|
|
6077
|
+
text-align: left;
|
|
6078
|
+
text-align: start;
|
|
6079
|
+
text-decoration: none;
|
|
6080
|
+
text-shadow: none;
|
|
6081
|
+
text-transform: none;
|
|
6082
|
+
letter-spacing: normal;
|
|
6083
|
+
word-break: normal;
|
|
6084
|
+
word-spacing: normal;
|
|
6085
|
+
word-wrap: normal;
|
|
6086
|
+
white-space: normal;
|
|
5848
6087
|
font-size: 12px;
|
|
5849
|
-
font-weight: normal;
|
|
5850
|
-
line-height: 1.4;
|
|
5851
6088
|
filter: alpha(opacity=0);
|
|
5852
6089
|
opacity: 0;
|
|
5853
6090
|
}
|
|
5854
6091
|
.tooltip.in {
|
|
5855
6092
|
filter: alpha(opacity=90);
|
|
5856
|
-
opacity: .9;
|
|
6093
|
+
opacity: 0.9;
|
|
5857
6094
|
}
|
|
5858
6095
|
.tooltip.top {
|
|
5859
6096
|
padding: 5px 0;
|
|
@@ -5871,22 +6108,6 @@ button.close {
|
|
|
5871
6108
|
padding: 0 5px;
|
|
5872
6109
|
margin-left: -3px;
|
|
5873
6110
|
}
|
|
5874
|
-
.tooltip-inner {
|
|
5875
|
-
max-width: 200px;
|
|
5876
|
-
padding: 3px 8px;
|
|
5877
|
-
color: #fff;
|
|
5878
|
-
text-align: center;
|
|
5879
|
-
text-decoration: none;
|
|
5880
|
-
background-color: #000;
|
|
5881
|
-
border-radius: 4px;
|
|
5882
|
-
}
|
|
5883
|
-
.tooltip-arrow {
|
|
5884
|
-
position: absolute;
|
|
5885
|
-
width: 0;
|
|
5886
|
-
height: 0;
|
|
5887
|
-
border-color: transparent;
|
|
5888
|
-
border-style: solid;
|
|
5889
|
-
}
|
|
5890
6111
|
.tooltip.top .tooltip-arrow {
|
|
5891
6112
|
bottom: 0;
|
|
5892
6113
|
left: 50%;
|
|
@@ -5943,6 +6164,21 @@ button.close {
|
|
|
5943
6164
|
border-width: 0 5px 5px;
|
|
5944
6165
|
border-bottom-color: #000;
|
|
5945
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
|
+
}
|
|
5946
6182
|
.popover {
|
|
5947
6183
|
position: absolute;
|
|
5948
6184
|
top: 0;
|
|
@@ -5952,19 +6188,28 @@ button.close {
|
|
|
5952
6188
|
max-width: 276px;
|
|
5953
6189
|
padding: 1px;
|
|
5954
6190
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
5955
|
-
font-
|
|
5956
|
-
font-weight:
|
|
6191
|
+
font-style: normal;
|
|
6192
|
+
font-weight: 400;
|
|
5957
6193
|
line-height: 1.42857143;
|
|
6194
|
+
line-break: auto;
|
|
5958
6195
|
text-align: left;
|
|
6196
|
+
text-align: start;
|
|
6197
|
+
text-decoration: none;
|
|
6198
|
+
text-shadow: none;
|
|
6199
|
+
text-transform: none;
|
|
6200
|
+
letter-spacing: normal;
|
|
6201
|
+
word-break: normal;
|
|
6202
|
+
word-spacing: normal;
|
|
6203
|
+
word-wrap: normal;
|
|
5959
6204
|
white-space: normal;
|
|
6205
|
+
font-size: 14px;
|
|
5960
6206
|
background-color: #fff;
|
|
5961
|
-
|
|
5962
|
-
background-clip: padding-box;
|
|
6207
|
+
background-clip: padding-box;
|
|
5963
6208
|
border: 1px solid #ccc;
|
|
5964
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
|
6209
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
5965
6210
|
border-radius: 6px;
|
|
5966
|
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
|
5967
|
-
|
|
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);
|
|
5968
6213
|
}
|
|
5969
6214
|
.popover.top {
|
|
5970
6215
|
margin-top: -10px;
|
|
@@ -5978,16 +6223,8 @@ button.close {
|
|
|
5978
6223
|
.popover.left {
|
|
5979
6224
|
margin-left: -10px;
|
|
5980
6225
|
}
|
|
5981
|
-
.popover
|
|
5982
|
-
|
|
5983
|
-
margin: 0;
|
|
5984
|
-
font-size: 14px;
|
|
5985
|
-
background-color: #f7f7f7;
|
|
5986
|
-
border-bottom: 1px solid #ebebeb;
|
|
5987
|
-
border-radius: 5px 5px 0 0;
|
|
5988
|
-
}
|
|
5989
|
-
.popover-content {
|
|
5990
|
-
padding: 9px 14px;
|
|
6226
|
+
.popover > .arrow {
|
|
6227
|
+
border-width: 11px;
|
|
5991
6228
|
}
|
|
5992
6229
|
.popover > .arrow,
|
|
5993
6230
|
.popover > .arrow:after {
|
|
@@ -5998,9 +6235,6 @@ button.close {
|
|
|
5998
6235
|
border-color: transparent;
|
|
5999
6236
|
border-style: solid;
|
|
6000
6237
|
}
|
|
6001
|
-
.popover > .arrow {
|
|
6002
|
-
border-width: 11px;
|
|
6003
|
-
}
|
|
6004
6238
|
.popover > .arrow:after {
|
|
6005
6239
|
content: "";
|
|
6006
6240
|
border-width: 10px;
|
|
@@ -6009,8 +6243,8 @@ button.close {
|
|
|
6009
6243
|
bottom: -11px;
|
|
6010
6244
|
left: 50%;
|
|
6011
6245
|
margin-left: -11px;
|
|
6012
|
-
border-top-color: #
|
|
6013
|
-
border-top-color: rgba(0, 0, 0, .25);
|
|
6246
|
+
border-top-color: #999999;
|
|
6247
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
|
6014
6248
|
border-bottom-width: 0;
|
|
6015
6249
|
}
|
|
6016
6250
|
.popover.top > .arrow:after {
|
|
@@ -6024,8 +6258,8 @@ button.close {
|
|
|
6024
6258
|
top: 50%;
|
|
6025
6259
|
left: -11px;
|
|
6026
6260
|
margin-top: -11px;
|
|
6027
|
-
border-right-color: #
|
|
6028
|
-
border-right-color: rgba(0, 0, 0, .25);
|
|
6261
|
+
border-right-color: #999999;
|
|
6262
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
|
6029
6263
|
border-left-width: 0;
|
|
6030
6264
|
}
|
|
6031
6265
|
.popover.right > .arrow:after {
|
|
@@ -6040,8 +6274,8 @@ button.close {
|
|
|
6040
6274
|
left: 50%;
|
|
6041
6275
|
margin-left: -11px;
|
|
6042
6276
|
border-top-width: 0;
|
|
6043
|
-
border-bottom-color: #
|
|
6044
|
-
border-bottom-color: rgba(0, 0, 0, .25);
|
|
6277
|
+
border-bottom-color: #999999;
|
|
6278
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
|
6045
6279
|
}
|
|
6046
6280
|
.popover.bottom > .arrow:after {
|
|
6047
6281
|
top: 1px;
|
|
@@ -6055,8 +6289,8 @@ button.close {
|
|
|
6055
6289
|
right: -11px;
|
|
6056
6290
|
margin-top: -11px;
|
|
6057
6291
|
border-right-width: 0;
|
|
6058
|
-
border-left-color: #
|
|
6059
|
-
border-left-color: rgba(0, 0, 0, .25);
|
|
6292
|
+
border-left-color: #999999;
|
|
6293
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
|
6060
6294
|
}
|
|
6061
6295
|
.popover.left > .arrow:after {
|
|
6062
6296
|
right: 1px;
|
|
@@ -6065,6 +6299,17 @@ button.close {
|
|
|
6065
6299
|
border-right-width: 0;
|
|
6066
6300
|
border-left-color: #fff;
|
|
6067
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
|
+
}
|
|
6068
6313
|
.carousel {
|
|
6069
6314
|
position: relative;
|
|
6070
6315
|
}
|
|
@@ -6076,9 +6321,9 @@ button.close {
|
|
|
6076
6321
|
.carousel-inner > .item {
|
|
6077
6322
|
position: relative;
|
|
6078
6323
|
display: none;
|
|
6079
|
-
-webkit-transition: .6s ease-in-out left;
|
|
6080
|
-
|
|
6081
|
-
|
|
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;
|
|
6082
6327
|
}
|
|
6083
6328
|
.carousel-inner > .item > img,
|
|
6084
6329
|
.carousel-inner > .item > a > img {
|
|
@@ -6086,33 +6331,34 @@ button.close {
|
|
|
6086
6331
|
}
|
|
6087
6332
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
|
6088
6333
|
.carousel-inner > .item {
|
|
6089
|
-
-webkit-transition: -webkit-transform .6s ease-in-out;
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
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;
|
|
6093
6339
|
-webkit-backface-visibility: hidden;
|
|
6094
|
-
|
|
6095
|
-
-webkit-perspective:
|
|
6096
|
-
|
|
6340
|
+
backface-visibility: hidden;
|
|
6341
|
+
-webkit-perspective: 1000px;
|
|
6342
|
+
perspective: 1000px;
|
|
6097
6343
|
}
|
|
6098
6344
|
.carousel-inner > .item.next,
|
|
6099
6345
|
.carousel-inner > .item.active.right {
|
|
6100
|
-
left: 0;
|
|
6101
6346
|
-webkit-transform: translate3d(100%, 0, 0);
|
|
6102
|
-
|
|
6347
|
+
transform: translate3d(100%, 0, 0);
|
|
6348
|
+
left: 0;
|
|
6103
6349
|
}
|
|
6104
6350
|
.carousel-inner > .item.prev,
|
|
6105
6351
|
.carousel-inner > .item.active.left {
|
|
6106
|
-
left: 0;
|
|
6107
6352
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
6108
|
-
|
|
6353
|
+
transform: translate3d(-100%, 0, 0);
|
|
6354
|
+
left: 0;
|
|
6109
6355
|
}
|
|
6110
6356
|
.carousel-inner > .item.next.left,
|
|
6111
6357
|
.carousel-inner > .item.prev.right,
|
|
6112
6358
|
.carousel-inner > .item.active {
|
|
6113
|
-
left: 0;
|
|
6114
6359
|
-webkit-transform: translate3d(0, 0, 0);
|
|
6115
|
-
|
|
6360
|
+
transform: translate3d(0, 0, 0);
|
|
6361
|
+
left: 0;
|
|
6116
6362
|
}
|
|
6117
6363
|
}
|
|
6118
6364
|
.carousel-inner > .active,
|
|
@@ -6154,25 +6400,26 @@ button.close {
|
|
|
6154
6400
|
font-size: 20px;
|
|
6155
6401
|
color: #fff;
|
|
6156
6402
|
text-align: center;
|
|
6157
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
|
6403
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
|
6404
|
+
background-color: rgba(0, 0, 0, 0);
|
|
6158
6405
|
filter: alpha(opacity=50);
|
|
6159
|
-
opacity: .5;
|
|
6406
|
+
opacity: 0.5;
|
|
6160
6407
|
}
|
|
6161
6408
|
.carousel-control.left {
|
|
6162
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
|
6163
|
-
background-image:
|
|
6164
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
|
6165
|
-
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%);
|
|
6166
6413
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
|
6167
6414
|
background-repeat: repeat-x;
|
|
6168
6415
|
}
|
|
6169
6416
|
.carousel-control.right {
|
|
6170
6417
|
right: 0;
|
|
6171
6418
|
left: auto;
|
|
6172
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
|
6173
|
-
background-image:
|
|
6174
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
|
6175
|
-
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%);
|
|
6176
6423
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
|
6177
6424
|
background-repeat: repeat-x;
|
|
6178
6425
|
}
|
|
@@ -6180,9 +6427,9 @@ button.close {
|
|
|
6180
6427
|
.carousel-control:focus {
|
|
6181
6428
|
color: #fff;
|
|
6182
6429
|
text-decoration: none;
|
|
6183
|
-
filter: alpha(opacity=90);
|
|
6184
6430
|
outline: 0;
|
|
6185
|
-
|
|
6431
|
+
filter: alpha(opacity=90);
|
|
6432
|
+
opacity: 0.9;
|
|
6186
6433
|
}
|
|
6187
6434
|
.carousel-control .icon-prev,
|
|
6188
6435
|
.carousel-control .icon-next,
|
|
@@ -6192,6 +6439,7 @@ button.close {
|
|
|
6192
6439
|
top: 50%;
|
|
6193
6440
|
z-index: 5;
|
|
6194
6441
|
display: inline-block;
|
|
6442
|
+
margin-top: -10px;
|
|
6195
6443
|
}
|
|
6196
6444
|
.carousel-control .icon-prev,
|
|
6197
6445
|
.carousel-control .glyphicon-chevron-left {
|
|
@@ -6207,15 +6455,14 @@ button.close {
|
|
|
6207
6455
|
.carousel-control .icon-next {
|
|
6208
6456
|
width: 20px;
|
|
6209
6457
|
height: 20px;
|
|
6210
|
-
margin-top: -10px;
|
|
6211
6458
|
font-family: serif;
|
|
6212
6459
|
line-height: 1;
|
|
6213
6460
|
}
|
|
6214
6461
|
.carousel-control .icon-prev:before {
|
|
6215
|
-
content:
|
|
6462
|
+
content: "\2039";
|
|
6216
6463
|
}
|
|
6217
6464
|
.carousel-control .icon-next:before {
|
|
6218
|
-
content:
|
|
6465
|
+
content: "\203a";
|
|
6219
6466
|
}
|
|
6220
6467
|
.carousel-indicators {
|
|
6221
6468
|
position: absolute;
|
|
@@ -6256,7 +6503,7 @@ button.close {
|
|
|
6256
6503
|
padding-bottom: 20px;
|
|
6257
6504
|
color: #fff;
|
|
6258
6505
|
text-align: center;
|
|
6259
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
|
6506
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
|
6260
6507
|
}
|
|
6261
6508
|
.carousel-caption .btn {
|
|
6262
6509
|
text-shadow: none;
|
|
@@ -6268,16 +6515,16 @@ button.close {
|
|
|
6268
6515
|
.carousel-control .icon-next {
|
|
6269
6516
|
width: 30px;
|
|
6270
6517
|
height: 30px;
|
|
6271
|
-
margin-top: -
|
|
6518
|
+
margin-top: -10px;
|
|
6272
6519
|
font-size: 30px;
|
|
6273
6520
|
}
|
|
6274
6521
|
.carousel-control .glyphicon-chevron-left,
|
|
6275
6522
|
.carousel-control .icon-prev {
|
|
6276
|
-
margin-left: -
|
|
6523
|
+
margin-left: -10px;
|
|
6277
6524
|
}
|
|
6278
6525
|
.carousel-control .glyphicon-chevron-right,
|
|
6279
6526
|
.carousel-control .icon-next {
|
|
6280
|
-
margin-right: -
|
|
6527
|
+
margin-right: -10px;
|
|
6281
6528
|
}
|
|
6282
6529
|
.carousel-caption {
|
|
6283
6530
|
right: 20%;
|
|
@@ -6316,6 +6563,8 @@ button.close {
|
|
|
6316
6563
|
.pager:after,
|
|
6317
6564
|
.panel-body:before,
|
|
6318
6565
|
.panel-body:after,
|
|
6566
|
+
.modal-header:before,
|
|
6567
|
+
.modal-header:after,
|
|
6319
6568
|
.modal-footer:before,
|
|
6320
6569
|
.modal-footer:after {
|
|
6321
6570
|
display: table;
|
|
@@ -6335,6 +6584,7 @@ button.close {
|
|
|
6335
6584
|
.navbar-collapse:after,
|
|
6336
6585
|
.pager:after,
|
|
6337
6586
|
.panel-body:after,
|
|
6587
|
+
.modal-header:after,
|
|
6338
6588
|
.modal-footer:after {
|
|
6339
6589
|
clear: both;
|
|
6340
6590
|
}
|
|
@@ -6399,7 +6649,7 @@ button.close {
|
|
|
6399
6649
|
display: block !important;
|
|
6400
6650
|
}
|
|
6401
6651
|
table.visible-xs {
|
|
6402
|
-
display: table;
|
|
6652
|
+
display: table !important;
|
|
6403
6653
|
}
|
|
6404
6654
|
tr.visible-xs {
|
|
6405
6655
|
display: table-row !important;
|
|
@@ -6429,7 +6679,7 @@ button.close {
|
|
|
6429
6679
|
display: block !important;
|
|
6430
6680
|
}
|
|
6431
6681
|
table.visible-sm {
|
|
6432
|
-
display: table;
|
|
6682
|
+
display: table !important;
|
|
6433
6683
|
}
|
|
6434
6684
|
tr.visible-sm {
|
|
6435
6685
|
display: table-row !important;
|
|
@@ -6459,7 +6709,7 @@ button.close {
|
|
|
6459
6709
|
display: block !important;
|
|
6460
6710
|
}
|
|
6461
6711
|
table.visible-md {
|
|
6462
|
-
display: table;
|
|
6712
|
+
display: table !important;
|
|
6463
6713
|
}
|
|
6464
6714
|
tr.visible-md {
|
|
6465
6715
|
display: table-row !important;
|
|
@@ -6489,7 +6739,7 @@ button.close {
|
|
|
6489
6739
|
display: block !important;
|
|
6490
6740
|
}
|
|
6491
6741
|
table.visible-lg {
|
|
6492
|
-
display: table;
|
|
6742
|
+
display: table !important;
|
|
6493
6743
|
}
|
|
6494
6744
|
tr.visible-lg {
|
|
6495
6745
|
display: table-row !important;
|
|
@@ -6542,7 +6792,7 @@ button.close {
|
|
|
6542
6792
|
display: block !important;
|
|
6543
6793
|
}
|
|
6544
6794
|
table.visible-print {
|
|
6545
|
-
display: table;
|
|
6795
|
+
display: table !important;
|
|
6546
6796
|
}
|
|
6547
6797
|
tr.visible-print {
|
|
6548
6798
|
display: table-row !important;
|
|
@@ -6581,4 +6831,4 @@ button.close {
|
|
|
6581
6831
|
display: none !important;
|
|
6582
6832
|
}
|
|
6583
6833
|
}
|
|
6584
|
-
/*# sourceMappingURL=bootstrap.css.map */
|
|
6834
|
+
/*# sourceMappingURL=bootstrap.css.map */
|