blazer 2.4.2 → 2.6.4
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/CHANGELOG.md +64 -0
- data/README.md +155 -57
- data/app/assets/javascripts/blazer/Chart.js +14000 -13979
- data/app/assets/javascripts/blazer/bootstrap.js +300 -97
- data/app/assets/javascripts/blazer/queries.js +12 -1
- data/app/assets/javascripts/blazer/vue.js +10754 -9687
- data/app/assets/stylesheets/blazer/application.css +5 -0
- data/app/assets/stylesheets/blazer/bootstrap-propshaft.css +10 -0
- data/app/assets/stylesheets/blazer/bootstrap-sprockets.css.erb +10 -0
- data/app/assets/stylesheets/blazer/{bootstrap.css.erb → bootstrap.css} +527 -455
- data/app/controllers/blazer/base_controller.rb +45 -45
- data/app/controllers/blazer/dashboards_controller.rb +4 -11
- data/app/controllers/blazer/queries_controller.rb +31 -49
- data/app/models/blazer/query.rb +9 -3
- data/app/views/blazer/_variables.html.erb +5 -4
- data/app/views/blazer/dashboards/_form.html.erb +1 -1
- data/app/views/blazer/dashboards/show.html.erb +6 -4
- data/app/views/blazer/queries/_caching.html.erb +1 -1
- data/app/views/blazer/queries/_form.html.erb +3 -3
- data/app/views/blazer/queries/run.html.erb +5 -3
- data/app/views/blazer/queries/show.html.erb +12 -7
- data/app/views/layouts/blazer/application.html.erb +7 -2
- data/lib/blazer/adapters/athena_adapter.rb +73 -20
- data/lib/blazer/adapters/base_adapter.rb +16 -1
- data/lib/blazer/adapters/bigquery_adapter.rb +14 -3
- data/lib/blazer/adapters/cassandra_adapter.rb +15 -4
- data/lib/blazer/adapters/drill_adapter.rb +10 -0
- data/lib/blazer/adapters/druid_adapter.rb +36 -1
- data/lib/blazer/adapters/elasticsearch_adapter.rb +19 -4
- data/lib/blazer/adapters/hive_adapter.rb +10 -0
- data/lib/blazer/adapters/ignite_adapter.rb +12 -2
- data/lib/blazer/adapters/influxdb_adapter.rb +22 -10
- data/lib/blazer/adapters/mongodb_adapter.rb +4 -0
- data/lib/blazer/adapters/neo4j_adapter.rb +17 -2
- data/lib/blazer/adapters/opensearch_adapter.rb +52 -0
- data/lib/blazer/adapters/presto_adapter.rb +9 -0
- data/lib/blazer/adapters/salesforce_adapter.rb +5 -0
- data/lib/blazer/adapters/snowflake_adapter.rb +9 -0
- data/lib/blazer/adapters/soda_adapter.rb +9 -0
- data/lib/blazer/adapters/spark_adapter.rb +5 -0
- data/lib/blazer/adapters/sql_adapter.rb +41 -4
- data/{app/mailers → lib}/blazer/check_mailer.rb +0 -0
- data/lib/blazer/data_source.rb +90 -8
- data/lib/blazer/engine.rb +1 -4
- data/lib/blazer/result.rb +19 -1
- data/lib/blazer/run_statement.rb +7 -3
- data/lib/blazer/run_statement_job.rb +4 -2
- data/{app/mailers → lib}/blazer/slack_notifier.rb +19 -4
- data/lib/blazer/statement.rb +75 -0
- data/lib/blazer/version.rb +1 -1
- data/lib/blazer.rb +32 -8
- data/lib/generators/blazer/templates/config.yml.tt +2 -2
- data/lib/tasks/blazer.rake +5 -5
- data/licenses/LICENSE-bootstrap.txt +1 -1
- metadata +10 -6
@@ -1,13 +1,13 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v3.4.1 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2019 Twitter, Inc.
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
5
|
*/
|
6
6
|
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
7
7
|
html {
|
8
8
|
font-family: sans-serif;
|
9
|
+
-ms-text-size-adjust: 100%;
|
9
10
|
-webkit-text-size-adjust: 100%;
|
10
|
-
-ms-text-size-adjust: 100%;
|
11
11
|
}
|
12
12
|
body {
|
13
13
|
margin: 0;
|
@@ -50,7 +50,11 @@ a:hover {
|
|
50
50
|
outline: 0;
|
51
51
|
}
|
52
52
|
abbr[title] {
|
53
|
-
border-bottom:
|
53
|
+
border-bottom: none;
|
54
|
+
text-decoration: underline;
|
55
|
+
-webkit-text-decoration: underline dotted;
|
56
|
+
-moz-text-decoration: underline dotted;
|
57
|
+
text-decoration: underline dotted;
|
54
58
|
}
|
55
59
|
b,
|
56
60
|
strong {
|
@@ -60,28 +64,28 @@ dfn {
|
|
60
64
|
font-style: italic;
|
61
65
|
}
|
62
66
|
h1 {
|
63
|
-
margin: .67em 0;
|
64
67
|
font-size: 2em;
|
68
|
+
margin: 0.67em 0;
|
65
69
|
}
|
66
70
|
mark {
|
67
|
-
color: #000;
|
68
71
|
background: #ff0;
|
72
|
+
color: #000;
|
69
73
|
}
|
70
74
|
small {
|
71
75
|
font-size: 80%;
|
72
76
|
}
|
73
77
|
sub,
|
74
78
|
sup {
|
75
|
-
position: relative;
|
76
79
|
font-size: 75%;
|
77
80
|
line-height: 0;
|
81
|
+
position: relative;
|
78
82
|
vertical-align: baseline;
|
79
83
|
}
|
80
84
|
sup {
|
81
|
-
top:
|
85
|
+
top: -0.5em;
|
82
86
|
}
|
83
87
|
sub {
|
84
|
-
bottom:
|
88
|
+
bottom: -0.25em;
|
85
89
|
}
|
86
90
|
img {
|
87
91
|
border: 0;
|
@@ -93,10 +97,10 @@ figure {
|
|
93
97
|
margin: 1em 40px;
|
94
98
|
}
|
95
99
|
hr {
|
96
|
-
height: 0;
|
97
100
|
-webkit-box-sizing: content-box;
|
98
|
-
|
99
|
-
|
101
|
+
-moz-box-sizing: content-box;
|
102
|
+
box-sizing: content-box;
|
103
|
+
height: 0;
|
100
104
|
}
|
101
105
|
pre {
|
102
106
|
overflow: auto;
|
@@ -113,9 +117,9 @@ input,
|
|
113
117
|
optgroup,
|
114
118
|
select,
|
115
119
|
textarea {
|
116
|
-
margin: 0;
|
117
|
-
font: inherit;
|
118
120
|
color: inherit;
|
121
|
+
font: inherit;
|
122
|
+
margin: 0;
|
119
123
|
}
|
120
124
|
button {
|
121
125
|
overflow: visible;
|
@@ -137,8 +141,8 @@ html input[disabled] {
|
|
137
141
|
}
|
138
142
|
button::-moz-focus-inner,
|
139
143
|
input::-moz-focus-inner {
|
140
|
-
padding: 0;
|
141
144
|
border: 0;
|
145
|
+
padding: 0;
|
142
146
|
}
|
143
147
|
input {
|
144
148
|
line-height: normal;
|
@@ -146,8 +150,8 @@ input {
|
|
146
150
|
input[type="checkbox"],
|
147
151
|
input[type="radio"] {
|
148
152
|
-webkit-box-sizing: border-box;
|
149
|
-
|
150
|
-
|
153
|
+
-moz-box-sizing: border-box;
|
154
|
+
box-sizing: border-box;
|
151
155
|
padding: 0;
|
152
156
|
}
|
153
157
|
input[type="number"]::-webkit-inner-spin-button,
|
@@ -155,23 +159,23 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
155
159
|
height: auto;
|
156
160
|
}
|
157
161
|
input[type="search"] {
|
158
|
-
-webkit-box-sizing: content-box;
|
159
|
-
-moz-box-sizing: content-box;
|
160
|
-
box-sizing: content-box;
|
161
162
|
-webkit-appearance: textfield;
|
163
|
+
-webkit-box-sizing: content-box;
|
164
|
+
-moz-box-sizing: content-box;
|
165
|
+
box-sizing: content-box;
|
162
166
|
}
|
163
167
|
input[type="search"]::-webkit-search-cancel-button,
|
164
168
|
input[type="search"]::-webkit-search-decoration {
|
165
169
|
-webkit-appearance: none;
|
166
170
|
}
|
167
171
|
fieldset {
|
168
|
-
padding: .35em .625em .75em;
|
169
|
-
margin: 0 2px;
|
170
172
|
border: 1px solid #c0c0c0;
|
173
|
+
margin: 0 2px;
|
174
|
+
padding: 0.35em 0.625em 0.75em;
|
171
175
|
}
|
172
176
|
legend {
|
173
|
-
padding: 0;
|
174
177
|
border: 0;
|
178
|
+
padding: 0;
|
175
179
|
}
|
176
180
|
textarea {
|
177
181
|
overflow: auto;
|
@@ -180,8 +184,8 @@ optgroup {
|
|
180
184
|
font-weight: bold;
|
181
185
|
}
|
182
186
|
table {
|
183
|
-
border-spacing: 0;
|
184
187
|
border-collapse: collapse;
|
188
|
+
border-spacing: 0;
|
185
189
|
}
|
186
190
|
td,
|
187
191
|
th {
|
@@ -196,7 +200,7 @@ th {
|
|
196
200
|
text-shadow: none !important;
|
197
201
|
background: transparent !important;
|
198
202
|
-webkit-box-shadow: none !important;
|
199
|
-
|
203
|
+
box-shadow: none !important;
|
200
204
|
}
|
201
205
|
a,
|
202
206
|
a:visited {
|
@@ -215,7 +219,6 @@ th {
|
|
215
219
|
pre,
|
216
220
|
blockquote {
|
217
221
|
border: 1px solid #999;
|
218
|
-
|
219
222
|
page-break-inside: avoid;
|
220
223
|
}
|
221
224
|
thead {
|
@@ -260,21 +263,14 @@ th {
|
|
260
263
|
border: 1px solid #ddd !important;
|
261
264
|
}
|
262
265
|
}
|
263
|
-
@font-face {
|
264
|
-
font-family: 'Glyphicons Halflings';
|
265
|
-
|
266
|
-
src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot") %>');
|
267
|
-
src: url('<%= font_path("blazer/glyphicons-halflings-regular.eot?#iefix") %>') format('embedded-opentype'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff2") %>') format('woff2'), url('<%= font_path("blazer/glyphicons-halflings-regular.woff") %>') format('woff'), url('<%= font_path("blazer/glyphicons-halflings-regular.ttf") %>') format('truetype'), url('<%= font_path("blazer/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") %>') format('svg');
|
268
|
-
}
|
269
266
|
.glyphicon {
|
270
267
|
position: relative;
|
271
268
|
top: 1px;
|
272
269
|
display: inline-block;
|
273
|
-
font-family:
|
270
|
+
font-family: "Glyphicons Halflings";
|
274
271
|
font-style: normal;
|
275
|
-
font-weight:
|
272
|
+
font-weight: 400;
|
276
273
|
line-height: 1;
|
277
|
-
|
278
274
|
-webkit-font-smoothing: antialiased;
|
279
275
|
-moz-osx-font-smoothing: grayscale;
|
280
276
|
}
|
@@ -1067,25 +1063,24 @@ th {
|
|
1067
1063
|
}
|
1068
1064
|
* {
|
1069
1065
|
-webkit-box-sizing: border-box;
|
1070
|
-
|
1071
|
-
|
1066
|
+
-moz-box-sizing: border-box;
|
1067
|
+
box-sizing: border-box;
|
1072
1068
|
}
|
1073
1069
|
*:before,
|
1074
1070
|
*:after {
|
1075
1071
|
-webkit-box-sizing: border-box;
|
1076
|
-
|
1077
|
-
|
1072
|
+
-moz-box-sizing: border-box;
|
1073
|
+
box-sizing: border-box;
|
1078
1074
|
}
|
1079
1075
|
html {
|
1080
1076
|
font-size: 10px;
|
1081
|
-
|
1082
1077
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
1083
1078
|
}
|
1084
1079
|
body {
|
1085
1080
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1086
1081
|
font-size: 14px;
|
1087
1082
|
line-height: 1.42857143;
|
1088
|
-
color: #
|
1083
|
+
color: #333333;
|
1089
1084
|
background-color: #fff;
|
1090
1085
|
}
|
1091
1086
|
input,
|
@@ -1128,17 +1123,17 @@ img {
|
|
1128
1123
|
border-radius: 6px;
|
1129
1124
|
}
|
1130
1125
|
.img-thumbnail {
|
1131
|
-
display: inline-block;
|
1132
|
-
max-width: 100%;
|
1133
|
-
height: auto;
|
1134
1126
|
padding: 4px;
|
1135
1127
|
line-height: 1.42857143;
|
1136
1128
|
background-color: #fff;
|
1137
1129
|
border: 1px solid #ddd;
|
1138
1130
|
border-radius: 4px;
|
1139
|
-
-webkit-transition: all .2s ease-in-out;
|
1140
|
-
|
1141
|
-
|
1131
|
+
-webkit-transition: all 0.2s ease-in-out;
|
1132
|
+
-o-transition: all 0.2s ease-in-out;
|
1133
|
+
transition: all 0.2s ease-in-out;
|
1134
|
+
display: inline-block;
|
1135
|
+
max-width: 100%;
|
1136
|
+
height: auto;
|
1142
1137
|
}
|
1143
1138
|
.img-circle {
|
1144
1139
|
border-radius: 50%;
|
@@ -1147,7 +1142,7 @@ hr {
|
|
1147
1142
|
margin-top: 20px;
|
1148
1143
|
margin-bottom: 20px;
|
1149
1144
|
border: 0;
|
1150
|
-
border-top: 1px solid #
|
1145
|
+
border-top: 1px solid #eeeeee;
|
1151
1146
|
}
|
1152
1147
|
.sr-only {
|
1153
1148
|
position: absolute;
|
@@ -1212,9 +1207,9 @@ h6 .small,
|
|
1212
1207
|
.h4 .small,
|
1213
1208
|
.h5 .small,
|
1214
1209
|
.h6 .small {
|
1215
|
-
font-weight:
|
1210
|
+
font-weight: 400;
|
1216
1211
|
line-height: 1;
|
1217
|
-
color: #
|
1212
|
+
color: #777777;
|
1218
1213
|
}
|
1219
1214
|
h1,
|
1220
1215
|
.h1,
|
@@ -1306,7 +1301,7 @@ small,
|
|
1306
1301
|
}
|
1307
1302
|
mark,
|
1308
1303
|
.mark {
|
1309
|
-
padding: .2em;
|
1304
|
+
padding: 0.2em;
|
1310
1305
|
background-color: #fcf8e3;
|
1311
1306
|
}
|
1312
1307
|
.text-left {
|
@@ -1334,7 +1329,7 @@ mark,
|
|
1334
1329
|
text-transform: capitalize;
|
1335
1330
|
}
|
1336
1331
|
.text-muted {
|
1337
|
-
color: #
|
1332
|
+
color: #777777;
|
1338
1333
|
}
|
1339
1334
|
.text-primary {
|
1340
1335
|
color: #337ab7;
|
@@ -1410,7 +1405,7 @@ a.bg-danger:focus {
|
|
1410
1405
|
.page-header {
|
1411
1406
|
padding-bottom: 9px;
|
1412
1407
|
margin: 40px 0 20px;
|
1413
|
-
border-bottom: 1px solid #
|
1408
|
+
border-bottom: 1px solid #eeeeee;
|
1414
1409
|
}
|
1415
1410
|
ul,
|
1416
1411
|
ol {
|
@@ -1429,8 +1424,8 @@ ol ol {
|
|
1429
1424
|
}
|
1430
1425
|
.list-inline {
|
1431
1426
|
padding-left: 0;
|
1432
|
-
margin-left: -5px;
|
1433
1427
|
list-style: none;
|
1428
|
+
margin-left: -5px;
|
1434
1429
|
}
|
1435
1430
|
.list-inline > li {
|
1436
1431
|
display: inline-block;
|
@@ -1446,7 +1441,7 @@ dd {
|
|
1446
1441
|
line-height: 1.42857143;
|
1447
1442
|
}
|
1448
1443
|
dt {
|
1449
|
-
font-weight:
|
1444
|
+
font-weight: 700;
|
1450
1445
|
}
|
1451
1446
|
dd {
|
1452
1447
|
margin-left: 0;
|
@@ -1455,9 +1450,9 @@ dd {
|
|
1455
1450
|
.dl-horizontal dt {
|
1456
1451
|
float: left;
|
1457
1452
|
width: 160px;
|
1458
|
-
overflow: hidden;
|
1459
1453
|
clear: left;
|
1460
1454
|
text-align: right;
|
1455
|
+
overflow: hidden;
|
1461
1456
|
text-overflow: ellipsis;
|
1462
1457
|
white-space: nowrap;
|
1463
1458
|
}
|
@@ -1468,7 +1463,6 @@ dd {
|
|
1468
1463
|
abbr[title],
|
1469
1464
|
abbr[data-original-title] {
|
1470
1465
|
cursor: help;
|
1471
|
-
border-bottom: 1px dotted #777;
|
1472
1466
|
}
|
1473
1467
|
.initialism {
|
1474
1468
|
font-size: 90%;
|
@@ -1478,7 +1472,7 @@ blockquote {
|
|
1478
1472
|
padding: 10px 20px;
|
1479
1473
|
margin: 0 0 20px;
|
1480
1474
|
font-size: 17.5px;
|
1481
|
-
border-left: 5px solid #
|
1475
|
+
border-left: 5px solid #eeeeee;
|
1482
1476
|
}
|
1483
1477
|
blockquote p:last-child,
|
1484
1478
|
blockquote ul:last-child,
|
@@ -1491,19 +1485,19 @@ blockquote .small {
|
|
1491
1485
|
display: block;
|
1492
1486
|
font-size: 80%;
|
1493
1487
|
line-height: 1.42857143;
|
1494
|
-
color: #
|
1488
|
+
color: #777777;
|
1495
1489
|
}
|
1496
1490
|
blockquote footer:before,
|
1497
1491
|
blockquote small:before,
|
1498
1492
|
blockquote .small:before {
|
1499
|
-
content:
|
1493
|
+
content: "\2014 \00A0";
|
1500
1494
|
}
|
1501
1495
|
.blockquote-reverse,
|
1502
1496
|
blockquote.pull-right {
|
1503
1497
|
padding-right: 15px;
|
1504
1498
|
padding-left: 0;
|
1505
1499
|
text-align: right;
|
1506
|
-
border-right: 5px solid #
|
1500
|
+
border-right: 5px solid #eeeeee;
|
1507
1501
|
border-left: 0;
|
1508
1502
|
}
|
1509
1503
|
.blockquote-reverse footer:before,
|
@@ -1512,7 +1506,7 @@ blockquote.pull-right footer:before,
|
|
1512
1506
|
blockquote.pull-right small:before,
|
1513
1507
|
.blockquote-reverse .small:before,
|
1514
1508
|
blockquote.pull-right .small:before {
|
1515
|
-
content:
|
1509
|
+
content: "";
|
1516
1510
|
}
|
1517
1511
|
.blockquote-reverse footer:after,
|
1518
1512
|
blockquote.pull-right footer:after,
|
@@ -1520,7 +1514,7 @@ blockquote.pull-right footer:after,
|
|
1520
1514
|
blockquote.pull-right small:after,
|
1521
1515
|
.blockquote-reverse .small:after,
|
1522
1516
|
blockquote.pull-right .small:after {
|
1523
|
-
content:
|
1517
|
+
content: "\00A0 \2014";
|
1524
1518
|
}
|
1525
1519
|
address {
|
1526
1520
|
margin-bottom: 20px;
|
@@ -1546,15 +1540,15 @@ kbd {
|
|
1546
1540
|
color: #fff;
|
1547
1541
|
background-color: #333;
|
1548
1542
|
border-radius: 3px;
|
1549
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
|
1550
|
-
|
1543
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1544
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1551
1545
|
}
|
1552
1546
|
kbd kbd {
|
1553
1547
|
padding: 0;
|
1554
1548
|
font-size: 100%;
|
1555
|
-
font-weight:
|
1549
|
+
font-weight: 700;
|
1556
1550
|
-webkit-box-shadow: none;
|
1557
|
-
|
1551
|
+
box-shadow: none;
|
1558
1552
|
}
|
1559
1553
|
pre {
|
1560
1554
|
display: block;
|
@@ -1562,7 +1556,7 @@ pre {
|
|
1562
1556
|
margin: 0 0 10px;
|
1563
1557
|
font-size: 13px;
|
1564
1558
|
line-height: 1.42857143;
|
1565
|
-
color: #
|
1559
|
+
color: #333333;
|
1566
1560
|
word-break: break-all;
|
1567
1561
|
word-wrap: break-word;
|
1568
1562
|
background-color: #f5f5f5;
|
@@ -1612,13 +1606,79 @@ pre code {
|
|
1612
1606
|
margin-right: -15px;
|
1613
1607
|
margin-left: -15px;
|
1614
1608
|
}
|
1615
|
-
.
|
1609
|
+
.row-no-gutters {
|
1610
|
+
margin-right: 0;
|
1611
|
+
margin-left: 0;
|
1612
|
+
}
|
1613
|
+
.row-no-gutters [class*="col-"] {
|
1614
|
+
padding-right: 0;
|
1615
|
+
padding-left: 0;
|
1616
|
+
}
|
1617
|
+
.col-xs-1,
|
1618
|
+
.col-sm-1,
|
1619
|
+
.col-md-1,
|
1620
|
+
.col-lg-1,
|
1621
|
+
.col-xs-2,
|
1622
|
+
.col-sm-2,
|
1623
|
+
.col-md-2,
|
1624
|
+
.col-lg-2,
|
1625
|
+
.col-xs-3,
|
1626
|
+
.col-sm-3,
|
1627
|
+
.col-md-3,
|
1628
|
+
.col-lg-3,
|
1629
|
+
.col-xs-4,
|
1630
|
+
.col-sm-4,
|
1631
|
+
.col-md-4,
|
1632
|
+
.col-lg-4,
|
1633
|
+
.col-xs-5,
|
1634
|
+
.col-sm-5,
|
1635
|
+
.col-md-5,
|
1636
|
+
.col-lg-5,
|
1637
|
+
.col-xs-6,
|
1638
|
+
.col-sm-6,
|
1639
|
+
.col-md-6,
|
1640
|
+
.col-lg-6,
|
1641
|
+
.col-xs-7,
|
1642
|
+
.col-sm-7,
|
1643
|
+
.col-md-7,
|
1644
|
+
.col-lg-7,
|
1645
|
+
.col-xs-8,
|
1646
|
+
.col-sm-8,
|
1647
|
+
.col-md-8,
|
1648
|
+
.col-lg-8,
|
1649
|
+
.col-xs-9,
|
1650
|
+
.col-sm-9,
|
1651
|
+
.col-md-9,
|
1652
|
+
.col-lg-9,
|
1653
|
+
.col-xs-10,
|
1654
|
+
.col-sm-10,
|
1655
|
+
.col-md-10,
|
1656
|
+
.col-lg-10,
|
1657
|
+
.col-xs-11,
|
1658
|
+
.col-sm-11,
|
1659
|
+
.col-md-11,
|
1660
|
+
.col-lg-11,
|
1661
|
+
.col-xs-12,
|
1662
|
+
.col-sm-12,
|
1663
|
+
.col-md-12,
|
1664
|
+
.col-lg-12 {
|
1616
1665
|
position: relative;
|
1617
1666
|
min-height: 1px;
|
1618
1667
|
padding-right: 15px;
|
1619
1668
|
padding-left: 15px;
|
1620
1669
|
}
|
1621
|
-
.col-xs-1,
|
1670
|
+
.col-xs-1,
|
1671
|
+
.col-xs-2,
|
1672
|
+
.col-xs-3,
|
1673
|
+
.col-xs-4,
|
1674
|
+
.col-xs-5,
|
1675
|
+
.col-xs-6,
|
1676
|
+
.col-xs-7,
|
1677
|
+
.col-xs-8,
|
1678
|
+
.col-xs-9,
|
1679
|
+
.col-xs-10,
|
1680
|
+
.col-xs-11,
|
1681
|
+
.col-xs-12 {
|
1622
1682
|
float: left;
|
1623
1683
|
}
|
1624
1684
|
.col-xs-12 {
|
@@ -1772,10 +1832,21 @@ pre code {
|
|
1772
1832
|
margin-left: 8.33333333%;
|
1773
1833
|
}
|
1774
1834
|
.col-xs-offset-0 {
|
1775
|
-
margin-left: 0
|
1835
|
+
margin-left: 0%;
|
1776
1836
|
}
|
1777
1837
|
@media (min-width: 768px) {
|
1778
|
-
.col-sm-1,
|
1838
|
+
.col-sm-1,
|
1839
|
+
.col-sm-2,
|
1840
|
+
.col-sm-3,
|
1841
|
+
.col-sm-4,
|
1842
|
+
.col-sm-5,
|
1843
|
+
.col-sm-6,
|
1844
|
+
.col-sm-7,
|
1845
|
+
.col-sm-8,
|
1846
|
+
.col-sm-9,
|
1847
|
+
.col-sm-10,
|
1848
|
+
.col-sm-11,
|
1849
|
+
.col-sm-12 {
|
1779
1850
|
float: left;
|
1780
1851
|
}
|
1781
1852
|
.col-sm-12 {
|
@@ -1929,11 +2000,22 @@ pre code {
|
|
1929
2000
|
margin-left: 8.33333333%;
|
1930
2001
|
}
|
1931
2002
|
.col-sm-offset-0 {
|
1932
|
-
margin-left: 0
|
2003
|
+
margin-left: 0%;
|
1933
2004
|
}
|
1934
2005
|
}
|
1935
2006
|
@media (min-width: 992px) {
|
1936
|
-
.col-md-1,
|
2007
|
+
.col-md-1,
|
2008
|
+
.col-md-2,
|
2009
|
+
.col-md-3,
|
2010
|
+
.col-md-4,
|
2011
|
+
.col-md-5,
|
2012
|
+
.col-md-6,
|
2013
|
+
.col-md-7,
|
2014
|
+
.col-md-8,
|
2015
|
+
.col-md-9,
|
2016
|
+
.col-md-10,
|
2017
|
+
.col-md-11,
|
2018
|
+
.col-md-12 {
|
1937
2019
|
float: left;
|
1938
2020
|
}
|
1939
2021
|
.col-md-12 {
|
@@ -2087,11 +2169,22 @@ pre code {
|
|
2087
2169
|
margin-left: 8.33333333%;
|
2088
2170
|
}
|
2089
2171
|
.col-md-offset-0 {
|
2090
|
-
margin-left: 0
|
2172
|
+
margin-left: 0%;
|
2091
2173
|
}
|
2092
2174
|
}
|
2093
2175
|
@media (min-width: 1200px) {
|
2094
|
-
.col-lg-1,
|
2176
|
+
.col-lg-1,
|
2177
|
+
.col-lg-2,
|
2178
|
+
.col-lg-3,
|
2179
|
+
.col-lg-4,
|
2180
|
+
.col-lg-5,
|
2181
|
+
.col-lg-6,
|
2182
|
+
.col-lg-7,
|
2183
|
+
.col-lg-8,
|
2184
|
+
.col-lg-9,
|
2185
|
+
.col-lg-10,
|
2186
|
+
.col-lg-11,
|
2187
|
+
.col-lg-12 {
|
2095
2188
|
float: left;
|
2096
2189
|
}
|
2097
2190
|
.col-lg-12 {
|
@@ -2245,16 +2338,27 @@ pre code {
|
|
2245
2338
|
margin-left: 8.33333333%;
|
2246
2339
|
}
|
2247
2340
|
.col-lg-offset-0 {
|
2248
|
-
margin-left: 0
|
2341
|
+
margin-left: 0%;
|
2249
2342
|
}
|
2250
2343
|
}
|
2251
2344
|
table {
|
2252
2345
|
background-color: transparent;
|
2253
2346
|
}
|
2347
|
+
table col[class*="col-"] {
|
2348
|
+
position: static;
|
2349
|
+
display: table-column;
|
2350
|
+
float: none;
|
2351
|
+
}
|
2352
|
+
table td[class*="col-"],
|
2353
|
+
table th[class*="col-"] {
|
2354
|
+
position: static;
|
2355
|
+
display: table-cell;
|
2356
|
+
float: none;
|
2357
|
+
}
|
2254
2358
|
caption {
|
2255
2359
|
padding-top: 8px;
|
2256
2360
|
padding-bottom: 8px;
|
2257
|
-
color: #
|
2361
|
+
color: #777777;
|
2258
2362
|
text-align: left;
|
2259
2363
|
}
|
2260
2364
|
th {
|
@@ -2323,17 +2427,6 @@ th {
|
|
2323
2427
|
.table-hover > tbody > tr:hover {
|
2324
2428
|
background-color: #f5f5f5;
|
2325
2429
|
}
|
2326
|
-
table col[class*="col-"] {
|
2327
|
-
position: static;
|
2328
|
-
display: table-column;
|
2329
|
-
float: none;
|
2330
|
-
}
|
2331
|
-
table td[class*="col-"],
|
2332
|
-
table th[class*="col-"] {
|
2333
|
-
position: static;
|
2334
|
-
display: table-cell;
|
2335
|
-
float: none;
|
2336
|
-
}
|
2337
2430
|
.table > thead > tr > td.active,
|
2338
2431
|
.table > tbody > tr > td.active,
|
2339
2432
|
.table > tfoot > tr > td.active,
|
@@ -2440,7 +2533,7 @@ table th[class*="col-"] {
|
|
2440
2533
|
background-color: #ebcccc;
|
2441
2534
|
}
|
2442
2535
|
.table-responsive {
|
2443
|
-
min-height: .01%;
|
2536
|
+
min-height: 0.01%;
|
2444
2537
|
overflow-x: auto;
|
2445
2538
|
}
|
2446
2539
|
@media screen and (max-width: 767px) {
|
@@ -2501,7 +2594,7 @@ legend {
|
|
2501
2594
|
margin-bottom: 20px;
|
2502
2595
|
font-size: 21px;
|
2503
2596
|
line-height: inherit;
|
2504
|
-
color: #
|
2597
|
+
color: #333333;
|
2505
2598
|
border: 0;
|
2506
2599
|
border-bottom: 1px solid #e5e5e5;
|
2507
2600
|
}
|
@@ -2509,12 +2602,15 @@ label {
|
|
2509
2602
|
display: inline-block;
|
2510
2603
|
max-width: 100%;
|
2511
2604
|
margin-bottom: 5px;
|
2512
|
-
font-weight:
|
2605
|
+
font-weight: 700;
|
2513
2606
|
}
|
2514
2607
|
input[type="search"] {
|
2515
2608
|
-webkit-box-sizing: border-box;
|
2516
|
-
|
2517
|
-
|
2609
|
+
-moz-box-sizing: border-box;
|
2610
|
+
box-sizing: border-box;
|
2611
|
+
-webkit-appearance: none;
|
2612
|
+
-moz-appearance: none;
|
2613
|
+
appearance: none;
|
2518
2614
|
}
|
2519
2615
|
input[type="radio"],
|
2520
2616
|
input[type="checkbox"] {
|
@@ -2522,6 +2618,14 @@ input[type="checkbox"] {
|
|
2522
2618
|
margin-top: 1px \9;
|
2523
2619
|
line-height: normal;
|
2524
2620
|
}
|
2621
|
+
input[type="radio"][disabled],
|
2622
|
+
input[type="checkbox"][disabled],
|
2623
|
+
input[type="radio"].disabled,
|
2624
|
+
input[type="checkbox"].disabled,
|
2625
|
+
fieldset[disabled] input[type="radio"],
|
2626
|
+
fieldset[disabled] input[type="checkbox"] {
|
2627
|
+
cursor: not-allowed;
|
2628
|
+
}
|
2525
2629
|
input[type="file"] {
|
2526
2630
|
display: block;
|
2527
2631
|
}
|
@@ -2544,7 +2648,7 @@ output {
|
|
2544
2648
|
padding-top: 7px;
|
2545
2649
|
font-size: 14px;
|
2546
2650
|
line-height: 1.42857143;
|
2547
|
-
color: #
|
2651
|
+
color: #555555;
|
2548
2652
|
}
|
2549
2653
|
.form-control {
|
2550
2654
|
display: block;
|
@@ -2553,22 +2657,25 @@ output {
|
|
2553
2657
|
padding: 6px 12px;
|
2554
2658
|
font-size: 14px;
|
2555
2659
|
line-height: 1.42857143;
|
2556
|
-
color: #
|
2660
|
+
color: #555555;
|
2557
2661
|
background-color: #fff;
|
2558
2662
|
background-image: none;
|
2559
2663
|
border: 1px solid #ccc;
|
2560
2664
|
border-radius: 4px;
|
2561
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2562
|
-
|
2665
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2666
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2667
|
+
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2668
|
+
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2563
2669
|
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2564
|
-
|
2565
|
-
|
2670
|
+
transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2671
|
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
2672
|
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
2566
2673
|
}
|
2567
2674
|
.form-control:focus {
|
2568
2675
|
border-color: #66afe9;
|
2569
2676
|
outline: 0;
|
2570
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0
|
2571
|
-
|
2677
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
|
2678
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
|
2572
2679
|
}
|
2573
2680
|
.form-control::-moz-placeholder {
|
2574
2681
|
color: #999;
|
@@ -2587,7 +2694,7 @@ output {
|
|
2587
2694
|
.form-control[disabled],
|
2588
2695
|
.form-control[readonly],
|
2589
2696
|
fieldset[disabled] .form-control {
|
2590
|
-
background-color: #
|
2697
|
+
background-color: #eeeeee;
|
2591
2698
|
opacity: 1;
|
2592
2699
|
}
|
2593
2700
|
.form-control[disabled],
|
@@ -2597,9 +2704,6 @@ fieldset[disabled] .form-control {
|
|
2597
2704
|
textarea.form-control {
|
2598
2705
|
height: auto;
|
2599
2706
|
}
|
2600
|
-
input[type="search"] {
|
2601
|
-
-webkit-appearance: none;
|
2602
|
-
}
|
2603
2707
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2604
2708
|
input[type="date"].form-control,
|
2605
2709
|
input[type="time"].form-control,
|
@@ -2638,12 +2742,18 @@ input[type="search"] {
|
|
2638
2742
|
margin-top: 10px;
|
2639
2743
|
margin-bottom: 10px;
|
2640
2744
|
}
|
2745
|
+
.radio.disabled label,
|
2746
|
+
.checkbox.disabled label,
|
2747
|
+
fieldset[disabled] .radio label,
|
2748
|
+
fieldset[disabled] .checkbox label {
|
2749
|
+
cursor: not-allowed;
|
2750
|
+
}
|
2641
2751
|
.radio label,
|
2642
2752
|
.checkbox label {
|
2643
2753
|
min-height: 20px;
|
2644
2754
|
padding-left: 20px;
|
2645
2755
|
margin-bottom: 0;
|
2646
|
-
font-weight:
|
2756
|
+
font-weight: 400;
|
2647
2757
|
cursor: pointer;
|
2648
2758
|
}
|
2649
2759
|
.radio input[type="radio"],
|
@@ -2664,34 +2774,20 @@ input[type="search"] {
|
|
2664
2774
|
display: inline-block;
|
2665
2775
|
padding-left: 20px;
|
2666
2776
|
margin-bottom: 0;
|
2667
|
-
font-weight:
|
2777
|
+
font-weight: 400;
|
2668
2778
|
vertical-align: middle;
|
2669
2779
|
cursor: pointer;
|
2670
2780
|
}
|
2671
|
-
.radio-inline + .radio-inline,
|
2672
|
-
.checkbox-inline + .checkbox-inline {
|
2673
|
-
margin-top: 0;
|
2674
|
-
margin-left: 10px;
|
2675
|
-
}
|
2676
|
-
input[type="radio"][disabled],
|
2677
|
-
input[type="checkbox"][disabled],
|
2678
|
-
input[type="radio"].disabled,
|
2679
|
-
input[type="checkbox"].disabled,
|
2680
|
-
fieldset[disabled] input[type="radio"],
|
2681
|
-
fieldset[disabled] input[type="checkbox"] {
|
2682
|
-
cursor: not-allowed;
|
2683
|
-
}
|
2684
2781
|
.radio-inline.disabled,
|
2685
2782
|
.checkbox-inline.disabled,
|
2686
2783
|
fieldset[disabled] .radio-inline,
|
2687
2784
|
fieldset[disabled] .checkbox-inline {
|
2688
2785
|
cursor: not-allowed;
|
2689
2786
|
}
|
2690
|
-
.radio.
|
2691
|
-
.checkbox.
|
2692
|
-
|
2693
|
-
|
2694
|
-
cursor: not-allowed;
|
2787
|
+
.radio-inline + .radio-inline,
|
2788
|
+
.checkbox-inline + .checkbox-inline {
|
2789
|
+
margin-top: 0;
|
2790
|
+
margin-left: 10px;
|
2695
2791
|
}
|
2696
2792
|
.form-control-static {
|
2697
2793
|
min-height: 34px;
|
@@ -2824,13 +2920,13 @@ select[multiple].input-lg {
|
|
2824
2920
|
}
|
2825
2921
|
.has-success .form-control {
|
2826
2922
|
border-color: #3c763d;
|
2827
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2828
|
-
|
2923
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2924
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2829
2925
|
}
|
2830
2926
|
.has-success .form-control:focus {
|
2831
2927
|
border-color: #2b542c;
|
2832
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
|
2833
|
-
|
2928
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
2929
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
|
2834
2930
|
}
|
2835
2931
|
.has-success .input-group-addon {
|
2836
2932
|
color: #3c763d;
|
@@ -2854,13 +2950,13 @@ select[multiple].input-lg {
|
|
2854
2950
|
}
|
2855
2951
|
.has-warning .form-control {
|
2856
2952
|
border-color: #8a6d3b;
|
2857
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2858
|
-
|
2953
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2954
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2859
2955
|
}
|
2860
2956
|
.has-warning .form-control:focus {
|
2861
2957
|
border-color: #66512c;
|
2862
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
|
2863
|
-
|
2958
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
2959
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
|
2864
2960
|
}
|
2865
2961
|
.has-warning .input-group-addon {
|
2866
2962
|
color: #8a6d3b;
|
@@ -2884,13 +2980,13 @@ select[multiple].input-lg {
|
|
2884
2980
|
}
|
2885
2981
|
.has-error .form-control {
|
2886
2982
|
border-color: #a94442;
|
2887
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
2888
|
-
|
2983
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2984
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
2889
2985
|
}
|
2890
2986
|
.has-error .form-control:focus {
|
2891
2987
|
border-color: #843534;
|
2892
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
|
2893
|
-
|
2988
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
2989
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
|
2894
2990
|
}
|
2895
2991
|
.has-error .input-group-addon {
|
2896
2992
|
color: #a94442;
|
@@ -3002,24 +3098,24 @@ select[multiple].input-lg {
|
|
3002
3098
|
}
|
3003
3099
|
.btn {
|
3004
3100
|
display: inline-block;
|
3005
|
-
padding: 6px 12px;
|
3006
3101
|
margin-bottom: 0;
|
3007
|
-
font-size: 14px;
|
3008
3102
|
font-weight: normal;
|
3009
|
-
line-height: 1.42857143;
|
3010
3103
|
text-align: center;
|
3011
3104
|
white-space: nowrap;
|
3012
3105
|
vertical-align: middle;
|
3013
3106
|
-ms-touch-action: manipulation;
|
3014
|
-
|
3107
|
+
touch-action: manipulation;
|
3015
3108
|
cursor: pointer;
|
3016
|
-
-webkit-user-select: none;
|
3017
|
-
-moz-user-select: none;
|
3018
|
-
-ms-user-select: none;
|
3019
|
-
user-select: none;
|
3020
3109
|
background-image: none;
|
3021
3110
|
border: 1px solid transparent;
|
3111
|
+
padding: 6px 12px;
|
3112
|
+
font-size: 14px;
|
3113
|
+
line-height: 1.42857143;
|
3022
3114
|
border-radius: 4px;
|
3115
|
+
-webkit-user-select: none;
|
3116
|
+
-moz-user-select: none;
|
3117
|
+
-ms-user-select: none;
|
3118
|
+
user-select: none;
|
3023
3119
|
}
|
3024
3120
|
.btn:focus,
|
3025
3121
|
.btn:active:focus,
|
@@ -3040,17 +3136,17 @@ select[multiple].input-lg {
|
|
3040
3136
|
.btn.active {
|
3041
3137
|
background-image: none;
|
3042
3138
|
outline: 0;
|
3043
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3044
|
-
|
3139
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3140
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3045
3141
|
}
|
3046
3142
|
.btn.disabled,
|
3047
3143
|
.btn[disabled],
|
3048
3144
|
fieldset[disabled] .btn {
|
3049
3145
|
cursor: not-allowed;
|
3050
3146
|
filter: alpha(opacity=65);
|
3147
|
+
opacity: 0.65;
|
3051
3148
|
-webkit-box-shadow: none;
|
3052
|
-
|
3053
|
-
opacity: .65;
|
3149
|
+
box-shadow: none;
|
3054
3150
|
}
|
3055
3151
|
a.btn.disabled,
|
3056
3152
|
fieldset[disabled] a.btn {
|
@@ -3077,6 +3173,7 @@ fieldset[disabled] a.btn {
|
|
3077
3173
|
.open > .dropdown-toggle.btn-default {
|
3078
3174
|
color: #333;
|
3079
3175
|
background-color: #e6e6e6;
|
3176
|
+
background-image: none;
|
3080
3177
|
border-color: #adadad;
|
3081
3178
|
}
|
3082
3179
|
.btn-default:active:hover,
|
@@ -3092,11 +3189,6 @@ fieldset[disabled] a.btn {
|
|
3092
3189
|
background-color: #d4d4d4;
|
3093
3190
|
border-color: #8c8c8c;
|
3094
3191
|
}
|
3095
|
-
.btn-default:active,
|
3096
|
-
.btn-default.active,
|
3097
|
-
.open > .dropdown-toggle.btn-default {
|
3098
|
-
background-image: none;
|
3099
|
-
}
|
3100
3192
|
.btn-default.disabled:hover,
|
3101
3193
|
.btn-default[disabled]:hover,
|
3102
3194
|
fieldset[disabled] .btn-default:hover,
|
@@ -3134,6 +3226,7 @@ fieldset[disabled] .btn-default.focus {
|
|
3134
3226
|
.open > .dropdown-toggle.btn-primary {
|
3135
3227
|
color: #fff;
|
3136
3228
|
background-color: #286090;
|
3229
|
+
background-image: none;
|
3137
3230
|
border-color: #204d74;
|
3138
3231
|
}
|
3139
3232
|
.btn-primary:active:hover,
|
@@ -3149,11 +3242,6 @@ fieldset[disabled] .btn-default.focus {
|
|
3149
3242
|
background-color: #204d74;
|
3150
3243
|
border-color: #122b40;
|
3151
3244
|
}
|
3152
|
-
.btn-primary:active,
|
3153
|
-
.btn-primary.active,
|
3154
|
-
.open > .dropdown-toggle.btn-primary {
|
3155
|
-
background-image: none;
|
3156
|
-
}
|
3157
3245
|
.btn-primary.disabled:hover,
|
3158
3246
|
.btn-primary[disabled]:hover,
|
3159
3247
|
fieldset[disabled] .btn-primary:hover,
|
@@ -3191,6 +3279,7 @@ fieldset[disabled] .btn-primary.focus {
|
|
3191
3279
|
.open > .dropdown-toggle.btn-success {
|
3192
3280
|
color: #fff;
|
3193
3281
|
background-color: #449d44;
|
3282
|
+
background-image: none;
|
3194
3283
|
border-color: #398439;
|
3195
3284
|
}
|
3196
3285
|
.btn-success:active:hover,
|
@@ -3206,11 +3295,6 @@ fieldset[disabled] .btn-primary.focus {
|
|
3206
3295
|
background-color: #398439;
|
3207
3296
|
border-color: #255625;
|
3208
3297
|
}
|
3209
|
-
.btn-success:active,
|
3210
|
-
.btn-success.active,
|
3211
|
-
.open > .dropdown-toggle.btn-success {
|
3212
|
-
background-image: none;
|
3213
|
-
}
|
3214
3298
|
.btn-success.disabled:hover,
|
3215
3299
|
.btn-success[disabled]:hover,
|
3216
3300
|
fieldset[disabled] .btn-success:hover,
|
@@ -3248,6 +3332,7 @@ fieldset[disabled] .btn-success.focus {
|
|
3248
3332
|
.open > .dropdown-toggle.btn-info {
|
3249
3333
|
color: #fff;
|
3250
3334
|
background-color: #31b0d5;
|
3335
|
+
background-image: none;
|
3251
3336
|
border-color: #269abc;
|
3252
3337
|
}
|
3253
3338
|
.btn-info:active:hover,
|
@@ -3263,11 +3348,6 @@ fieldset[disabled] .btn-success.focus {
|
|
3263
3348
|
background-color: #269abc;
|
3264
3349
|
border-color: #1b6d85;
|
3265
3350
|
}
|
3266
|
-
.btn-info:active,
|
3267
|
-
.btn-info.active,
|
3268
|
-
.open > .dropdown-toggle.btn-info {
|
3269
|
-
background-image: none;
|
3270
|
-
}
|
3271
3351
|
.btn-info.disabled:hover,
|
3272
3352
|
.btn-info[disabled]:hover,
|
3273
3353
|
fieldset[disabled] .btn-info:hover,
|
@@ -3305,6 +3385,7 @@ fieldset[disabled] .btn-info.focus {
|
|
3305
3385
|
.open > .dropdown-toggle.btn-warning {
|
3306
3386
|
color: #fff;
|
3307
3387
|
background-color: #ec971f;
|
3388
|
+
background-image: none;
|
3308
3389
|
border-color: #d58512;
|
3309
3390
|
}
|
3310
3391
|
.btn-warning:active:hover,
|
@@ -3320,11 +3401,6 @@ fieldset[disabled] .btn-info.focus {
|
|
3320
3401
|
background-color: #d58512;
|
3321
3402
|
border-color: #985f0d;
|
3322
3403
|
}
|
3323
|
-
.btn-warning:active,
|
3324
|
-
.btn-warning.active,
|
3325
|
-
.open > .dropdown-toggle.btn-warning {
|
3326
|
-
background-image: none;
|
3327
|
-
}
|
3328
3404
|
.btn-warning.disabled:hover,
|
3329
3405
|
.btn-warning[disabled]:hover,
|
3330
3406
|
fieldset[disabled] .btn-warning:hover,
|
@@ -3362,6 +3438,7 @@ fieldset[disabled] .btn-warning.focus {
|
|
3362
3438
|
.open > .dropdown-toggle.btn-danger {
|
3363
3439
|
color: #fff;
|
3364
3440
|
background-color: #c9302c;
|
3441
|
+
background-image: none;
|
3365
3442
|
border-color: #ac2925;
|
3366
3443
|
}
|
3367
3444
|
.btn-danger:active:hover,
|
@@ -3377,11 +3454,6 @@ fieldset[disabled] .btn-warning.focus {
|
|
3377
3454
|
background-color: #ac2925;
|
3378
3455
|
border-color: #761c19;
|
3379
3456
|
}
|
3380
|
-
.btn-danger:active,
|
3381
|
-
.btn-danger.active,
|
3382
|
-
.open > .dropdown-toggle.btn-danger {
|
3383
|
-
background-image: none;
|
3384
|
-
}
|
3385
3457
|
.btn-danger.disabled:hover,
|
3386
3458
|
.btn-danger[disabled]:hover,
|
3387
3459
|
fieldset[disabled] .btn-danger:hover,
|
@@ -3399,7 +3471,7 @@ fieldset[disabled] .btn-danger.focus {
|
|
3399
3471
|
background-color: #fff;
|
3400
3472
|
}
|
3401
3473
|
.btn-link {
|
3402
|
-
font-weight:
|
3474
|
+
font-weight: 400;
|
3403
3475
|
color: #337ab7;
|
3404
3476
|
border-radius: 0;
|
3405
3477
|
}
|
@@ -3410,7 +3482,7 @@ fieldset[disabled] .btn-danger.focus {
|
|
3410
3482
|
fieldset[disabled] .btn-link {
|
3411
3483
|
background-color: transparent;
|
3412
3484
|
-webkit-box-shadow: none;
|
3413
|
-
|
3485
|
+
box-shadow: none;
|
3414
3486
|
}
|
3415
3487
|
.btn-link,
|
3416
3488
|
.btn-link:hover,
|
@@ -3428,7 +3500,7 @@ fieldset[disabled] .btn-link {
|
|
3428
3500
|
fieldset[disabled] .btn-link:hover,
|
3429
3501
|
.btn-link[disabled]:focus,
|
3430
3502
|
fieldset[disabled] .btn-link:focus {
|
3431
|
-
color: #
|
3503
|
+
color: #777777;
|
3432
3504
|
text-decoration: none;
|
3433
3505
|
}
|
3434
3506
|
.btn-lg,
|
@@ -3466,9 +3538,9 @@ input[type="button"].btn-block {
|
|
3466
3538
|
}
|
3467
3539
|
.fade {
|
3468
3540
|
opacity: 0;
|
3469
|
-
-webkit-transition: opacity .15s linear;
|
3470
|
-
|
3471
|
-
|
3541
|
+
-webkit-transition: opacity 0.15s linear;
|
3542
|
+
-o-transition: opacity 0.15s linear;
|
3543
|
+
transition: opacity 0.15s linear;
|
3472
3544
|
}
|
3473
3545
|
.fade.in {
|
3474
3546
|
opacity: 1;
|
@@ -3489,15 +3561,15 @@ tbody.collapse.in {
|
|
3489
3561
|
position: relative;
|
3490
3562
|
height: 0;
|
3491
3563
|
overflow: hidden;
|
3492
|
-
-webkit-transition-timing-function: ease;
|
3493
|
-
-o-transition-timing-function: ease;
|
3494
|
-
transition-timing-function: ease;
|
3495
|
-
-webkit-transition-duration: .35s;
|
3496
|
-
-o-transition-duration: .35s;
|
3497
|
-
transition-duration: .35s;
|
3498
3564
|
-webkit-transition-property: height, visibility;
|
3499
|
-
|
3500
|
-
|
3565
|
+
-o-transition-property: height, visibility;
|
3566
|
+
transition-property: height, visibility;
|
3567
|
+
-webkit-transition-duration: 0.35s;
|
3568
|
+
-o-transition-duration: 0.35s;
|
3569
|
+
transition-duration: 0.35s;
|
3570
|
+
-webkit-transition-timing-function: ease;
|
3571
|
+
-o-transition-timing-function: ease;
|
3572
|
+
transition-timing-function: ease;
|
3501
3573
|
}
|
3502
3574
|
.caret {
|
3503
3575
|
display: inline-block;
|
@@ -3531,13 +3603,12 @@ tbody.collapse.in {
|
|
3531
3603
|
text-align: left;
|
3532
3604
|
list-style: none;
|
3533
3605
|
background-color: #fff;
|
3534
|
-
|
3535
|
-
background-clip: padding-box;
|
3606
|
+
background-clip: padding-box;
|
3536
3607
|
border: 1px solid #ccc;
|
3537
|
-
border: 1px solid rgba(0, 0, 0, .15);
|
3608
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
3538
3609
|
border-radius: 4px;
|
3539
|
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
3540
|
-
|
3610
|
+
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3611
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
3541
3612
|
}
|
3542
3613
|
.dropdown-menu.pull-right {
|
3543
3614
|
right: 0;
|
@@ -3553,9 +3624,9 @@ tbody.collapse.in {
|
|
3553
3624
|
display: block;
|
3554
3625
|
padding: 3px 20px;
|
3555
3626
|
clear: both;
|
3556
|
-
font-weight:
|
3627
|
+
font-weight: 400;
|
3557
3628
|
line-height: 1.42857143;
|
3558
|
-
color: #
|
3629
|
+
color: #333333;
|
3559
3630
|
white-space: nowrap;
|
3560
3631
|
}
|
3561
3632
|
.dropdown-menu > li > a:hover,
|
@@ -3575,7 +3646,7 @@ tbody.collapse.in {
|
|
3575
3646
|
.dropdown-menu > .disabled > a,
|
3576
3647
|
.dropdown-menu > .disabled > a:hover,
|
3577
3648
|
.dropdown-menu > .disabled > a:focus {
|
3578
|
-
color: #
|
3649
|
+
color: #777777;
|
3579
3650
|
}
|
3580
3651
|
.dropdown-menu > .disabled > a:hover,
|
3581
3652
|
.dropdown-menu > .disabled > a:focus {
|
@@ -3604,7 +3675,7 @@ tbody.collapse.in {
|
|
3604
3675
|
padding: 3px 20px;
|
3605
3676
|
font-size: 12px;
|
3606
3677
|
line-height: 1.42857143;
|
3607
|
-
color: #
|
3678
|
+
color: #777777;
|
3608
3679
|
white-space: nowrap;
|
3609
3680
|
}
|
3610
3681
|
.dropdown-backdrop {
|
@@ -3725,12 +3796,12 @@ tbody.collapse.in {
|
|
3725
3796
|
padding-left: 12px;
|
3726
3797
|
}
|
3727
3798
|
.btn-group.open .dropdown-toggle {
|
3728
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
3729
|
-
|
3799
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3800
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
3730
3801
|
}
|
3731
3802
|
.btn-group.open .dropdown-toggle.btn-link {
|
3732
3803
|
-webkit-box-shadow: none;
|
3733
|
-
|
3804
|
+
box-shadow: none;
|
3734
3805
|
}
|
3735
3806
|
.btn .caret {
|
3736
3807
|
margin-left: 0;
|
@@ -3898,11 +3969,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3898
3969
|
.input-group-addon {
|
3899
3970
|
padding: 6px 12px;
|
3900
3971
|
font-size: 14px;
|
3901
|
-
font-weight:
|
3972
|
+
font-weight: 400;
|
3902
3973
|
line-height: 1;
|
3903
|
-
color: #
|
3974
|
+
color: #555555;
|
3904
3975
|
text-align: center;
|
3905
|
-
background-color: #
|
3976
|
+
background-color: #eeeeee;
|
3906
3977
|
border: 1px solid #ccc;
|
3907
3978
|
border-radius: 4px;
|
3908
3979
|
}
|
@@ -3988,14 +4059,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3988
4059
|
.nav > li > a:hover,
|
3989
4060
|
.nav > li > a:focus {
|
3990
4061
|
text-decoration: none;
|
3991
|
-
background-color: #
|
4062
|
+
background-color: #eeeeee;
|
3992
4063
|
}
|
3993
4064
|
.nav > li.disabled > a {
|
3994
|
-
color: #
|
4065
|
+
color: #777777;
|
3995
4066
|
}
|
3996
4067
|
.nav > li.disabled > a:hover,
|
3997
4068
|
.nav > li.disabled > a:focus {
|
3998
|
-
color: #
|
4069
|
+
color: #777777;
|
3999
4070
|
text-decoration: none;
|
4000
4071
|
cursor: not-allowed;
|
4001
4072
|
background-color: transparent;
|
@@ -4003,7 +4074,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4003
4074
|
.nav .open > a,
|
4004
4075
|
.nav .open > a:hover,
|
4005
4076
|
.nav .open > a:focus {
|
4006
|
-
background-color: #
|
4077
|
+
background-color: #eeeeee;
|
4007
4078
|
border-color: #337ab7;
|
4008
4079
|
}
|
4009
4080
|
.nav .nav-divider {
|
@@ -4029,12 +4100,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4029
4100
|
border-radius: 4px 4px 0 0;
|
4030
4101
|
}
|
4031
4102
|
.nav-tabs > li > a:hover {
|
4032
|
-
border-color: #
|
4103
|
+
border-color: #eeeeee #eeeeee #ddd;
|
4033
4104
|
}
|
4034
4105
|
.nav-tabs > li.active > a,
|
4035
4106
|
.nav-tabs > li.active > a:hover,
|
4036
4107
|
.nav-tabs > li.active > a:focus {
|
4037
|
-
color: #
|
4108
|
+
color: #555555;
|
4038
4109
|
cursor: default;
|
4039
4110
|
background-color: #fff;
|
4040
4111
|
border: 1px solid #ddd;
|
@@ -4183,10 +4254,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4183
4254
|
padding-right: 15px;
|
4184
4255
|
padding-left: 15px;
|
4185
4256
|
overflow-x: visible;
|
4186
|
-
-webkit-overflow-scrolling: touch;
|
4187
4257
|
border-top: 1px solid transparent;
|
4188
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
|
4189
|
-
|
4258
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4259
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
4260
|
+
-webkit-overflow-scrolling: touch;
|
4190
4261
|
}
|
4191
4262
|
.navbar-collapse.in {
|
4192
4263
|
overflow-y: auto;
|
@@ -4196,7 +4267,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4196
4267
|
width: auto;
|
4197
4268
|
border-top: 0;
|
4198
4269
|
-webkit-box-shadow: none;
|
4199
|
-
|
4270
|
+
box-shadow: none;
|
4200
4271
|
}
|
4201
4272
|
.navbar-collapse.collapse {
|
4202
4273
|
display: block !important;
|
@@ -4214,6 +4285,13 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4214
4285
|
padding-left: 0;
|
4215
4286
|
}
|
4216
4287
|
}
|
4288
|
+
.navbar-fixed-top,
|
4289
|
+
.navbar-fixed-bottom {
|
4290
|
+
position: fixed;
|
4291
|
+
right: 0;
|
4292
|
+
left: 0;
|
4293
|
+
z-index: 1030;
|
4294
|
+
}
|
4217
4295
|
.navbar-fixed-top .navbar-collapse,
|
4218
4296
|
.navbar-fixed-bottom .navbar-collapse {
|
4219
4297
|
max-height: 340px;
|
@@ -4224,6 +4302,21 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4224
4302
|
max-height: 200px;
|
4225
4303
|
}
|
4226
4304
|
}
|
4305
|
+
@media (min-width: 768px) {
|
4306
|
+
.navbar-fixed-top,
|
4307
|
+
.navbar-fixed-bottom {
|
4308
|
+
border-radius: 0;
|
4309
|
+
}
|
4310
|
+
}
|
4311
|
+
.navbar-fixed-top {
|
4312
|
+
top: 0;
|
4313
|
+
border-width: 0 0 1px;
|
4314
|
+
}
|
4315
|
+
.navbar-fixed-bottom {
|
4316
|
+
bottom: 0;
|
4317
|
+
margin-bottom: 0;
|
4318
|
+
border-width: 1px 0 0;
|
4319
|
+
}
|
4227
4320
|
.container > .navbar-header,
|
4228
4321
|
.container-fluid > .navbar-header,
|
4229
4322
|
.container > .navbar-collapse,
|
@@ -4249,28 +4342,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4249
4342
|
border-radius: 0;
|
4250
4343
|
}
|
4251
4344
|
}
|
4252
|
-
.navbar-fixed-top,
|
4253
|
-
.navbar-fixed-bottom {
|
4254
|
-
position: fixed;
|
4255
|
-
right: 0;
|
4256
|
-
left: 0;
|
4257
|
-
z-index: 1030;
|
4258
|
-
}
|
4259
|
-
@media (min-width: 768px) {
|
4260
|
-
.navbar-fixed-top,
|
4261
|
-
.navbar-fixed-bottom {
|
4262
|
-
border-radius: 0;
|
4263
|
-
}
|
4264
|
-
}
|
4265
|
-
.navbar-fixed-top {
|
4266
|
-
top: 0;
|
4267
|
-
border-width: 0 0 1px;
|
4268
|
-
}
|
4269
|
-
.navbar-fixed-bottom {
|
4270
|
-
bottom: 0;
|
4271
|
-
margin-bottom: 0;
|
4272
|
-
border-width: 1px 0 0;
|
4273
|
-
}
|
4274
4345
|
.navbar-brand {
|
4275
4346
|
float: left;
|
4276
4347
|
height: 50px;
|
@@ -4295,8 +4366,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4295
4366
|
position: relative;
|
4296
4367
|
float: right;
|
4297
4368
|
padding: 9px 10px;
|
4298
|
-
margin-top: 8px;
|
4299
4369
|
margin-right: 15px;
|
4370
|
+
margin-top: 8px;
|
4300
4371
|
margin-bottom: 8px;
|
4301
4372
|
background-color: transparent;
|
4302
4373
|
background-image: none;
|
@@ -4337,7 +4408,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4337
4408
|
background-color: transparent;
|
4338
4409
|
border: 0;
|
4339
4410
|
-webkit-box-shadow: none;
|
4340
|
-
|
4411
|
+
box-shadow: none;
|
4341
4412
|
}
|
4342
4413
|
.navbar-nav .open .dropdown-menu > li > a,
|
4343
4414
|
.navbar-nav .open .dropdown-menu .dropdown-header {
|
@@ -4366,14 +4437,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4366
4437
|
}
|
4367
4438
|
.navbar-form {
|
4368
4439
|
padding: 10px 15px;
|
4369
|
-
margin-top: 8px;
|
4370
4440
|
margin-right: -15px;
|
4371
|
-
margin-bottom: 8px;
|
4372
4441
|
margin-left: -15px;
|
4373
4442
|
border-top: 1px solid transparent;
|
4374
4443
|
border-bottom: 1px solid transparent;
|
4375
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
|
4376
|
-
|
4444
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4445
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
4446
|
+
margin-top: 8px;
|
4447
|
+
margin-bottom: 8px;
|
4377
4448
|
}
|
4378
4449
|
@media (min-width: 768px) {
|
4379
4450
|
.navbar-form .form-group {
|
@@ -4442,7 +4513,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4442
4513
|
margin-left: 0;
|
4443
4514
|
border: 0;
|
4444
4515
|
-webkit-box-shadow: none;
|
4445
|
-
|
4516
|
+
box-shadow: none;
|
4446
4517
|
}
|
4447
4518
|
}
|
4448
4519
|
.navbar-nav > li > .dropdown-menu {
|
@@ -4527,20 +4598,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4527
4598
|
color: #ccc;
|
4528
4599
|
background-color: transparent;
|
4529
4600
|
}
|
4530
|
-
.navbar-default .navbar-toggle {
|
4531
|
-
border-color: #ddd;
|
4532
|
-
}
|
4533
|
-
.navbar-default .navbar-toggle:hover,
|
4534
|
-
.navbar-default .navbar-toggle:focus {
|
4535
|
-
background-color: #ddd;
|
4536
|
-
}
|
4537
|
-
.navbar-default .navbar-toggle .icon-bar {
|
4538
|
-
background-color: #888;
|
4539
|
-
}
|
4540
|
-
.navbar-default .navbar-collapse,
|
4541
|
-
.navbar-default .navbar-form {
|
4542
|
-
border-color: #e7e7e7;
|
4543
|
-
}
|
4544
4601
|
.navbar-default .navbar-nav > .open > a,
|
4545
4602
|
.navbar-default .navbar-nav > .open > a:hover,
|
4546
4603
|
.navbar-default .navbar-nav > .open > a:focus {
|
@@ -4569,6 +4626,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
4569
4626
|
background-color: transparent;
|
4570
4627
|
}
|
4571
4628
|
}
|
4629
|
+
.navbar-default .navbar-toggle {
|
4630
|
+
border-color: #ddd;
|
4631
|
+
}
|
4632
|
+
.navbar-default .navbar-toggle:hover,
|
4633
|
+
.navbar-default .navbar-toggle:focus {
|
4634
|
+
background-color: #ddd;
|
4635
|
+
}
|
4636
|
+
.navbar-default .navbar-toggle .icon-bar {
|
4637
|
+
background-color: #888;
|
4638
|
+
}
|
4639
|
+
.navbar-default .navbar-collapse,
|
4640
|
+
.navbar-default .navbar-form {
|
4641
|
+
border-color: #e7e7e7;
|
4642
|
+
}
|
4572
4643
|
.navbar-default .navbar-link {
|
4573
4644
|
color: #777;
|
4574
4645
|
}
|
@@ -4623,20 +4694,6 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4623
4694
|
color: #444;
|
4624
4695
|
background-color: transparent;
|
4625
4696
|
}
|
4626
|
-
.navbar-inverse .navbar-toggle {
|
4627
|
-
border-color: #333;
|
4628
|
-
}
|
4629
|
-
.navbar-inverse .navbar-toggle:hover,
|
4630
|
-
.navbar-inverse .navbar-toggle:focus {
|
4631
|
-
background-color: #333;
|
4632
|
-
}
|
4633
|
-
.navbar-inverse .navbar-toggle .icon-bar {
|
4634
|
-
background-color: #fff;
|
4635
|
-
}
|
4636
|
-
.navbar-inverse .navbar-collapse,
|
4637
|
-
.navbar-inverse .navbar-form {
|
4638
|
-
border-color: #101010;
|
4639
|
-
}
|
4640
4697
|
.navbar-inverse .navbar-nav > .open > a,
|
4641
4698
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
4642
4699
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
@@ -4671,6 +4728,20 @@ fieldset[disabled] .navbar-default .btn-link:focus {
|
|
4671
4728
|
background-color: transparent;
|
4672
4729
|
}
|
4673
4730
|
}
|
4731
|
+
.navbar-inverse .navbar-toggle {
|
4732
|
+
border-color: #333;
|
4733
|
+
}
|
4734
|
+
.navbar-inverse .navbar-toggle:hover,
|
4735
|
+
.navbar-inverse .navbar-toggle:focus {
|
4736
|
+
background-color: #333;
|
4737
|
+
}
|
4738
|
+
.navbar-inverse .navbar-toggle .icon-bar {
|
4739
|
+
background-color: #fff;
|
4740
|
+
}
|
4741
|
+
.navbar-inverse .navbar-collapse,
|
4742
|
+
.navbar-inverse .navbar-form {
|
4743
|
+
border-color: #101010;
|
4744
|
+
}
|
4674
4745
|
.navbar-inverse .navbar-link {
|
4675
4746
|
color: #9d9d9d;
|
4676
4747
|
}
|
@@ -4706,7 +4777,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4706
4777
|
content: "/\00a0";
|
4707
4778
|
}
|
4708
4779
|
.breadcrumb > .active {
|
4709
|
-
color: #
|
4780
|
+
color: #777777;
|
4710
4781
|
}
|
4711
4782
|
.pagination {
|
4712
4783
|
display: inline-block;
|
@@ -4729,6 +4800,15 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4729
4800
|
background-color: #fff;
|
4730
4801
|
border: 1px solid #ddd;
|
4731
4802
|
}
|
4803
|
+
.pagination > li > a:hover,
|
4804
|
+
.pagination > li > span:hover,
|
4805
|
+
.pagination > li > a:focus,
|
4806
|
+
.pagination > li > span:focus {
|
4807
|
+
z-index: 2;
|
4808
|
+
color: #23527c;
|
4809
|
+
background-color: #eeeeee;
|
4810
|
+
border-color: #ddd;
|
4811
|
+
}
|
4732
4812
|
.pagination > li:first-child > a,
|
4733
4813
|
.pagination > li:first-child > span {
|
4734
4814
|
margin-left: 0;
|
@@ -4740,15 +4820,6 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4740
4820
|
border-top-right-radius: 4px;
|
4741
4821
|
border-bottom-right-radius: 4px;
|
4742
4822
|
}
|
4743
|
-
.pagination > li > a:hover,
|
4744
|
-
.pagination > li > span:hover,
|
4745
|
-
.pagination > li > a:focus,
|
4746
|
-
.pagination > li > span:focus {
|
4747
|
-
z-index: 2;
|
4748
|
-
color: #23527c;
|
4749
|
-
background-color: #eee;
|
4750
|
-
border-color: #ddd;
|
4751
|
-
}
|
4752
4823
|
.pagination > .active > a,
|
4753
4824
|
.pagination > .active > span,
|
4754
4825
|
.pagination > .active > a:hover,
|
@@ -4767,7 +4838,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4767
4838
|
.pagination > .disabled > a,
|
4768
4839
|
.pagination > .disabled > a:hover,
|
4769
4840
|
.pagination > .disabled > a:focus {
|
4770
|
-
color: #
|
4841
|
+
color: #777777;
|
4771
4842
|
cursor: not-allowed;
|
4772
4843
|
background-color: #fff;
|
4773
4844
|
border-color: #ddd;
|
@@ -4824,7 +4895,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4824
4895
|
.pager li > a:hover,
|
4825
4896
|
.pager li > a:focus {
|
4826
4897
|
text-decoration: none;
|
4827
|
-
background-color: #
|
4898
|
+
background-color: #eeeeee;
|
4828
4899
|
}
|
4829
4900
|
.pager .next > a,
|
4830
4901
|
.pager .next > span {
|
@@ -4838,21 +4909,21 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4838
4909
|
.pager .disabled > a:hover,
|
4839
4910
|
.pager .disabled > a:focus,
|
4840
4911
|
.pager .disabled > span {
|
4841
|
-
color: #
|
4912
|
+
color: #777777;
|
4842
4913
|
cursor: not-allowed;
|
4843
4914
|
background-color: #fff;
|
4844
4915
|
}
|
4845
4916
|
.label {
|
4846
4917
|
display: inline;
|
4847
|
-
padding: .2em .6em .3em;
|
4918
|
+
padding: 0.2em 0.6em 0.3em;
|
4848
4919
|
font-size: 75%;
|
4849
|
-
font-weight:
|
4920
|
+
font-weight: 700;
|
4850
4921
|
line-height: 1;
|
4851
4922
|
color: #fff;
|
4852
4923
|
text-align: center;
|
4853
4924
|
white-space: nowrap;
|
4854
4925
|
vertical-align: baseline;
|
4855
|
-
border-radius: .25em;
|
4926
|
+
border-radius: 0.25em;
|
4856
4927
|
}
|
4857
4928
|
a.label:hover,
|
4858
4929
|
a.label:focus {
|
@@ -4868,7 +4939,7 @@ a.label:focus {
|
|
4868
4939
|
top: -1px;
|
4869
4940
|
}
|
4870
4941
|
.label-default {
|
4871
|
-
background-color: #
|
4942
|
+
background-color: #777777;
|
4872
4943
|
}
|
4873
4944
|
.label-default[href]:hover,
|
4874
4945
|
.label-default[href]:focus {
|
@@ -4920,7 +4991,7 @@ a.label:focus {
|
|
4920
4991
|
text-align: center;
|
4921
4992
|
white-space: nowrap;
|
4922
4993
|
vertical-align: middle;
|
4923
|
-
background-color: #
|
4994
|
+
background-color: #777777;
|
4924
4995
|
border-radius: 10px;
|
4925
4996
|
}
|
4926
4997
|
.badge:empty {
|
@@ -4960,7 +5031,7 @@ a.badge:focus {
|
|
4960
5031
|
padding-bottom: 30px;
|
4961
5032
|
margin-bottom: 30px;
|
4962
5033
|
color: inherit;
|
4963
|
-
background-color: #
|
5034
|
+
background-color: #eeeeee;
|
4964
5035
|
}
|
4965
5036
|
.jumbotron h1,
|
4966
5037
|
.jumbotron .h1 {
|
@@ -5006,9 +5077,9 @@ a.badge:focus {
|
|
5006
5077
|
background-color: #fff;
|
5007
5078
|
border: 1px solid #ddd;
|
5008
5079
|
border-radius: 4px;
|
5009
|
-
-webkit-transition: border .2s ease-in-out;
|
5010
|
-
|
5011
|
-
|
5080
|
+
-webkit-transition: border 0.2s ease-in-out;
|
5081
|
+
-o-transition: border 0.2s ease-in-out;
|
5082
|
+
transition: border 0.2s ease-in-out;
|
5012
5083
|
}
|
5013
5084
|
.thumbnail > img,
|
5014
5085
|
.thumbnail a > img {
|
@@ -5022,7 +5093,7 @@ a.thumbnail.active {
|
|
5022
5093
|
}
|
5023
5094
|
.thumbnail .caption {
|
5024
5095
|
padding: 9px;
|
5025
|
-
color: #
|
5096
|
+
color: #333333;
|
5026
5097
|
}
|
5027
5098
|
.alert {
|
5028
5099
|
padding: 15px;
|
@@ -5129,69 +5200,69 @@ a.thumbnail.active {
|
|
5129
5200
|
overflow: hidden;
|
5130
5201
|
background-color: #f5f5f5;
|
5131
5202
|
border-radius: 4px;
|
5132
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
|
5133
|
-
|
5203
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5204
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5134
5205
|
}
|
5135
5206
|
.progress-bar {
|
5136
5207
|
float: left;
|
5137
|
-
width: 0
|
5208
|
+
width: 0%;
|
5138
5209
|
height: 100%;
|
5139
5210
|
font-size: 12px;
|
5140
5211
|
line-height: 20px;
|
5141
5212
|
color: #fff;
|
5142
5213
|
text-align: center;
|
5143
5214
|
background-color: #337ab7;
|
5144
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
|
5145
|
-
|
5146
|
-
-webkit-transition: width .6s ease;
|
5147
|
-
|
5148
|
-
|
5215
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5216
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
5217
|
+
-webkit-transition: width 0.6s ease;
|
5218
|
+
-o-transition: width 0.6s ease;
|
5219
|
+
transition: width 0.6s ease;
|
5149
5220
|
}
|
5150
5221
|
.progress-striped .progress-bar,
|
5151
5222
|
.progress-bar-striped {
|
5152
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5153
|
-
background-image:
|
5154
|
-
background-image:
|
5223
|
+
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);
|
5224
|
+
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);
|
5225
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5155
5226
|
-webkit-background-size: 40px 40px;
|
5156
|
-
|
5227
|
+
background-size: 40px 40px;
|
5157
5228
|
}
|
5158
5229
|
.progress.active .progress-bar,
|
5159
5230
|
.progress-bar.active {
|
5160
5231
|
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
5161
|
-
|
5162
|
-
|
5232
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
5233
|
+
animation: progress-bar-stripes 2s linear infinite;
|
5163
5234
|
}
|
5164
5235
|
.progress-bar-success {
|
5165
5236
|
background-color: #5cb85c;
|
5166
5237
|
}
|
5167
5238
|
.progress-striped .progress-bar-success {
|
5168
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5169
|
-
background-image:
|
5170
|
-
background-image:
|
5239
|
+
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);
|
5240
|
+
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);
|
5241
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5171
5242
|
}
|
5172
5243
|
.progress-bar-info {
|
5173
5244
|
background-color: #5bc0de;
|
5174
5245
|
}
|
5175
5246
|
.progress-striped .progress-bar-info {
|
5176
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5177
|
-
background-image:
|
5178
|
-
background-image:
|
5247
|
+
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);
|
5248
|
+
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);
|
5249
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5179
5250
|
}
|
5180
5251
|
.progress-bar-warning {
|
5181
5252
|
background-color: #f0ad4e;
|
5182
5253
|
}
|
5183
5254
|
.progress-striped .progress-bar-warning {
|
5184
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5185
|
-
background-image:
|
5186
|
-
background-image:
|
5255
|
+
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);
|
5256
|
+
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);
|
5257
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5187
5258
|
}
|
5188
5259
|
.progress-bar-danger {
|
5189
5260
|
background-color: #d9534f;
|
5190
5261
|
}
|
5191
5262
|
.progress-striped .progress-bar-danger {
|
5192
|
-
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
5193
|
-
background-image:
|
5194
|
-
background-image:
|
5263
|
+
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);
|
5264
|
+
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);
|
5265
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
5195
5266
|
}
|
5196
5267
|
.media {
|
5197
5268
|
margin-top: 15px;
|
@@ -5262,32 +5333,12 @@ a.thumbnail.active {
|
|
5262
5333
|
border-bottom-right-radius: 4px;
|
5263
5334
|
border-bottom-left-radius: 4px;
|
5264
5335
|
}
|
5265
|
-
a.list-group-item,
|
5266
|
-
button.list-group-item {
|
5267
|
-
color: #555;
|
5268
|
-
}
|
5269
|
-
a.list-group-item .list-group-item-heading,
|
5270
|
-
button.list-group-item .list-group-item-heading {
|
5271
|
-
color: #333;
|
5272
|
-
}
|
5273
|
-
a.list-group-item:hover,
|
5274
|
-
button.list-group-item:hover,
|
5275
|
-
a.list-group-item:focus,
|
5276
|
-
button.list-group-item:focus {
|
5277
|
-
color: #555;
|
5278
|
-
text-decoration: none;
|
5279
|
-
background-color: #f5f5f5;
|
5280
|
-
}
|
5281
|
-
button.list-group-item {
|
5282
|
-
width: 100%;
|
5283
|
-
text-align: left;
|
5284
|
-
}
|
5285
5336
|
.list-group-item.disabled,
|
5286
5337
|
.list-group-item.disabled:hover,
|
5287
5338
|
.list-group-item.disabled:focus {
|
5288
|
-
color: #
|
5339
|
+
color: #777777;
|
5289
5340
|
cursor: not-allowed;
|
5290
|
-
background-color: #
|
5341
|
+
background-color: #eeeeee;
|
5291
5342
|
}
|
5292
5343
|
.list-group-item.disabled .list-group-item-heading,
|
5293
5344
|
.list-group-item.disabled:hover .list-group-item-heading,
|
@@ -5297,7 +5348,7 @@ button.list-group-item {
|
|
5297
5348
|
.list-group-item.disabled .list-group-item-text,
|
5298
5349
|
.list-group-item.disabled:hover .list-group-item-text,
|
5299
5350
|
.list-group-item.disabled:focus .list-group-item-text {
|
5300
|
-
color: #
|
5351
|
+
color: #777777;
|
5301
5352
|
}
|
5302
5353
|
.list-group-item.active,
|
5303
5354
|
.list-group-item.active:hover,
|
@@ -5323,6 +5374,26 @@ button.list-group-item {
|
|
5323
5374
|
.list-group-item.active:focus .list-group-item-text {
|
5324
5375
|
color: #c7ddef;
|
5325
5376
|
}
|
5377
|
+
a.list-group-item,
|
5378
|
+
button.list-group-item {
|
5379
|
+
color: #555;
|
5380
|
+
}
|
5381
|
+
a.list-group-item .list-group-item-heading,
|
5382
|
+
button.list-group-item .list-group-item-heading {
|
5383
|
+
color: #333;
|
5384
|
+
}
|
5385
|
+
a.list-group-item:hover,
|
5386
|
+
button.list-group-item:hover,
|
5387
|
+
a.list-group-item:focus,
|
5388
|
+
button.list-group-item:focus {
|
5389
|
+
color: #555;
|
5390
|
+
text-decoration: none;
|
5391
|
+
background-color: #f5f5f5;
|
5392
|
+
}
|
5393
|
+
button.list-group-item {
|
5394
|
+
width: 100%;
|
5395
|
+
text-align: left;
|
5396
|
+
}
|
5326
5397
|
.list-group-item-success {
|
5327
5398
|
color: #3c763d;
|
5328
5399
|
background-color: #dff0d8;
|
@@ -5452,8 +5523,8 @@ button.list-group-item-danger.active:focus {
|
|
5452
5523
|
background-color: #fff;
|
5453
5524
|
border: 1px solid transparent;
|
5454
5525
|
border-radius: 4px;
|
5455
|
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
|
5456
|
-
|
5526
|
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5527
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
5457
5528
|
}
|
5458
5529
|
.panel-body {
|
5459
5530
|
padding: 15px;
|
@@ -5686,7 +5757,7 @@ button.list-group-item-danger.active:focus {
|
|
5686
5757
|
border-color: #ddd;
|
5687
5758
|
}
|
5688
5759
|
.panel-default > .panel-heading {
|
5689
|
-
color: #
|
5760
|
+
color: #333333;
|
5690
5761
|
background-color: #f5f5f5;
|
5691
5762
|
border-color: #ddd;
|
5692
5763
|
}
|
@@ -5695,7 +5766,7 @@ button.list-group-item-danger.active:focus {
|
|
5695
5766
|
}
|
5696
5767
|
.panel-default > .panel-heading .badge {
|
5697
5768
|
color: #f5f5f5;
|
5698
|
-
background-color: #
|
5769
|
+
background-color: #333333;
|
5699
5770
|
}
|
5700
5771
|
.panel-default > .panel-footer + .panel-collapse > .panel-body {
|
5701
5772
|
border-bottom-color: #ddd;
|
@@ -5823,12 +5894,12 @@ button.list-group-item-danger.active:focus {
|
|
5823
5894
|
background-color: #f5f5f5;
|
5824
5895
|
border: 1px solid #e3e3e3;
|
5825
5896
|
border-radius: 4px;
|
5826
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
|
5827
|
-
|
5897
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
5898
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
5828
5899
|
}
|
5829
5900
|
.well blockquote {
|
5830
5901
|
border-color: #ddd;
|
5831
|
-
border-color: rgba(0, 0, 0, .15);
|
5902
|
+
border-color: rgba(0, 0, 0, 0.15);
|
5832
5903
|
}
|
5833
5904
|
.well-lg {
|
5834
5905
|
padding: 24px;
|
@@ -5846,7 +5917,7 @@ button.list-group-item-danger.active:focus {
|
|
5846
5917
|
color: #000;
|
5847
5918
|
text-shadow: 0 1px 0 #fff;
|
5848
5919
|
filter: alpha(opacity=20);
|
5849
|
-
opacity: .2;
|
5920
|
+
opacity: 0.2;
|
5850
5921
|
}
|
5851
5922
|
.close:hover,
|
5852
5923
|
.close:focus {
|
@@ -5854,14 +5925,16 @@ button.list-group-item-danger.active:focus {
|
|
5854
5925
|
text-decoration: none;
|
5855
5926
|
cursor: pointer;
|
5856
5927
|
filter: alpha(opacity=50);
|
5857
|
-
opacity: .5;
|
5928
|
+
opacity: 0.5;
|
5858
5929
|
}
|
5859
5930
|
button.close {
|
5860
|
-
-webkit-appearance: none;
|
5861
5931
|
padding: 0;
|
5862
5932
|
cursor: pointer;
|
5863
5933
|
background: transparent;
|
5864
5934
|
border: 0;
|
5935
|
+
-webkit-appearance: none;
|
5936
|
+
-moz-appearance: none;
|
5937
|
+
appearance: none;
|
5865
5938
|
}
|
5866
5939
|
.modal-open {
|
5867
5940
|
overflow: hidden;
|
@@ -5879,19 +5952,21 @@ button.close {
|
|
5879
5952
|
outline: 0;
|
5880
5953
|
}
|
5881
5954
|
.modal.fade .modal-dialog {
|
5882
|
-
-webkit-transition: -webkit-transform .3s ease-out;
|
5883
|
-
-o-transition: -o-transform .3s ease-out;
|
5884
|
-
transition: transform .3s ease-out;
|
5885
5955
|
-webkit-transform: translate(0, -25%);
|
5886
|
-
|
5887
|
-
|
5888
|
-
|
5956
|
+
-ms-transform: translate(0, -25%);
|
5957
|
+
-o-transform: translate(0, -25%);
|
5958
|
+
transform: translate(0, -25%);
|
5959
|
+
-webkit-transition: -webkit-transform 0.3s ease-out;
|
5960
|
+
-o-transition: -o-transform 0.3s ease-out;
|
5961
|
+
transition: -webkit-transform 0.3s ease-out;
|
5962
|
+
transition: transform 0.3s ease-out;
|
5963
|
+
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
|
5889
5964
|
}
|
5890
5965
|
.modal.in .modal-dialog {
|
5891
5966
|
-webkit-transform: translate(0, 0);
|
5892
|
-
|
5893
|
-
|
5894
|
-
|
5967
|
+
-ms-transform: translate(0, 0);
|
5968
|
+
-o-transform: translate(0, 0);
|
5969
|
+
transform: translate(0, 0);
|
5895
5970
|
}
|
5896
5971
|
.modal-open .modal {
|
5897
5972
|
overflow-x: hidden;
|
@@ -5905,14 +5980,13 @@ button.close {
|
|
5905
5980
|
.modal-content {
|
5906
5981
|
position: relative;
|
5907
5982
|
background-color: #fff;
|
5908
|
-
|
5909
|
-
background-clip: padding-box;
|
5983
|
+
background-clip: padding-box;
|
5910
5984
|
border: 1px solid #999;
|
5911
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
5985
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
5912
5986
|
border-radius: 6px;
|
5987
|
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5988
|
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
5913
5989
|
outline: 0;
|
5914
|
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5915
|
-
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
5916
5990
|
}
|
5917
5991
|
.modal-backdrop {
|
5918
5992
|
position: fixed;
|
@@ -5929,7 +6003,7 @@ button.close {
|
|
5929
6003
|
}
|
5930
6004
|
.modal-backdrop.in {
|
5931
6005
|
filter: alpha(opacity=50);
|
5932
|
-
opacity: .5;
|
6006
|
+
opacity: 0.5;
|
5933
6007
|
}
|
5934
6008
|
.modal-header {
|
5935
6009
|
padding: 15px;
|
@@ -5974,8 +6048,8 @@ button.close {
|
|
5974
6048
|
margin: 30px auto;
|
5975
6049
|
}
|
5976
6050
|
.modal-content {
|
5977
|
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
5978
|
-
|
6051
|
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
6052
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
5979
6053
|
}
|
5980
6054
|
.modal-sm {
|
5981
6055
|
width: 300px;
|
@@ -5991,10 +6065,10 @@ button.close {
|
|
5991
6065
|
z-index: 1070;
|
5992
6066
|
display: block;
|
5993
6067
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5994
|
-
font-size: 12px;
|
5995
6068
|
font-style: normal;
|
5996
|
-
font-weight:
|
6069
|
+
font-weight: 400;
|
5997
6070
|
line-height: 1.42857143;
|
6071
|
+
line-break: auto;
|
5998
6072
|
text-align: left;
|
5999
6073
|
text-align: start;
|
6000
6074
|
text-decoration: none;
|
@@ -6005,14 +6079,13 @@ button.close {
|
|
6005
6079
|
word-spacing: normal;
|
6006
6080
|
word-wrap: normal;
|
6007
6081
|
white-space: normal;
|
6082
|
+
font-size: 12px;
|
6008
6083
|
filter: alpha(opacity=0);
|
6009
6084
|
opacity: 0;
|
6010
|
-
|
6011
|
-
line-break: auto;
|
6012
6085
|
}
|
6013
6086
|
.tooltip.in {
|
6014
6087
|
filter: alpha(opacity=90);
|
6015
|
-
opacity: .9;
|
6088
|
+
opacity: 0.9;
|
6016
6089
|
}
|
6017
6090
|
.tooltip.top {
|
6018
6091
|
padding: 5px 0;
|
@@ -6030,21 +6103,6 @@ button.close {
|
|
6030
6103
|
padding: 0 5px;
|
6031
6104
|
margin-left: -3px;
|
6032
6105
|
}
|
6033
|
-
.tooltip-inner {
|
6034
|
-
max-width: 200px;
|
6035
|
-
padding: 3px 8px;
|
6036
|
-
color: #fff;
|
6037
|
-
text-align: center;
|
6038
|
-
background-color: #000;
|
6039
|
-
border-radius: 4px;
|
6040
|
-
}
|
6041
|
-
.tooltip-arrow {
|
6042
|
-
position: absolute;
|
6043
|
-
width: 0;
|
6044
|
-
height: 0;
|
6045
|
-
border-color: transparent;
|
6046
|
-
border-style: solid;
|
6047
|
-
}
|
6048
6106
|
.tooltip.top .tooltip-arrow {
|
6049
6107
|
bottom: 0;
|
6050
6108
|
left: 50%;
|
@@ -6101,6 +6159,21 @@ button.close {
|
|
6101
6159
|
border-width: 0 5px 5px;
|
6102
6160
|
border-bottom-color: #000;
|
6103
6161
|
}
|
6162
|
+
.tooltip-inner {
|
6163
|
+
max-width: 200px;
|
6164
|
+
padding: 3px 8px;
|
6165
|
+
color: #fff;
|
6166
|
+
text-align: center;
|
6167
|
+
background-color: #000;
|
6168
|
+
border-radius: 4px;
|
6169
|
+
}
|
6170
|
+
.tooltip-arrow {
|
6171
|
+
position: absolute;
|
6172
|
+
width: 0;
|
6173
|
+
height: 0;
|
6174
|
+
border-color: transparent;
|
6175
|
+
border-style: solid;
|
6176
|
+
}
|
6104
6177
|
.popover {
|
6105
6178
|
position: absolute;
|
6106
6179
|
top: 0;
|
@@ -6110,10 +6183,10 @@ button.close {
|
|
6110
6183
|
max-width: 276px;
|
6111
6184
|
padding: 1px;
|
6112
6185
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
6113
|
-
font-size: 14px;
|
6114
6186
|
font-style: normal;
|
6115
|
-
font-weight:
|
6187
|
+
font-weight: 400;
|
6116
6188
|
line-height: 1.42857143;
|
6189
|
+
line-break: auto;
|
6117
6190
|
text-align: left;
|
6118
6191
|
text-align: start;
|
6119
6192
|
text-decoration: none;
|
@@ -6124,16 +6197,14 @@ button.close {
|
|
6124
6197
|
word-spacing: normal;
|
6125
6198
|
word-wrap: normal;
|
6126
6199
|
white-space: normal;
|
6200
|
+
font-size: 14px;
|
6127
6201
|
background-color: #fff;
|
6128
|
-
|
6129
|
-
background-clip: padding-box;
|
6202
|
+
background-clip: padding-box;
|
6130
6203
|
border: 1px solid #ccc;
|
6131
|
-
border: 1px solid rgba(0, 0, 0, .2);
|
6204
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
6132
6205
|
border-radius: 6px;
|
6133
|
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
|
6134
|
-
|
6135
|
-
|
6136
|
-
line-break: auto;
|
6206
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6207
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
6137
6208
|
}
|
6138
6209
|
.popover.top {
|
6139
6210
|
margin-top: -10px;
|
@@ -6147,16 +6218,8 @@ button.close {
|
|
6147
6218
|
.popover.left {
|
6148
6219
|
margin-left: -10px;
|
6149
6220
|
}
|
6150
|
-
.popover
|
6151
|
-
|
6152
|
-
margin: 0;
|
6153
|
-
font-size: 14px;
|
6154
|
-
background-color: #f7f7f7;
|
6155
|
-
border-bottom: 1px solid #ebebeb;
|
6156
|
-
border-radius: 5px 5px 0 0;
|
6157
|
-
}
|
6158
|
-
.popover-content {
|
6159
|
-
padding: 9px 14px;
|
6221
|
+
.popover > .arrow {
|
6222
|
+
border-width: 11px;
|
6160
6223
|
}
|
6161
6224
|
.popover > .arrow,
|
6162
6225
|
.popover > .arrow:after {
|
@@ -6167,9 +6230,6 @@ button.close {
|
|
6167
6230
|
border-color: transparent;
|
6168
6231
|
border-style: solid;
|
6169
6232
|
}
|
6170
|
-
.popover > .arrow {
|
6171
|
-
border-width: 11px;
|
6172
|
-
}
|
6173
6233
|
.popover > .arrow:after {
|
6174
6234
|
content: "";
|
6175
6235
|
border-width: 10px;
|
@@ -6178,8 +6238,8 @@ button.close {
|
|
6178
6238
|
bottom: -11px;
|
6179
6239
|
left: 50%;
|
6180
6240
|
margin-left: -11px;
|
6181
|
-
border-top-color: #
|
6182
|
-
border-top-color: rgba(0, 0, 0, .25);
|
6241
|
+
border-top-color: #999999;
|
6242
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
6183
6243
|
border-bottom-width: 0;
|
6184
6244
|
}
|
6185
6245
|
.popover.top > .arrow:after {
|
@@ -6193,8 +6253,8 @@ button.close {
|
|
6193
6253
|
top: 50%;
|
6194
6254
|
left: -11px;
|
6195
6255
|
margin-top: -11px;
|
6196
|
-
border-right-color: #
|
6197
|
-
border-right-color: rgba(0, 0, 0, .25);
|
6256
|
+
border-right-color: #999999;
|
6257
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
6198
6258
|
border-left-width: 0;
|
6199
6259
|
}
|
6200
6260
|
.popover.right > .arrow:after {
|
@@ -6209,8 +6269,8 @@ button.close {
|
|
6209
6269
|
left: 50%;
|
6210
6270
|
margin-left: -11px;
|
6211
6271
|
border-top-width: 0;
|
6212
|
-
border-bottom-color: #
|
6213
|
-
border-bottom-color: rgba(0, 0, 0, .25);
|
6272
|
+
border-bottom-color: #999999;
|
6273
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
6214
6274
|
}
|
6215
6275
|
.popover.bottom > .arrow:after {
|
6216
6276
|
top: 1px;
|
@@ -6224,8 +6284,8 @@ button.close {
|
|
6224
6284
|
right: -11px;
|
6225
6285
|
margin-top: -11px;
|
6226
6286
|
border-right-width: 0;
|
6227
|
-
border-left-color: #
|
6228
|
-
border-left-color: rgba(0, 0, 0, .25);
|
6287
|
+
border-left-color: #999999;
|
6288
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
6229
6289
|
}
|
6230
6290
|
.popover.left > .arrow:after {
|
6231
6291
|
right: 1px;
|
@@ -6234,6 +6294,17 @@ button.close {
|
|
6234
6294
|
border-right-width: 0;
|
6235
6295
|
border-left-color: #fff;
|
6236
6296
|
}
|
6297
|
+
.popover-title {
|
6298
|
+
padding: 8px 14px;
|
6299
|
+
margin: 0;
|
6300
|
+
font-size: 14px;
|
6301
|
+
background-color: #f7f7f7;
|
6302
|
+
border-bottom: 1px solid #ebebeb;
|
6303
|
+
border-radius: 5px 5px 0 0;
|
6304
|
+
}
|
6305
|
+
.popover-content {
|
6306
|
+
padding: 9px 14px;
|
6307
|
+
}
|
6237
6308
|
.carousel {
|
6238
6309
|
position: relative;
|
6239
6310
|
}
|
@@ -6245,9 +6316,9 @@ button.close {
|
|
6245
6316
|
.carousel-inner > .item {
|
6246
6317
|
position: relative;
|
6247
6318
|
display: none;
|
6248
|
-
-webkit-transition: .6s ease-in-out left;
|
6249
|
-
|
6250
|
-
|
6319
|
+
-webkit-transition: 0.6s ease-in-out left;
|
6320
|
+
-o-transition: 0.6s ease-in-out left;
|
6321
|
+
transition: 0.6s ease-in-out left;
|
6251
6322
|
}
|
6252
6323
|
.carousel-inner > .item > img,
|
6253
6324
|
.carousel-inner > .item > a > img {
|
@@ -6255,33 +6326,34 @@ button.close {
|
|
6255
6326
|
}
|
6256
6327
|
@media all and (transform-3d), (-webkit-transform-3d) {
|
6257
6328
|
.carousel-inner > .item {
|
6258
|
-
-webkit-transition: -webkit-transform .6s ease-in-out;
|
6259
|
-
|
6260
|
-
|
6261
|
-
|
6329
|
+
-webkit-transition: -webkit-transform 0.6s ease-in-out;
|
6330
|
+
-o-transition: -o-transform 0.6s ease-in-out;
|
6331
|
+
transition: -webkit-transform 0.6s ease-in-out;
|
6332
|
+
transition: transform 0.6s ease-in-out;
|
6333
|
+
transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
|
6262
6334
|
-webkit-backface-visibility: hidden;
|
6263
|
-
|
6335
|
+
backface-visibility: hidden;
|
6264
6336
|
-webkit-perspective: 1000px;
|
6265
|
-
|
6337
|
+
perspective: 1000px;
|
6266
6338
|
}
|
6267
6339
|
.carousel-inner > .item.next,
|
6268
6340
|
.carousel-inner > .item.active.right {
|
6269
|
-
left: 0;
|
6270
6341
|
-webkit-transform: translate3d(100%, 0, 0);
|
6271
|
-
|
6342
|
+
transform: translate3d(100%, 0, 0);
|
6343
|
+
left: 0;
|
6272
6344
|
}
|
6273
6345
|
.carousel-inner > .item.prev,
|
6274
6346
|
.carousel-inner > .item.active.left {
|
6275
|
-
left: 0;
|
6276
6347
|
-webkit-transform: translate3d(-100%, 0, 0);
|
6277
|
-
|
6348
|
+
transform: translate3d(-100%, 0, 0);
|
6349
|
+
left: 0;
|
6278
6350
|
}
|
6279
6351
|
.carousel-inner > .item.next.left,
|
6280
6352
|
.carousel-inner > .item.prev.right,
|
6281
6353
|
.carousel-inner > .item.active {
|
6282
|
-
left: 0;
|
6283
6354
|
-webkit-transform: translate3d(0, 0, 0);
|
6284
|
-
|
6355
|
+
transform: translate3d(0, 0, 0);
|
6356
|
+
left: 0;
|
6285
6357
|
}
|
6286
6358
|
}
|
6287
6359
|
.carousel-inner > .active,
|
@@ -6323,26 +6395,26 @@ button.close {
|
|
6323
6395
|
font-size: 20px;
|
6324
6396
|
color: #fff;
|
6325
6397
|
text-align: center;
|
6326
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6398
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6327
6399
|
background-color: rgba(0, 0, 0, 0);
|
6328
6400
|
filter: alpha(opacity=50);
|
6329
|
-
opacity: .5;
|
6401
|
+
opacity: 0.5;
|
6330
6402
|
}
|
6331
6403
|
.carousel-control.left {
|
6332
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
|
6333
|
-
background-image:
|
6334
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
|
6335
|
-
background-image:
|
6404
|
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6405
|
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6406
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
6407
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
6336
6408
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
6337
6409
|
background-repeat: repeat-x;
|
6338
6410
|
}
|
6339
6411
|
.carousel-control.right {
|
6340
6412
|
right: 0;
|
6341
6413
|
left: auto;
|
6342
|
-
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
|
6343
|
-
background-image:
|
6344
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
|
6345
|
-
background-image:
|
6414
|
+
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6415
|
+
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6416
|
+
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
6417
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
6346
6418
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
6347
6419
|
background-repeat: repeat-x;
|
6348
6420
|
}
|
@@ -6350,9 +6422,9 @@ button.close {
|
|
6350
6422
|
.carousel-control:focus {
|
6351
6423
|
color: #fff;
|
6352
6424
|
text-decoration: none;
|
6353
|
-
filter: alpha(opacity=90);
|
6354
6425
|
outline: 0;
|
6355
|
-
|
6426
|
+
filter: alpha(opacity=90);
|
6427
|
+
opacity: 0.9;
|
6356
6428
|
}
|
6357
6429
|
.carousel-control .icon-prev,
|
6358
6430
|
.carousel-control .icon-next,
|
@@ -6382,10 +6454,10 @@ button.close {
|
|
6382
6454
|
line-height: 1;
|
6383
6455
|
}
|
6384
6456
|
.carousel-control .icon-prev:before {
|
6385
|
-
content:
|
6457
|
+
content: "\2039";
|
6386
6458
|
}
|
6387
6459
|
.carousel-control .icon-next:before {
|
6388
|
-
content:
|
6460
|
+
content: "\203a";
|
6389
6461
|
}
|
6390
6462
|
.carousel-indicators {
|
6391
6463
|
position: absolute;
|
@@ -6426,7 +6498,7 @@ button.close {
|
|
6426
6498
|
padding-bottom: 20px;
|
6427
6499
|
color: #fff;
|
6428
6500
|
text-align: center;
|
6429
|
-
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6501
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
6430
6502
|
}
|
6431
6503
|
.carousel-caption .btn {
|
6432
6504
|
text-shadow: none;
|