bitwrench 2.0.12 → 2.0.14
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.
- package/README.md +4 -4
- package/dist/bitwrench-code-edit.cjs.js +1 -1
- package/dist/bitwrench-code-edit.es5.js +1 -1
- package/dist/bitwrench-code-edit.es5.min.js +1 -1
- package/dist/bitwrench-code-edit.esm.js +1 -1
- package/dist/bitwrench-code-edit.esm.min.js +1 -1
- package/dist/bitwrench-code-edit.umd.js +1 -1
- package/dist/bitwrench-code-edit.umd.min.js +1 -1
- package/dist/bitwrench-lean.cjs.js +659 -346
- package/dist/bitwrench-lean.cjs.min.js +5 -5
- package/dist/bitwrench-lean.es5.js +960 -347
- package/dist/bitwrench-lean.es5.min.js +3 -3
- package/dist/bitwrench-lean.esm.js +659 -346
- package/dist/bitwrench-lean.esm.min.js +5 -5
- package/dist/bitwrench-lean.umd.js +659 -346
- package/dist/bitwrench-lean.umd.min.js +5 -5
- package/dist/bitwrench.cjs.js +1737 -452
- package/dist/bitwrench.cjs.min.js +6 -6
- package/dist/bitwrench.css +1625 -168
- package/dist/bitwrench.es5.js +4016 -2341
- package/dist/bitwrench.es5.min.js +4 -4
- package/dist/bitwrench.esm.js +1737 -452
- package/dist/bitwrench.esm.min.js +6 -6
- package/dist/bitwrench.umd.js +1737 -452
- package/dist/bitwrench.umd.min.js +6 -6
- package/dist/builds.json +61 -61
- package/dist/sri.json +26 -26
- package/package.json +1 -1
- package/readme.html +5 -5
- package/src/bitwrench-color-utils.js +137 -17
- package/src/bitwrench-components-v2.js +997 -35
- package/src/bitwrench-styles.js +1098 -370
- package/src/bitwrench.js +128 -75
- package/src/version.js +3 -3
package/dist/bitwrench.css
CHANGED
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
--bw-pink: #d63384;
|
|
14
14
|
--bw-red: #dc3545;
|
|
15
15
|
--bw-orange: #fd7e14;
|
|
16
|
-
--bw-yellow: #
|
|
16
|
+
--bw-yellow: #b38600;
|
|
17
17
|
--bw-green: #198754;
|
|
18
18
|
--bw-teal: #20c997;
|
|
19
|
-
--bw-cyan: #
|
|
19
|
+
--bw-cyan: #0891b2;
|
|
20
20
|
--bw-black: #000;
|
|
21
21
|
--bw-white: #fff;
|
|
22
22
|
--bw-gray: #6c757d;
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
--bw-primary: #006666;
|
|
34
34
|
--bw-secondary: #6c757d;
|
|
35
35
|
--bw-success: #198754;
|
|
36
|
-
--bw-info: #
|
|
37
|
-
--bw-warning: #
|
|
36
|
+
--bw-info: #0891b2;
|
|
37
|
+
--bw-warning: #b38600;
|
|
38
38
|
--bw-danger: #dc3545;
|
|
39
39
|
--bw-light: #f8f9fa;
|
|
40
40
|
--bw-dark: #212529;
|
|
@@ -547,7 +547,7 @@ a:hover {
|
|
|
547
547
|
font-size: 0.875rem;
|
|
548
548
|
font-family: inherit;
|
|
549
549
|
border-radius: 6px;
|
|
550
|
-
transition: all 0.15s
|
|
550
|
+
transition: all 0.15s ease-out;
|
|
551
551
|
box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
|
552
552
|
gap: 0.5rem;
|
|
553
553
|
}
|
|
@@ -570,7 +570,7 @@ a:hover {
|
|
|
570
570
|
font-size: 0.875rem;
|
|
571
571
|
font-family: inherit;
|
|
572
572
|
border-radius: 6px;
|
|
573
|
-
transition: all 0.15s
|
|
573
|
+
transition: all 0.15s ease-out;
|
|
574
574
|
box-shadow: 0 1px 2px rgba(0,0,0,.05);
|
|
575
575
|
gap: 0.5rem;
|
|
576
576
|
}
|
|
@@ -598,12 +598,14 @@ a:hover {
|
|
|
598
598
|
}
|
|
599
599
|
|
|
600
600
|
.bw-btn:focus-visible {
|
|
601
|
-
outline:
|
|
601
|
+
outline: 2px solid currentColor;
|
|
602
|
+
outline-offset: 2px;
|
|
602
603
|
box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.3);
|
|
603
604
|
}
|
|
604
605
|
|
|
605
606
|
.bw-bw_btn:focus-visible {
|
|
606
|
-
outline:
|
|
607
|
+
outline: 2px solid currentColor;
|
|
608
|
+
outline-offset: 2px;
|
|
607
609
|
box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.3);
|
|
608
610
|
}
|
|
609
611
|
|
|
@@ -717,14 +719,14 @@ a:hover {
|
|
|
717
719
|
|
|
718
720
|
.bw-btn-warning {
|
|
719
721
|
color: #000;
|
|
720
|
-
background-color: #
|
|
721
|
-
border-color: #
|
|
722
|
+
background-color: #b38600;
|
|
723
|
+
border-color: #b38600;
|
|
722
724
|
}
|
|
723
725
|
|
|
724
726
|
.bw-bw_btn-warning {
|
|
725
727
|
color: #000;
|
|
726
|
-
background-color: #
|
|
727
|
-
border-color: #
|
|
728
|
+
background-color: #b38600;
|
|
729
|
+
border-color: #b38600;
|
|
728
730
|
}
|
|
729
731
|
|
|
730
732
|
.bw-btn-warning:hover {
|
|
@@ -741,14 +743,14 @@ a:hover {
|
|
|
741
743
|
|
|
742
744
|
.bw-btn-info {
|
|
743
745
|
color: #000;
|
|
744
|
-
background-color: #
|
|
745
|
-
border-color: #
|
|
746
|
+
background-color: #0891b2;
|
|
747
|
+
border-color: #0891b2;
|
|
746
748
|
}
|
|
747
749
|
|
|
748
750
|
.bw-bw_btn-info {
|
|
749
751
|
color: #000;
|
|
750
|
-
background-color: #
|
|
751
|
-
border-color: #
|
|
752
|
+
background-color: #0891b2;
|
|
753
|
+
border-color: #0891b2;
|
|
752
754
|
}
|
|
753
755
|
|
|
754
756
|
.bw-btn-info:hover {
|
|
@@ -908,51 +910,51 @@ a:hover {
|
|
|
908
910
|
}
|
|
909
911
|
|
|
910
912
|
.bw-btn-outline-warning {
|
|
911
|
-
color: #
|
|
912
|
-
border-color: #
|
|
913
|
+
color: #b38600;
|
|
914
|
+
border-color: #b38600;
|
|
913
915
|
background-color: transparent;
|
|
914
916
|
}
|
|
915
917
|
|
|
916
918
|
.bw-bw_btn-outline-warning {
|
|
917
|
-
color: #
|
|
918
|
-
border-color: #
|
|
919
|
+
color: #b38600;
|
|
920
|
+
border-color: #b38600;
|
|
919
921
|
background-color: transparent;
|
|
920
922
|
}
|
|
921
923
|
|
|
922
924
|
.bw-btn-outline-warning:hover {
|
|
923
925
|
color: #000;
|
|
924
|
-
background-color: #
|
|
925
|
-
border-color: #
|
|
926
|
+
background-color: #b38600;
|
|
927
|
+
border-color: #b38600;
|
|
926
928
|
}
|
|
927
929
|
|
|
928
930
|
.bw-bw_btn-outline-warning:hover {
|
|
929
931
|
color: #000;
|
|
930
|
-
background-color: #
|
|
931
|
-
border-color: #
|
|
932
|
+
background-color: #b38600;
|
|
933
|
+
border-color: #b38600;
|
|
932
934
|
}
|
|
933
935
|
|
|
934
936
|
.bw-btn-outline-info {
|
|
935
|
-
color: #
|
|
936
|
-
border-color: #
|
|
937
|
+
color: #0891b2;
|
|
938
|
+
border-color: #0891b2;
|
|
937
939
|
background-color: transparent;
|
|
938
940
|
}
|
|
939
941
|
|
|
940
942
|
.bw-bw_btn-outline-info {
|
|
941
|
-
color: #
|
|
942
|
-
border-color: #
|
|
943
|
+
color: #0891b2;
|
|
944
|
+
border-color: #0891b2;
|
|
943
945
|
background-color: transparent;
|
|
944
946
|
}
|
|
945
947
|
|
|
946
948
|
.bw-btn-outline-info:hover {
|
|
947
949
|
color: #000;
|
|
948
|
-
background-color: #
|
|
949
|
-
border-color: #
|
|
950
|
+
background-color: #0891b2;
|
|
951
|
+
border-color: #0891b2;
|
|
950
952
|
}
|
|
951
953
|
|
|
952
954
|
.bw-bw_btn-outline-info:hover {
|
|
953
955
|
color: #000;
|
|
954
|
-
background-color: #
|
|
955
|
-
border-color: #
|
|
956
|
+
background-color: #0891b2;
|
|
957
|
+
border-color: #0891b2;
|
|
956
958
|
}
|
|
957
959
|
|
|
958
960
|
.bw-btn-outline-light {
|
|
@@ -1039,7 +1041,7 @@ a:hover {
|
|
|
1039
1041
|
border: 1px solid transparent;
|
|
1040
1042
|
border-radius: 8px;
|
|
1041
1043
|
box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
|
|
1042
|
-
transition: box-shadow 0.2s
|
|
1044
|
+
transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
|
|
1043
1045
|
margin-bottom: 1.5rem;
|
|
1044
1046
|
overflow: hidden;
|
|
1045
1047
|
}
|
|
@@ -1056,7 +1058,7 @@ a:hover {
|
|
|
1056
1058
|
border: 1px solid transparent;
|
|
1057
1059
|
border-radius: 8px;
|
|
1058
1060
|
box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
|
|
1059
|
-
transition: box-shadow 0.2s
|
|
1061
|
+
transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
|
|
1060
1062
|
margin-bottom: 1.5rem;
|
|
1061
1063
|
overflow: hidden;
|
|
1062
1064
|
}
|
|
@@ -1230,7 +1232,7 @@ a:hover {
|
|
|
1230
1232
|
border: 1px solid transparent;
|
|
1231
1233
|
appearance: none;
|
|
1232
1234
|
border-radius: 6px;
|
|
1233
|
-
transition: border-color 0.15s ease-
|
|
1235
|
+
transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
1234
1236
|
font-family: inherit;
|
|
1235
1237
|
}
|
|
1236
1238
|
|
|
@@ -1247,7 +1249,7 @@ a:hover {
|
|
|
1247
1249
|
border: 1px solid transparent;
|
|
1248
1250
|
appearance: none;
|
|
1249
1251
|
border-radius: 6px;
|
|
1250
|
-
transition: border-color 0.15s ease-
|
|
1252
|
+
transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
1251
1253
|
font-family: inherit;
|
|
1252
1254
|
}
|
|
1253
1255
|
|
|
@@ -1255,7 +1257,8 @@ a:hover {
|
|
|
1255
1257
|
color: #1a1a1a;
|
|
1256
1258
|
background-color: #fff;
|
|
1257
1259
|
border-color: #80cccc;
|
|
1258
|
-
outline:
|
|
1260
|
+
outline: 2px solid currentColor;
|
|
1261
|
+
outline-offset: -1px;
|
|
1259
1262
|
box-shadow: 0 0 0 0.25rem rgba(0, 102, 102, 0.25);
|
|
1260
1263
|
}
|
|
1261
1264
|
|
|
@@ -1263,7 +1266,8 @@ a:hover {
|
|
|
1263
1266
|
color: #1a1a1a;
|
|
1264
1267
|
background-color: #fff;
|
|
1265
1268
|
border-color: #80cccc;
|
|
1266
|
-
outline:
|
|
1269
|
+
outline: 2px solid currentColor;
|
|
1270
|
+
outline-offset: -1px;
|
|
1267
1271
|
box-shadow: 0 0 0 0.25rem rgba(0, 102, 102, 0.25);
|
|
1268
1272
|
}
|
|
1269
1273
|
|
|
@@ -1339,6 +1343,70 @@ textarea.bw_form-control {
|
|
|
1339
1343
|
resize: vertical;
|
|
1340
1344
|
}
|
|
1341
1345
|
|
|
1346
|
+
.bw-form-control.bw-is-valid {
|
|
1347
|
+
border-color: #198754;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.bw-bw_form-control.bw_is-valid {
|
|
1351
|
+
border-color: #198754;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.bw-form-control.bw-is-valid:focus {
|
|
1355
|
+
border-color: #198754;
|
|
1356
|
+
box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.bw-bw_form-control.bw_is-valid:focus {
|
|
1360
|
+
border-color: #198754;
|
|
1361
|
+
box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.bw-form-control.bw-is-invalid {
|
|
1365
|
+
border-color: #dc3545;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.bw-bw_form-control.bw_is-invalid {
|
|
1369
|
+
border-color: #dc3545;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.bw-form-control.bw-is-invalid:focus {
|
|
1373
|
+
border-color: #dc3545;
|
|
1374
|
+
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.bw-bw_form-control.bw_is-invalid:focus {
|
|
1378
|
+
border-color: #dc3545;
|
|
1379
|
+
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.bw-valid-feedback {
|
|
1383
|
+
display: block;
|
|
1384
|
+
font-size: 0.875rem;
|
|
1385
|
+
color: #198754;
|
|
1386
|
+
margin-top: 0.25rem;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.bw-bw_valid-feedback {
|
|
1390
|
+
display: block;
|
|
1391
|
+
font-size: 0.875rem;
|
|
1392
|
+
color: #198754;
|
|
1393
|
+
margin-top: 0.25rem;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.bw-invalid-feedback {
|
|
1397
|
+
display: block;
|
|
1398
|
+
font-size: 0.875rem;
|
|
1399
|
+
color: #dc3545;
|
|
1400
|
+
margin-top: 0.25rem;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.bw-bw_invalid-feedback {
|
|
1404
|
+
display: block;
|
|
1405
|
+
font-size: 0.875rem;
|
|
1406
|
+
color: #dc3545;
|
|
1407
|
+
margin-top: 0.25rem;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1342
1410
|
.bw-form-check {
|
|
1343
1411
|
display: flex;
|
|
1344
1412
|
align-items: center;
|
|
@@ -1941,8 +2009,8 @@ textarea.bw_form-control {
|
|
|
1941
2009
|
|
|
1942
2010
|
.bw-badge {
|
|
1943
2011
|
display: inline-block;
|
|
1944
|
-
padding: .
|
|
1945
|
-
font-size: .
|
|
2012
|
+
padding: 0.375rem 0.625rem;
|
|
2013
|
+
font-size: 0.875rem;
|
|
1946
2014
|
font-weight: 600;
|
|
1947
2015
|
line-height: 1.3;
|
|
1948
2016
|
color: #fff;
|
|
@@ -1954,8 +2022,8 @@ textarea.bw_form-control {
|
|
|
1954
2022
|
|
|
1955
2023
|
.bw-bw_badge {
|
|
1956
2024
|
display: inline-block;
|
|
1957
|
-
padding: .
|
|
1958
|
-
font-size: .
|
|
2025
|
+
padding: 0.375rem 0.625rem;
|
|
2026
|
+
font-size: 0.875rem;
|
|
1959
2027
|
font-weight: 600;
|
|
1960
2028
|
line-height: 1.3;
|
|
1961
2029
|
color: #fff;
|
|
@@ -1974,23 +2042,23 @@ textarea.bw_form-control {
|
|
|
1974
2042
|
}
|
|
1975
2043
|
|
|
1976
2044
|
.bw-badge-sm {
|
|
1977
|
-
font-size: .
|
|
1978
|
-
padding: .
|
|
2045
|
+
font-size: 0.75rem;
|
|
2046
|
+
padding: 0.25rem 0.5rem;
|
|
1979
2047
|
}
|
|
1980
2048
|
|
|
1981
2049
|
.bw-bw_badge-sm {
|
|
1982
|
-
font-size: .
|
|
1983
|
-
padding: .
|
|
2050
|
+
font-size: 0.75rem;
|
|
2051
|
+
padding: 0.25rem 0.5rem;
|
|
1984
2052
|
}
|
|
1985
2053
|
|
|
1986
2054
|
.bw-badge-lg {
|
|
1987
|
-
font-size:
|
|
1988
|
-
padding: .
|
|
2055
|
+
font-size: 1rem;
|
|
2056
|
+
padding: 0.5rem 0.875rem;
|
|
1989
2057
|
}
|
|
1990
2058
|
|
|
1991
2059
|
.bw-bw_badge-lg {
|
|
1992
|
-
font-size:
|
|
1993
|
-
padding: .
|
|
2060
|
+
font-size: 1rem;
|
|
2061
|
+
padding: 0.5rem 0.875rem;
|
|
1994
2062
|
}
|
|
1995
2063
|
|
|
1996
2064
|
.bw-badge-pill {
|
|
@@ -2038,22 +2106,22 @@ textarea.bw_form-control {
|
|
|
2038
2106
|
|
|
2039
2107
|
.bw-badge-info {
|
|
2040
2108
|
color: #000;
|
|
2041
|
-
background-color: #
|
|
2109
|
+
background-color: #0891b2;
|
|
2042
2110
|
}
|
|
2043
2111
|
|
|
2044
2112
|
.bw-bw_badge-info {
|
|
2045
2113
|
color: #000;
|
|
2046
|
-
background-color: #
|
|
2114
|
+
background-color: #0891b2;
|
|
2047
2115
|
}
|
|
2048
2116
|
|
|
2049
2117
|
.bw-badge-warning {
|
|
2050
2118
|
color: #000;
|
|
2051
|
-
background-color: #
|
|
2119
|
+
background-color: #b38600;
|
|
2052
2120
|
}
|
|
2053
2121
|
|
|
2054
2122
|
.bw-bw_badge-warning {
|
|
2055
2123
|
color: #000;
|
|
2056
|
-
background-color: #
|
|
2124
|
+
background-color: #b38600;
|
|
2057
2125
|
}
|
|
2058
2126
|
|
|
2059
2127
|
.bw-badge-danger {
|
|
@@ -2115,7 +2183,7 @@ textarea.bw_form-control {
|
|
|
2115
2183
|
text-align: center;
|
|
2116
2184
|
white-space: nowrap;
|
|
2117
2185
|
background-color: #006666;
|
|
2118
|
-
transition: width .
|
|
2186
|
+
transition: width 0.3s ease-out;
|
|
2119
2187
|
box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
|
|
2120
2188
|
font-weight: 600;
|
|
2121
2189
|
}
|
|
@@ -2129,7 +2197,7 @@ textarea.bw_form-control {
|
|
|
2129
2197
|
text-align: center;
|
|
2130
2198
|
white-space: nowrap;
|
|
2131
2199
|
background-color: #006666;
|
|
2132
|
-
transition: width .
|
|
2200
|
+
transition: width 0.3s ease-out;
|
|
2133
2201
|
box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
|
|
2134
2202
|
font-weight: 600;
|
|
2135
2203
|
}
|
|
@@ -2191,19 +2259,19 @@ textarea.bw_form-control {
|
|
|
2191
2259
|
}
|
|
2192
2260
|
|
|
2193
2261
|
.bw-progress-bar-warning {
|
|
2194
|
-
background-color: #
|
|
2262
|
+
background-color: #b38600;
|
|
2195
2263
|
}
|
|
2196
2264
|
|
|
2197
2265
|
.bw-bw_progress-bar-warning {
|
|
2198
|
-
background-color: #
|
|
2266
|
+
background-color: #b38600;
|
|
2199
2267
|
}
|
|
2200
2268
|
|
|
2201
2269
|
.bw-progress-bar-info {
|
|
2202
|
-
background-color: #
|
|
2270
|
+
background-color: #0891b2;
|
|
2203
2271
|
}
|
|
2204
2272
|
|
|
2205
2273
|
.bw-bw_progress-bar-info {
|
|
2206
|
-
background-color: #
|
|
2274
|
+
background-color: #0891b2;
|
|
2207
2275
|
}
|
|
2208
2276
|
|
|
2209
2277
|
.bw-nav {
|
|
@@ -2284,7 +2352,7 @@ textarea.bw_form-control {
|
|
|
2284
2352
|
cursor: pointer;
|
|
2285
2353
|
border: none;
|
|
2286
2354
|
background: transparent;
|
|
2287
|
-
transition: color 0.15s, border-color 0.15s;
|
|
2355
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
|
|
2288
2356
|
font-family: inherit;
|
|
2289
2357
|
}
|
|
2290
2358
|
|
|
@@ -2298,7 +2366,7 @@ textarea.bw_form-control {
|
|
|
2298
2366
|
cursor: pointer;
|
|
2299
2367
|
border: none;
|
|
2300
2368
|
background: transparent;
|
|
2301
|
-
transition: color 0.15s, border-color 0.15s;
|
|
2369
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
|
|
2302
2370
|
font-family: inherit;
|
|
2303
2371
|
}
|
|
2304
2372
|
|
|
@@ -2488,10 +2556,12 @@ textarea.bw_form-control {
|
|
|
2488
2556
|
|
|
2489
2557
|
a.bw-list-group-item {
|
|
2490
2558
|
cursor: pointer;
|
|
2559
|
+
transition: background-color 0.15s ease-out, color 0.15s ease-out;
|
|
2491
2560
|
}
|
|
2492
2561
|
|
|
2493
2562
|
a.bw_list-group-item {
|
|
2494
2563
|
cursor: pointer;
|
|
2564
|
+
transition: background-color 0.15s ease-out, color 0.15s ease-out;
|
|
2495
2565
|
}
|
|
2496
2566
|
|
|
2497
2567
|
a.bw-list-group-item:hover {
|
|
@@ -2508,6 +2578,18 @@ a.bw_list-group-item:hover {
|
|
|
2508
2578
|
background-color: #f8f9fa;
|
|
2509
2579
|
}
|
|
2510
2580
|
|
|
2581
|
+
a.bw-list-group-item:focus-visible, .bw-list-group-item:focus-visible {
|
|
2582
|
+
z-index: 2;
|
|
2583
|
+
outline: 2px solid currentColor;
|
|
2584
|
+
outline-offset: -2px;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
a.bw_list-group-item:focus-visible, .bw_list-group-item:focus-visible {
|
|
2588
|
+
z-index: 2;
|
|
2589
|
+
outline: 2px solid currentColor;
|
|
2590
|
+
outline-offset: -2px;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2511
2593
|
.bw-list-group-flush {
|
|
2512
2594
|
border-radius: 0;
|
|
2513
2595
|
}
|
|
@@ -2568,7 +2650,7 @@ a.bw_list-group-item:hover {
|
|
|
2568
2650
|
text-decoration: none;
|
|
2569
2651
|
background-color: #fff;
|
|
2570
2652
|
border: 1px solid #dee2e6;
|
|
2571
|
-
transition: color 0.15s ease-
|
|
2653
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
|
|
2572
2654
|
}
|
|
2573
2655
|
|
|
2574
2656
|
.bw-bw_page-link {
|
|
@@ -2581,7 +2663,7 @@ a.bw_list-group-item:hover {
|
|
|
2581
2663
|
text-decoration: none;
|
|
2582
2664
|
background-color: #fff;
|
|
2583
2665
|
border: 1px solid #dee2e6;
|
|
2584
|
-
transition: color 0.15s ease-
|
|
2666
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out, border-color 0.15s ease-out;
|
|
2585
2667
|
}
|
|
2586
2668
|
|
|
2587
2669
|
.bw-page-link:hover {
|
|
@@ -2602,16 +2684,16 @@ a.bw_list-group-item:hover {
|
|
|
2602
2684
|
z-index: 3;
|
|
2603
2685
|
color: #004d4d;
|
|
2604
2686
|
background-color: #e9ecef;
|
|
2605
|
-
outline:
|
|
2606
|
-
|
|
2687
|
+
outline: 2px solid #006666;
|
|
2688
|
+
outline-offset: -2px;
|
|
2607
2689
|
}
|
|
2608
2690
|
|
|
2609
2691
|
.bw-bw_page-link:focus {
|
|
2610
2692
|
z-index: 3;
|
|
2611
2693
|
color: #004d4d;
|
|
2612
2694
|
background-color: #e9ecef;
|
|
2613
|
-
outline:
|
|
2614
|
-
|
|
2695
|
+
outline: 2px solid #006666;
|
|
2696
|
+
outline-offset: -2px;
|
|
2615
2697
|
}
|
|
2616
2698
|
|
|
2617
2699
|
.bw-page-item:first-child .bw-page-link {
|
|
@@ -2712,12 +2794,36 @@ a.bw_list-group-item:hover {
|
|
|
2712
2794
|
content: "/";
|
|
2713
2795
|
}
|
|
2714
2796
|
|
|
2797
|
+
.bw-breadcrumb-item a {
|
|
2798
|
+
color: #006666;
|
|
2799
|
+
text-decoration: none;
|
|
2800
|
+
transition: color 0.15s ease-out;
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
.bw-bw_breadcrumb-item a {
|
|
2804
|
+
color: #006666;
|
|
2805
|
+
text-decoration: none;
|
|
2806
|
+
transition: color 0.15s ease-out;
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
.bw-breadcrumb-item a:hover {
|
|
2810
|
+
color: #004d4d;
|
|
2811
|
+
text-decoration: underline;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.bw-bw_breadcrumb-item a:hover {
|
|
2815
|
+
color: #004d4d;
|
|
2816
|
+
text-decoration: underline;
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2715
2819
|
.bw-breadcrumb-item.active {
|
|
2716
2820
|
color: #6c757d;
|
|
2821
|
+
font-weight: 500;
|
|
2717
2822
|
}
|
|
2718
2823
|
|
|
2719
2824
|
.bw-bw_breadcrumb-item.active {
|
|
2720
2825
|
color: #6c757d;
|
|
2826
|
+
font-weight: 500;
|
|
2721
2827
|
}
|
|
2722
2828
|
|
|
2723
2829
|
.bw-hero {
|
|
@@ -2953,11 +3059,11 @@ a.bw_list-group-item:hover {
|
|
|
2953
3059
|
}
|
|
2954
3060
|
|
|
2955
3061
|
.bw-card-hoverable {
|
|
2956
|
-
transition: all 0.3s
|
|
3062
|
+
transition: all 0.3s ease-out;
|
|
2957
3063
|
}
|
|
2958
3064
|
|
|
2959
3065
|
.bw-bw_card-hoverable {
|
|
2960
|
-
transition: all 0.3s
|
|
3066
|
+
transition: all 0.3s ease-out;
|
|
2961
3067
|
}
|
|
2962
3068
|
|
|
2963
3069
|
.bw-card-hoverable:hover {
|
|
@@ -3604,6 +3710,18 @@ a.bw_list-group-item:hover {
|
|
|
3604
3710
|
transition: all 0.15s;
|
|
3605
3711
|
}
|
|
3606
3712
|
|
|
3713
|
+
.bw-code-copy-btn-copied {
|
|
3714
|
+
background: #198754;
|
|
3715
|
+
color: #fff;
|
|
3716
|
+
border-color: #198754;
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
.bw-bw_code-copy-btn-copied {
|
|
3720
|
+
background: #198754;
|
|
3721
|
+
color: #fff;
|
|
3722
|
+
border-color: #198754;
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3607
3725
|
.bw-btn-group, .bw-btn-group-vertical {
|
|
3608
3726
|
position: relative;
|
|
3609
3727
|
display: inline-flex;
|
|
@@ -3797,7 +3915,7 @@ a.bw_list-group-item:hover {
|
|
|
3797
3915
|
overflow-anchor: none;
|
|
3798
3916
|
cursor: pointer;
|
|
3799
3917
|
font-family: inherit;
|
|
3800
|
-
transition: color 0.15s ease-
|
|
3918
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out;
|
|
3801
3919
|
}
|
|
3802
3920
|
|
|
3803
3921
|
.bw-bw_accordion-button {
|
|
@@ -3815,7 +3933,7 @@ a.bw_list-group-item:hover {
|
|
|
3815
3933
|
overflow-anchor: none;
|
|
3816
3934
|
cursor: pointer;
|
|
3817
3935
|
font-family: inherit;
|
|
3818
|
-
transition: color 0.15s ease-
|
|
3936
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out;
|
|
3819
3937
|
}
|
|
3820
3938
|
|
|
3821
3939
|
.bw-accordion-button::after {
|
|
@@ -3827,7 +3945,7 @@ a.bw_list-group-item:hover {
|
|
|
3827
3945
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3828
3946
|
background-repeat: no-repeat;
|
|
3829
3947
|
background-size: 1.25rem;
|
|
3830
|
-
transition: transform 0.2s ease-
|
|
3948
|
+
transition: transform 0.2s ease-out;
|
|
3831
3949
|
}
|
|
3832
3950
|
|
|
3833
3951
|
.bw-bw_accordion-button::after {
|
|
@@ -3839,7 +3957,7 @@ a.bw_list-group-item:hover {
|
|
|
3839
3957
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
|
|
3840
3958
|
background-repeat: no-repeat;
|
|
3841
3959
|
background-size: 1.25rem;
|
|
3842
|
-
transition: transform 0.2s ease-
|
|
3960
|
+
transition: transform 0.2s ease-out;
|
|
3843
3961
|
}
|
|
3844
3962
|
|
|
3845
3963
|
.bw-accordion-button:not(.bw-collapsed) {
|
|
@@ -3936,13 +4054,13 @@ a.bw_list-group-item:hover {
|
|
|
3936
4054
|
|
|
3937
4055
|
.bw-carousel-track {
|
|
3938
4056
|
display: flex;
|
|
3939
|
-
transition: transform 0.
|
|
4057
|
+
transition: transform 0.3s ease-out;
|
|
3940
4058
|
height: 100%;
|
|
3941
4059
|
}
|
|
3942
4060
|
|
|
3943
4061
|
.bw-bw_carousel-track {
|
|
3944
4062
|
display: flex;
|
|
3945
|
-
transition: transform 0.
|
|
4063
|
+
transition: transform 0.3s ease-out;
|
|
3946
4064
|
height: 100%;
|
|
3947
4065
|
}
|
|
3948
4066
|
|
|
@@ -3986,7 +4104,7 @@ a.bw_list-group-item:hover {
|
|
|
3986
4104
|
padding: 0.75rem 1rem;
|
|
3987
4105
|
background: linear-gradient(transparent, rgba(0,0,0,0.6));
|
|
3988
4106
|
color: #fff;
|
|
3989
|
-
font-size: 0.
|
|
4107
|
+
font-size: 0.875rem;
|
|
3990
4108
|
}
|
|
3991
4109
|
|
|
3992
4110
|
.bw-bw_carousel-caption {
|
|
@@ -3997,7 +4115,7 @@ a.bw_list-group-item:hover {
|
|
|
3997
4115
|
padding: 0.75rem 1rem;
|
|
3998
4116
|
background: linear-gradient(transparent, rgba(0,0,0,0.6));
|
|
3999
4117
|
color: #fff;
|
|
4000
|
-
font-size: 0.
|
|
4118
|
+
font-size: 0.875rem;
|
|
4001
4119
|
}
|
|
4002
4120
|
|
|
4003
4121
|
.bw-carousel-control {
|
|
@@ -4135,7 +4253,9 @@ a.bw_list-group-item:hover {
|
|
|
4135
4253
|
}
|
|
4136
4254
|
|
|
4137
4255
|
.bw-modal {
|
|
4138
|
-
display:
|
|
4256
|
+
display: flex;
|
|
4257
|
+
align-items: center;
|
|
4258
|
+
justify-content: center;
|
|
4139
4259
|
position: fixed;
|
|
4140
4260
|
top: 0;
|
|
4141
4261
|
left: 0;
|
|
@@ -4146,11 +4266,15 @@ a.bw_list-group-item:hover {
|
|
|
4146
4266
|
overflow-x: hidden;
|
|
4147
4267
|
overflow-y: auto;
|
|
4148
4268
|
opacity: 0;
|
|
4149
|
-
|
|
4269
|
+
visibility: hidden;
|
|
4270
|
+
pointer-events: none;
|
|
4271
|
+
transition: opacity 0.2s ease, visibility 0.2s ease;
|
|
4150
4272
|
}
|
|
4151
4273
|
|
|
4152
4274
|
.bw-bw_modal {
|
|
4153
|
-
display:
|
|
4275
|
+
display: flex;
|
|
4276
|
+
align-items: center;
|
|
4277
|
+
justify-content: center;
|
|
4154
4278
|
position: fixed;
|
|
4155
4279
|
top: 0;
|
|
4156
4280
|
left: 0;
|
|
@@ -4161,21 +4285,21 @@ a.bw_list-group-item:hover {
|
|
|
4161
4285
|
overflow-x: hidden;
|
|
4162
4286
|
overflow-y: auto;
|
|
4163
4287
|
opacity: 0;
|
|
4164
|
-
|
|
4288
|
+
visibility: hidden;
|
|
4289
|
+
pointer-events: none;
|
|
4290
|
+
transition: opacity 0.2s ease, visibility 0.2s ease;
|
|
4165
4291
|
}
|
|
4166
4292
|
|
|
4167
4293
|
.bw-modal.bw-modal-show {
|
|
4168
|
-
display: flex;
|
|
4169
|
-
align-items: center;
|
|
4170
|
-
justify-content: center;
|
|
4171
4294
|
opacity: 1;
|
|
4295
|
+
visibility: visible;
|
|
4296
|
+
pointer-events: auto;
|
|
4172
4297
|
}
|
|
4173
4298
|
|
|
4174
4299
|
.bw-bw_modal.bw_modal-show {
|
|
4175
|
-
display: flex;
|
|
4176
|
-
align-items: center;
|
|
4177
|
-
justify-content: center;
|
|
4178
4300
|
opacity: 1;
|
|
4301
|
+
visibility: visible;
|
|
4302
|
+
pointer-events: auto;
|
|
4179
4303
|
}
|
|
4180
4304
|
|
|
4181
4305
|
.bw-modal-dialog {
|
|
@@ -4563,7 +4687,7 @@ a.bw_list-group-item:hover {
|
|
|
4563
4687
|
top: 100%;
|
|
4564
4688
|
left: 0;
|
|
4565
4689
|
z-index: 1000;
|
|
4566
|
-
display:
|
|
4690
|
+
display: block;
|
|
4567
4691
|
min-width: 10rem;
|
|
4568
4692
|
padding: 0.5rem 0;
|
|
4569
4693
|
margin: 0.125rem 0 0;
|
|
@@ -4572,6 +4696,11 @@ a.bw_list-group-item:hover {
|
|
|
4572
4696
|
border: 1px solid rgba(0,0,0,0.15);
|
|
4573
4697
|
border-radius: 6px;
|
|
4574
4698
|
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4699
|
+
opacity: 0;
|
|
4700
|
+
visibility: hidden;
|
|
4701
|
+
transform: translateY(-4px);
|
|
4702
|
+
pointer-events: none;
|
|
4703
|
+
transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
|
|
4575
4704
|
}
|
|
4576
4705
|
|
|
4577
4706
|
.bw-bw_dropdown-menu {
|
|
@@ -4579,7 +4708,7 @@ a.bw_list-group-item:hover {
|
|
|
4579
4708
|
top: 100%;
|
|
4580
4709
|
left: 0;
|
|
4581
4710
|
z-index: 1000;
|
|
4582
|
-
display:
|
|
4711
|
+
display: block;
|
|
4583
4712
|
min-width: 10rem;
|
|
4584
4713
|
padding: 0.5rem 0;
|
|
4585
4714
|
margin: 0.125rem 0 0;
|
|
@@ -4588,14 +4717,25 @@ a.bw_list-group-item:hover {
|
|
|
4588
4717
|
border: 1px solid rgba(0,0,0,0.15);
|
|
4589
4718
|
border-radius: 6px;
|
|
4590
4719
|
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
4720
|
+
opacity: 0;
|
|
4721
|
+
visibility: hidden;
|
|
4722
|
+
transform: translateY(-4px);
|
|
4723
|
+
pointer-events: none;
|
|
4724
|
+
transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
|
|
4591
4725
|
}
|
|
4592
4726
|
|
|
4593
4727
|
.bw-dropdown-menu.bw-dropdown-show {
|
|
4594
|
-
|
|
4728
|
+
opacity: 1;
|
|
4729
|
+
visibility: visible;
|
|
4730
|
+
transform: translateY(0);
|
|
4731
|
+
pointer-events: auto;
|
|
4595
4732
|
}
|
|
4596
4733
|
|
|
4597
4734
|
.bw-bw_dropdown-menu.bw_dropdown-show {
|
|
4598
|
-
|
|
4735
|
+
opacity: 1;
|
|
4736
|
+
visibility: visible;
|
|
4737
|
+
transform: translateY(0);
|
|
4738
|
+
pointer-events: auto;
|
|
4599
4739
|
}
|
|
4600
4740
|
|
|
4601
4741
|
.bw-dropdown-menu-end {
|
|
@@ -4650,6 +4790,18 @@ a.bw_list-group-item:hover {
|
|
|
4650
4790
|
background-color: #f8f9fa;
|
|
4651
4791
|
}
|
|
4652
4792
|
|
|
4793
|
+
.bw-dropdown-item:focus-visible {
|
|
4794
|
+
outline: 2px solid currentColor;
|
|
4795
|
+
outline-offset: -2px;
|
|
4796
|
+
background-color: #f8f9fa;
|
|
4797
|
+
}
|
|
4798
|
+
|
|
4799
|
+
.bw-bw_dropdown-item:focus-visible {
|
|
4800
|
+
outline: 2px solid currentColor;
|
|
4801
|
+
outline-offset: -2px;
|
|
4802
|
+
background-color: #f8f9fa;
|
|
4803
|
+
}
|
|
4804
|
+
|
|
4653
4805
|
.bw-dropdown-item.disabled {
|
|
4654
4806
|
color: #adb5bd;
|
|
4655
4807
|
pointer-events: none;
|
|
@@ -4698,7 +4850,7 @@ a.bw_list-group-item:hover {
|
|
|
4698
4850
|
background-position: left center;
|
|
4699
4851
|
background-repeat: no-repeat;
|
|
4700
4852
|
background-size: contain;
|
|
4701
|
-
transition: background-position 0.15s ease-
|
|
4853
|
+
transition: background-position 0.15s ease-out, background-color 0.15s ease-out;
|
|
4702
4854
|
cursor: pointer;
|
|
4703
4855
|
}
|
|
4704
4856
|
|
|
@@ -4714,7 +4866,7 @@ a.bw_list-group-item:hover {
|
|
|
4714
4866
|
background-position: left center;
|
|
4715
4867
|
background-repeat: no-repeat;
|
|
4716
4868
|
background-size: contain;
|
|
4717
|
-
transition: background-position 0.15s ease-
|
|
4869
|
+
transition: background-position 0.15s ease-out, background-color 0.15s ease-out;
|
|
4718
4870
|
cursor: pointer;
|
|
4719
4871
|
}
|
|
4720
4872
|
|
|
@@ -4922,22 +5074,22 @@ a.bw_list-group-item:hover {
|
|
|
4922
5074
|
}
|
|
4923
5075
|
|
|
4924
5076
|
.bw-avatar-warning {
|
|
4925
|
-
background-color: #
|
|
5077
|
+
background-color: #b38600;
|
|
4926
5078
|
color: #000;
|
|
4927
5079
|
}
|
|
4928
5080
|
|
|
4929
5081
|
.bw-bw_avatar-warning {
|
|
4930
|
-
background-color: #
|
|
5082
|
+
background-color: #b38600;
|
|
4931
5083
|
color: #000;
|
|
4932
5084
|
}
|
|
4933
5085
|
|
|
4934
5086
|
.bw-avatar-info {
|
|
4935
|
-
background-color: #
|
|
5087
|
+
background-color: #0891b2;
|
|
4936
5088
|
color: #000;
|
|
4937
5089
|
}
|
|
4938
5090
|
|
|
4939
5091
|
.bw-bw_avatar-info {
|
|
4940
|
-
background-color: #
|
|
5092
|
+
background-color: #0891b2;
|
|
4941
5093
|
color: #000;
|
|
4942
5094
|
}
|
|
4943
5095
|
|
|
@@ -4961,124 +5113,1408 @@ a.bw_list-group-item:hover {
|
|
|
4961
5113
|
color: #fff;
|
|
4962
5114
|
}
|
|
4963
5115
|
|
|
4964
|
-
.bw-
|
|
4965
|
-
|
|
5116
|
+
.bw-stat-card {
|
|
5117
|
+
background-color: #fff;
|
|
5118
|
+
border: 1px solid rgba(0,0,0,0.1);
|
|
5119
|
+
border-left: 4px solid transparent;
|
|
5120
|
+
border-radius: 8px;
|
|
5121
|
+
padding: 1.25rem;
|
|
5122
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
|
|
5123
|
+
transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
|
|
4966
5124
|
}
|
|
4967
5125
|
|
|
4968
|
-
.bw-
|
|
4969
|
-
|
|
5126
|
+
.bw-bw_stat-card {
|
|
5127
|
+
background-color: #fff;
|
|
5128
|
+
border: 1px solid rgba(0,0,0,0.1);
|
|
5129
|
+
border-left: 4px solid transparent;
|
|
5130
|
+
border-radius: 8px;
|
|
5131
|
+
padding: 1.25rem;
|
|
5132
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
|
|
5133
|
+
transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
|
|
4970
5134
|
}
|
|
4971
5135
|
|
|
4972
|
-
.bw-
|
|
4973
|
-
|
|
5136
|
+
.bw-stat-card:hover {
|
|
5137
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
|
|
5138
|
+
transform: translateY(-1px);
|
|
4974
5139
|
}
|
|
4975
5140
|
|
|
4976
|
-
.bw-
|
|
4977
|
-
|
|
5141
|
+
.bw-bw_stat-card:hover {
|
|
5142
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
|
|
5143
|
+
transform: translateY(-1px);
|
|
4978
5144
|
}
|
|
4979
5145
|
|
|
4980
|
-
.bw-
|
|
4981
|
-
|
|
5146
|
+
.bw-stat-icon {
|
|
5147
|
+
font-size: 1.5rem;
|
|
5148
|
+
margin-bottom: 0.5rem;
|
|
4982
5149
|
}
|
|
4983
5150
|
|
|
4984
|
-
.bw-
|
|
4985
|
-
|
|
5151
|
+
.bw-bw_stat-icon {
|
|
5152
|
+
font-size: 1.5rem;
|
|
5153
|
+
margin-bottom: 0.5rem;
|
|
4986
5154
|
}
|
|
4987
5155
|
|
|
4988
|
-
.bw-
|
|
4989
|
-
|
|
5156
|
+
.bw-stat-value {
|
|
5157
|
+
font-size: 2rem;
|
|
5158
|
+
font-weight: 700;
|
|
5159
|
+
line-height: 1.2;
|
|
5160
|
+
color: #212529;
|
|
4990
5161
|
}
|
|
4991
5162
|
|
|
4992
|
-
.bw-
|
|
4993
|
-
|
|
5163
|
+
.bw-bw_stat-value {
|
|
5164
|
+
font-size: 2rem;
|
|
5165
|
+
font-weight: 700;
|
|
5166
|
+
line-height: 1.2;
|
|
5167
|
+
color: #212529;
|
|
4994
5168
|
}
|
|
4995
5169
|
|
|
4996
|
-
.bw-
|
|
4997
|
-
|
|
5170
|
+
.bw-stat-label {
|
|
5171
|
+
font-size: 0.875rem;
|
|
5172
|
+
color: #6c757d;
|
|
5173
|
+
margin-top: 0.25rem;
|
|
4998
5174
|
}
|
|
4999
5175
|
|
|
5000
|
-
.bw-
|
|
5001
|
-
|
|
5176
|
+
.bw-bw_stat-label {
|
|
5177
|
+
font-size: 0.875rem;
|
|
5178
|
+
color: #6c757d;
|
|
5179
|
+
margin-top: 0.25rem;
|
|
5002
5180
|
}
|
|
5003
5181
|
|
|
5004
|
-
.bw-
|
|
5005
|
-
|
|
5182
|
+
.bw-stat-change {
|
|
5183
|
+
font-size: 0.875rem;
|
|
5184
|
+
font-weight: 500;
|
|
5185
|
+
margin-top: 0.5rem;
|
|
5006
5186
|
}
|
|
5007
5187
|
|
|
5008
|
-
.bw-
|
|
5009
|
-
|
|
5188
|
+
.bw-bw_stat-change {
|
|
5189
|
+
font-size: 0.875rem;
|
|
5190
|
+
font-weight: 500;
|
|
5191
|
+
margin-top: 0.5rem;
|
|
5010
5192
|
}
|
|
5011
5193
|
|
|
5012
|
-
.bw-
|
|
5013
|
-
|
|
5194
|
+
.bw-stat-change-up {
|
|
5195
|
+
color: #198754;
|
|
5014
5196
|
}
|
|
5015
5197
|
|
|
5016
|
-
.bw-
|
|
5017
|
-
|
|
5198
|
+
.bw-bw_stat-change-up {
|
|
5199
|
+
color: #198754;
|
|
5018
5200
|
}
|
|
5019
5201
|
|
|
5020
|
-
.bw-
|
|
5021
|
-
|
|
5202
|
+
.bw-stat-change-down {
|
|
5203
|
+
color: #dc3545;
|
|
5022
5204
|
}
|
|
5023
5205
|
|
|
5024
|
-
.bw-
|
|
5025
|
-
|
|
5206
|
+
.bw-bw_stat-change-down {
|
|
5207
|
+
color: #dc3545;
|
|
5026
5208
|
}
|
|
5027
5209
|
|
|
5028
|
-
.bw-
|
|
5029
|
-
|
|
5210
|
+
.bw-stat-card-primary {
|
|
5211
|
+
border-left-color: #006666;
|
|
5030
5212
|
}
|
|
5031
5213
|
|
|
5032
|
-
.bw-
|
|
5033
|
-
|
|
5214
|
+
.bw-bw_stat-card-primary {
|
|
5215
|
+
border-left-color: #006666;
|
|
5034
5216
|
}
|
|
5035
5217
|
|
|
5036
|
-
.bw-
|
|
5037
|
-
|
|
5218
|
+
.bw-stat-card-secondary {
|
|
5219
|
+
border-left-color: #6c757d;
|
|
5038
5220
|
}
|
|
5039
5221
|
|
|
5040
|
-
.bw-
|
|
5041
|
-
|
|
5222
|
+
.bw-bw_stat-card-secondary {
|
|
5223
|
+
border-left-color: #6c757d;
|
|
5042
5224
|
}
|
|
5043
5225
|
|
|
5044
|
-
.bw-
|
|
5045
|
-
|
|
5226
|
+
.bw-stat-card-success {
|
|
5227
|
+
border-left-color: #198754;
|
|
5046
5228
|
}
|
|
5047
5229
|
|
|
5048
|
-
.bw-
|
|
5049
|
-
|
|
5230
|
+
.bw-bw_stat-card-success {
|
|
5231
|
+
border-left-color: #198754;
|
|
5050
5232
|
}
|
|
5051
5233
|
|
|
5052
|
-
.bw-
|
|
5053
|
-
|
|
5234
|
+
.bw-stat-card-danger {
|
|
5235
|
+
border-left-color: #dc3545;
|
|
5054
5236
|
}
|
|
5055
5237
|
|
|
5056
|
-
.bw-
|
|
5057
|
-
|
|
5238
|
+
.bw-bw_stat-card-danger {
|
|
5239
|
+
border-left-color: #dc3545;
|
|
5058
5240
|
}
|
|
5059
5241
|
|
|
5060
|
-
.bw-
|
|
5061
|
-
|
|
5242
|
+
.bw-stat-card-warning {
|
|
5243
|
+
border-left-color: #b38600;
|
|
5062
5244
|
}
|
|
5063
5245
|
|
|
5064
|
-
.bw-
|
|
5065
|
-
|
|
5246
|
+
.bw-bw_stat-card-warning {
|
|
5247
|
+
border-left-color: #b38600;
|
|
5066
5248
|
}
|
|
5067
5249
|
|
|
5068
|
-
.bw-
|
|
5069
|
-
|
|
5250
|
+
.bw-stat-card-info {
|
|
5251
|
+
border-left-color: #0891b2;
|
|
5070
5252
|
}
|
|
5071
5253
|
|
|
5072
|
-
.bw-
|
|
5073
|
-
|
|
5254
|
+
.bw-bw_stat-card-info {
|
|
5255
|
+
border-left-color: #0891b2;
|
|
5074
5256
|
}
|
|
5075
5257
|
|
|
5076
|
-
.bw-
|
|
5077
|
-
|
|
5258
|
+
.bw-tooltip-wrapper {
|
|
5259
|
+
position: relative;
|
|
5260
|
+
display: inline-block;
|
|
5078
5261
|
}
|
|
5079
5262
|
|
|
5080
|
-
.bw-
|
|
5081
|
-
|
|
5263
|
+
.bw-bw_tooltip-wrapper {
|
|
5264
|
+
position: relative;
|
|
5265
|
+
display: inline-block;
|
|
5266
|
+
}
|
|
5267
|
+
|
|
5268
|
+
.bw-tooltip {
|
|
5269
|
+
position: absolute;
|
|
5270
|
+
z-index: 999;
|
|
5271
|
+
background-color: #212529;
|
|
5272
|
+
color: #fff;
|
|
5273
|
+
padding: 0.375rem 0.75rem;
|
|
5274
|
+
border-radius: 4px;
|
|
5275
|
+
font-size: 0.875rem;
|
|
5276
|
+
white-space: nowrap;
|
|
5277
|
+
pointer-events: none;
|
|
5278
|
+
opacity: 0;
|
|
5279
|
+
visibility: hidden;
|
|
5280
|
+
transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
|
|
5281
|
+
}
|
|
5282
|
+
|
|
5283
|
+
.bw-bw_tooltip {
|
|
5284
|
+
position: absolute;
|
|
5285
|
+
z-index: 999;
|
|
5286
|
+
background-color: #212529;
|
|
5287
|
+
color: #fff;
|
|
5288
|
+
padding: 0.375rem 0.75rem;
|
|
5289
|
+
border-radius: 4px;
|
|
5290
|
+
font-size: 0.875rem;
|
|
5291
|
+
white-space: nowrap;
|
|
5292
|
+
pointer-events: none;
|
|
5293
|
+
opacity: 0;
|
|
5294
|
+
visibility: hidden;
|
|
5295
|
+
transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
.bw-tooltip.bw-tooltip-show {
|
|
5299
|
+
opacity: 1;
|
|
5300
|
+
visibility: visible;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
.bw-bw_tooltip.bw_tooltip-show {
|
|
5304
|
+
opacity: 1;
|
|
5305
|
+
visibility: visible;
|
|
5306
|
+
}
|
|
5307
|
+
|
|
5308
|
+
.bw-tooltip-top {
|
|
5309
|
+
bottom: 100%;
|
|
5310
|
+
left: 50%;
|
|
5311
|
+
transform: translateX(-50%) translateY(-4px);
|
|
5312
|
+
margin-bottom: 4px;
|
|
5313
|
+
}
|
|
5314
|
+
|
|
5315
|
+
.bw-bw_tooltip-top {
|
|
5316
|
+
bottom: 100%;
|
|
5317
|
+
left: 50%;
|
|
5318
|
+
transform: translateX(-50%) translateY(-4px);
|
|
5319
|
+
margin-bottom: 4px;
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5322
|
+
.bw-tooltip-top.bw-tooltip-show {
|
|
5323
|
+
transform: translateX(-50%) translateY(0);
|
|
5324
|
+
}
|
|
5325
|
+
|
|
5326
|
+
.bw-bw_tooltip-top.bw_tooltip-show {
|
|
5327
|
+
transform: translateX(-50%) translateY(0);
|
|
5328
|
+
}
|
|
5329
|
+
|
|
5330
|
+
.bw-tooltip-bottom {
|
|
5331
|
+
top: 100%;
|
|
5332
|
+
left: 50%;
|
|
5333
|
+
transform: translateX(-50%) translateY(4px);
|
|
5334
|
+
margin-top: 4px;
|
|
5335
|
+
}
|
|
5336
|
+
|
|
5337
|
+
.bw-bw_tooltip-bottom {
|
|
5338
|
+
top: 100%;
|
|
5339
|
+
left: 50%;
|
|
5340
|
+
transform: translateX(-50%) translateY(4px);
|
|
5341
|
+
margin-top: 4px;
|
|
5342
|
+
}
|
|
5343
|
+
|
|
5344
|
+
.bw-tooltip-bottom.bw-tooltip-show {
|
|
5345
|
+
transform: translateX(-50%) translateY(0);
|
|
5346
|
+
}
|
|
5347
|
+
|
|
5348
|
+
.bw-bw_tooltip-bottom.bw_tooltip-show {
|
|
5349
|
+
transform: translateX(-50%) translateY(0);
|
|
5350
|
+
}
|
|
5351
|
+
|
|
5352
|
+
.bw-tooltip-left {
|
|
5353
|
+
right: 100%;
|
|
5354
|
+
top: 50%;
|
|
5355
|
+
transform: translateY(-50%) translateX(-4px);
|
|
5356
|
+
margin-right: 4px;
|
|
5357
|
+
}
|
|
5358
|
+
|
|
5359
|
+
.bw-bw_tooltip-left {
|
|
5360
|
+
right: 100%;
|
|
5361
|
+
top: 50%;
|
|
5362
|
+
transform: translateY(-50%) translateX(-4px);
|
|
5363
|
+
margin-right: 4px;
|
|
5364
|
+
}
|
|
5365
|
+
|
|
5366
|
+
.bw-tooltip-left.bw-tooltip-show {
|
|
5367
|
+
transform: translateY(-50%) translateX(0);
|
|
5368
|
+
}
|
|
5369
|
+
|
|
5370
|
+
.bw-bw_tooltip-left.bw_tooltip-show {
|
|
5371
|
+
transform: translateY(-50%) translateX(0);
|
|
5372
|
+
}
|
|
5373
|
+
|
|
5374
|
+
.bw-tooltip-right {
|
|
5375
|
+
left: 100%;
|
|
5376
|
+
top: 50%;
|
|
5377
|
+
transform: translateY(-50%) translateX(4px);
|
|
5378
|
+
margin-left: 4px;
|
|
5379
|
+
}
|
|
5380
|
+
|
|
5381
|
+
.bw-bw_tooltip-right {
|
|
5382
|
+
left: 100%;
|
|
5383
|
+
top: 50%;
|
|
5384
|
+
transform: translateY(-50%) translateX(4px);
|
|
5385
|
+
margin-left: 4px;
|
|
5386
|
+
}
|
|
5387
|
+
|
|
5388
|
+
.bw-tooltip-right.bw-tooltip-show {
|
|
5389
|
+
transform: translateY(-50%) translateX(0);
|
|
5390
|
+
}
|
|
5391
|
+
|
|
5392
|
+
.bw-bw_tooltip-right.bw_tooltip-show {
|
|
5393
|
+
transform: translateY(-50%) translateX(0);
|
|
5394
|
+
}
|
|
5395
|
+
|
|
5396
|
+
.bw-popover-wrapper {
|
|
5397
|
+
position: relative;
|
|
5398
|
+
display: inline-block;
|
|
5399
|
+
}
|
|
5400
|
+
|
|
5401
|
+
.bw-bw_popover-wrapper {
|
|
5402
|
+
position: relative;
|
|
5403
|
+
display: inline-block;
|
|
5404
|
+
}
|
|
5405
|
+
|
|
5406
|
+
.bw-popover-trigger {
|
|
5407
|
+
cursor: pointer;
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
.bw-bw_popover-trigger {
|
|
5411
|
+
cursor: pointer;
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
.bw-popover {
|
|
5415
|
+
position: absolute;
|
|
5416
|
+
z-index: 1000;
|
|
5417
|
+
background-color: #fff;
|
|
5418
|
+
color: #212529;
|
|
5419
|
+
border: 1px solid rgba(0,0,0,0.15);
|
|
5420
|
+
border-radius: 8px;
|
|
5421
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
5422
|
+
min-width: 200px;
|
|
5423
|
+
max-width: 320px;
|
|
5424
|
+
pointer-events: none;
|
|
5425
|
+
opacity: 0;
|
|
5426
|
+
visibility: hidden;
|
|
5427
|
+
transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
|
|
5428
|
+
}
|
|
5429
|
+
|
|
5430
|
+
.bw-bw_popover {
|
|
5431
|
+
position: absolute;
|
|
5432
|
+
z-index: 1000;
|
|
5433
|
+
background-color: #fff;
|
|
5434
|
+
color: #212529;
|
|
5435
|
+
border: 1px solid rgba(0,0,0,0.15);
|
|
5436
|
+
border-radius: 8px;
|
|
5437
|
+
box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
|
|
5438
|
+
min-width: 200px;
|
|
5439
|
+
max-width: 320px;
|
|
5440
|
+
pointer-events: none;
|
|
5441
|
+
opacity: 0;
|
|
5442
|
+
visibility: hidden;
|
|
5443
|
+
transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
|
|
5444
|
+
}
|
|
5445
|
+
|
|
5446
|
+
.bw-popover.bw-popover-show {
|
|
5447
|
+
opacity: 1;
|
|
5448
|
+
visibility: visible;
|
|
5449
|
+
pointer-events: auto;
|
|
5450
|
+
}
|
|
5451
|
+
|
|
5452
|
+
.bw-bw_popover.bw_popover-show {
|
|
5453
|
+
opacity: 1;
|
|
5454
|
+
visibility: visible;
|
|
5455
|
+
pointer-events: auto;
|
|
5456
|
+
}
|
|
5457
|
+
|
|
5458
|
+
.bw-popover-header {
|
|
5459
|
+
padding: 0.625rem 0.875rem;
|
|
5460
|
+
font-weight: 600;
|
|
5461
|
+
font-size: 0.9375rem;
|
|
5462
|
+
border-bottom: 1px solid rgba(0,0,0,0.1);
|
|
5463
|
+
border-radius: 8px 8px 0 0;
|
|
5464
|
+
background-color: #f8f9fa;
|
|
5465
|
+
}
|
|
5466
|
+
|
|
5467
|
+
.bw-bw_popover-header {
|
|
5468
|
+
padding: 0.625rem 0.875rem;
|
|
5469
|
+
font-weight: 600;
|
|
5470
|
+
font-size: 0.9375rem;
|
|
5471
|
+
border-bottom: 1px solid rgba(0,0,0,0.1);
|
|
5472
|
+
border-radius: 8px 8px 0 0;
|
|
5473
|
+
background-color: #f8f9fa;
|
|
5474
|
+
}
|
|
5475
|
+
|
|
5476
|
+
.bw-popover-body {
|
|
5477
|
+
padding: 0.75rem 0.875rem;
|
|
5478
|
+
font-size: 0.875rem;
|
|
5479
|
+
line-height: 1.5;
|
|
5480
|
+
}
|
|
5481
|
+
|
|
5482
|
+
.bw-bw_popover-body {
|
|
5483
|
+
padding: 0.75rem 0.875rem;
|
|
5484
|
+
font-size: 0.875rem;
|
|
5485
|
+
line-height: 1.5;
|
|
5486
|
+
}
|
|
5487
|
+
|
|
5488
|
+
.bw-popover-top {
|
|
5489
|
+
bottom: 100%;
|
|
5490
|
+
left: 50%;
|
|
5491
|
+
transform: translateX(-50%) translateY(-8px);
|
|
5492
|
+
margin-bottom: 8px;
|
|
5493
|
+
}
|
|
5494
|
+
|
|
5495
|
+
.bw-bw_popover-top {
|
|
5496
|
+
bottom: 100%;
|
|
5497
|
+
left: 50%;
|
|
5498
|
+
transform: translateX(-50%) translateY(-8px);
|
|
5499
|
+
margin-bottom: 8px;
|
|
5500
|
+
}
|
|
5501
|
+
|
|
5502
|
+
.bw-popover-top.bw-popover-show {
|
|
5503
|
+
transform: translateX(-50%) translateY(0);
|
|
5504
|
+
}
|
|
5505
|
+
|
|
5506
|
+
.bw-bw_popover-top.bw_popover-show {
|
|
5507
|
+
transform: translateX(-50%) translateY(0);
|
|
5508
|
+
}
|
|
5509
|
+
|
|
5510
|
+
.bw-popover-bottom {
|
|
5511
|
+
top: 100%;
|
|
5512
|
+
left: 50%;
|
|
5513
|
+
transform: translateX(-50%) translateY(8px);
|
|
5514
|
+
margin-top: 8px;
|
|
5515
|
+
}
|
|
5516
|
+
|
|
5517
|
+
.bw-bw_popover-bottom {
|
|
5518
|
+
top: 100%;
|
|
5519
|
+
left: 50%;
|
|
5520
|
+
transform: translateX(-50%) translateY(8px);
|
|
5521
|
+
margin-top: 8px;
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
.bw-popover-bottom.bw-popover-show {
|
|
5525
|
+
transform: translateX(-50%) translateY(0);
|
|
5526
|
+
}
|
|
5527
|
+
|
|
5528
|
+
.bw-bw_popover-bottom.bw_popover-show {
|
|
5529
|
+
transform: translateX(-50%) translateY(0);
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5532
|
+
.bw-popover-left {
|
|
5533
|
+
right: 100%;
|
|
5534
|
+
top: 50%;
|
|
5535
|
+
transform: translateY(-50%) translateX(-8px);
|
|
5536
|
+
margin-right: 8px;
|
|
5537
|
+
}
|
|
5538
|
+
|
|
5539
|
+
.bw-bw_popover-left {
|
|
5540
|
+
right: 100%;
|
|
5541
|
+
top: 50%;
|
|
5542
|
+
transform: translateY(-50%) translateX(-8px);
|
|
5543
|
+
margin-right: 8px;
|
|
5544
|
+
}
|
|
5545
|
+
|
|
5546
|
+
.bw-popover-left.bw-popover-show {
|
|
5547
|
+
transform: translateY(-50%) translateX(0);
|
|
5548
|
+
}
|
|
5549
|
+
|
|
5550
|
+
.bw-bw_popover-left.bw_popover-show {
|
|
5551
|
+
transform: translateY(-50%) translateX(0);
|
|
5552
|
+
}
|
|
5553
|
+
|
|
5554
|
+
.bw-popover-right {
|
|
5555
|
+
left: 100%;
|
|
5556
|
+
top: 50%;
|
|
5557
|
+
transform: translateY(-50%) translateX(8px);
|
|
5558
|
+
margin-left: 8px;
|
|
5559
|
+
}
|
|
5560
|
+
|
|
5561
|
+
.bw-bw_popover-right {
|
|
5562
|
+
left: 100%;
|
|
5563
|
+
top: 50%;
|
|
5564
|
+
transform: translateY(-50%) translateX(8px);
|
|
5565
|
+
margin-left: 8px;
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
.bw-popover-right.bw-popover-show {
|
|
5569
|
+
transform: translateY(-50%) translateX(0);
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
.bw-bw_popover-right.bw_popover-show {
|
|
5573
|
+
transform: translateY(-50%) translateX(0);
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
.bw-search-input {
|
|
5577
|
+
position: relative;
|
|
5578
|
+
display: flex;
|
|
5579
|
+
align-items: center;
|
|
5580
|
+
}
|
|
5581
|
+
|
|
5582
|
+
.bw-bw_search-input {
|
|
5583
|
+
position: relative;
|
|
5584
|
+
display: flex;
|
|
5585
|
+
align-items: center;
|
|
5586
|
+
}
|
|
5587
|
+
|
|
5588
|
+
.bw-search-input .bw-search-field {
|
|
5589
|
+
padding-right: 2.5rem;
|
|
5590
|
+
}
|
|
5591
|
+
|
|
5592
|
+
.bw-bw_search-input .bw_search-field {
|
|
5593
|
+
padding-right: 2.5rem;
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5596
|
+
.bw-search-clear {
|
|
5597
|
+
position: absolute;
|
|
5598
|
+
right: 0.5rem;
|
|
5599
|
+
display: flex;
|
|
5600
|
+
align-items: center;
|
|
5601
|
+
justify-content: center;
|
|
5602
|
+
width: 1.5rem;
|
|
5603
|
+
height: 1.5rem;
|
|
5604
|
+
border: none;
|
|
5605
|
+
background: none;
|
|
5606
|
+
color: #6c757d;
|
|
5607
|
+
font-size: 1.25rem;
|
|
5608
|
+
cursor: pointer;
|
|
5609
|
+
padding: 0;
|
|
5610
|
+
line-height: 1;
|
|
5611
|
+
border-radius: 50%;
|
|
5612
|
+
transition: color 0.15s ease-out;
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
.bw-bw_search-clear {
|
|
5616
|
+
position: absolute;
|
|
5617
|
+
right: 0.5rem;
|
|
5618
|
+
display: flex;
|
|
5619
|
+
align-items: center;
|
|
5620
|
+
justify-content: center;
|
|
5621
|
+
width: 1.5rem;
|
|
5622
|
+
height: 1.5rem;
|
|
5623
|
+
border: none;
|
|
5624
|
+
background: none;
|
|
5625
|
+
color: #6c757d;
|
|
5626
|
+
font-size: 1.25rem;
|
|
5627
|
+
cursor: pointer;
|
|
5628
|
+
padding: 0;
|
|
5629
|
+
line-height: 1;
|
|
5630
|
+
border-radius: 50%;
|
|
5631
|
+
transition: color 0.15s ease-out;
|
|
5632
|
+
}
|
|
5633
|
+
|
|
5634
|
+
.bw-search-clear:hover {
|
|
5635
|
+
color: #212529;
|
|
5636
|
+
}
|
|
5637
|
+
|
|
5638
|
+
.bw-bw_search-clear:hover {
|
|
5639
|
+
color: #212529;
|
|
5640
|
+
}
|
|
5641
|
+
|
|
5642
|
+
.bw-range-wrapper {
|
|
5643
|
+
margin-bottom: 1rem;
|
|
5644
|
+
}
|
|
5645
|
+
|
|
5646
|
+
.bw-bw_range-wrapper {
|
|
5647
|
+
margin-bottom: 1rem;
|
|
5648
|
+
}
|
|
5649
|
+
|
|
5650
|
+
.bw-range-label {
|
|
5651
|
+
display: flex;
|
|
5652
|
+
justify-content: space-between;
|
|
5653
|
+
align-items: center;
|
|
5654
|
+
margin-bottom: 0.5rem;
|
|
5655
|
+
font-size: 0.875rem;
|
|
5656
|
+
font-weight: 500;
|
|
5657
|
+
}
|
|
5658
|
+
|
|
5659
|
+
.bw-bw_range-label {
|
|
5660
|
+
display: flex;
|
|
5661
|
+
justify-content: space-between;
|
|
5662
|
+
align-items: center;
|
|
5663
|
+
margin-bottom: 0.5rem;
|
|
5664
|
+
font-size: 0.875rem;
|
|
5665
|
+
font-weight: 500;
|
|
5666
|
+
}
|
|
5667
|
+
|
|
5668
|
+
.bw-range-value {
|
|
5669
|
+
font-weight: 600;
|
|
5670
|
+
color: #006666;
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5673
|
+
.bw-bw_range-value {
|
|
5674
|
+
font-weight: 600;
|
|
5675
|
+
color: #006666;
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5678
|
+
.bw-range {
|
|
5679
|
+
width: 100%;
|
|
5680
|
+
height: 0.5rem;
|
|
5681
|
+
padding: 0;
|
|
5682
|
+
appearance: none;
|
|
5683
|
+
background-color: #dee2e6;
|
|
5684
|
+
border: none;
|
|
5685
|
+
border-radius: 0.25rem;
|
|
5686
|
+
cursor: pointer;
|
|
5687
|
+
outline: none;
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5690
|
+
.bw-bw_range {
|
|
5691
|
+
width: 100%;
|
|
5692
|
+
height: 0.5rem;
|
|
5693
|
+
padding: 0;
|
|
5694
|
+
appearance: none;
|
|
5695
|
+
background-color: #dee2e6;
|
|
5696
|
+
border: none;
|
|
5697
|
+
border-radius: 0.25rem;
|
|
5698
|
+
cursor: pointer;
|
|
5699
|
+
outline: none;
|
|
5700
|
+
}
|
|
5701
|
+
|
|
5702
|
+
.bw-range:focus {
|
|
5703
|
+
outline: none;
|
|
5704
|
+
}
|
|
5705
|
+
|
|
5706
|
+
.bw-bw_range:focus {
|
|
5707
|
+
outline: none;
|
|
5708
|
+
}
|
|
5709
|
+
|
|
5710
|
+
.bw-range::-webkit-slider-thumb {
|
|
5711
|
+
appearance: none;
|
|
5712
|
+
width: 1.25rem;
|
|
5713
|
+
height: 1.25rem;
|
|
5714
|
+
border-radius: 50%;
|
|
5715
|
+
background-color: #006666;
|
|
5716
|
+
border: 2px solid #fff;
|
|
5717
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
|
|
5718
|
+
cursor: pointer;
|
|
5719
|
+
transition: background-color 0.15s ease-out, transform 0.15s ease-out;
|
|
5720
|
+
}
|
|
5721
|
+
|
|
5722
|
+
.bw-bw_range::-webkit-slider-thumb {
|
|
5723
|
+
appearance: none;
|
|
5724
|
+
width: 1.25rem;
|
|
5725
|
+
height: 1.25rem;
|
|
5726
|
+
border-radius: 50%;
|
|
5727
|
+
background-color: #006666;
|
|
5728
|
+
border: 2px solid #fff;
|
|
5729
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
|
|
5730
|
+
cursor: pointer;
|
|
5731
|
+
transition: background-color 0.15s ease-out, transform 0.15s ease-out;
|
|
5732
|
+
}
|
|
5733
|
+
|
|
5734
|
+
.bw-range::-webkit-slider-thumb:hover {
|
|
5735
|
+
transform: scale(1.15);
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
.bw-bw_range::-webkit-slider-thumb:hover {
|
|
5739
|
+
transform: scale(1.15);
|
|
5740
|
+
}
|
|
5741
|
+
|
|
5742
|
+
.bw-range::-moz-range-thumb {
|
|
5743
|
+
width: 1.25rem;
|
|
5744
|
+
height: 1.25rem;
|
|
5745
|
+
border-radius: 50%;
|
|
5746
|
+
background-color: #006666;
|
|
5747
|
+
border: 2px solid #fff;
|
|
5748
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
|
|
5749
|
+
cursor: pointer;
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
.bw-bw_range::-moz-range-thumb {
|
|
5753
|
+
width: 1.25rem;
|
|
5754
|
+
height: 1.25rem;
|
|
5755
|
+
border-radius: 50%;
|
|
5756
|
+
background-color: #006666;
|
|
5757
|
+
border: 2px solid #fff;
|
|
5758
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
|
|
5759
|
+
cursor: pointer;
|
|
5760
|
+
}
|
|
5761
|
+
|
|
5762
|
+
.bw-range:disabled {
|
|
5763
|
+
opacity: 0.5;
|
|
5764
|
+
cursor: not-allowed;
|
|
5765
|
+
}
|
|
5766
|
+
|
|
5767
|
+
.bw-bw_range:disabled {
|
|
5768
|
+
opacity: 0.5;
|
|
5769
|
+
cursor: not-allowed;
|
|
5770
|
+
}
|
|
5771
|
+
|
|
5772
|
+
.bw-media {
|
|
5773
|
+
display: flex;
|
|
5774
|
+
align-items: flex-start;
|
|
5775
|
+
gap: 1rem;
|
|
5776
|
+
}
|
|
5777
|
+
|
|
5778
|
+
.bw-bw_media {
|
|
5779
|
+
display: flex;
|
|
5780
|
+
align-items: flex-start;
|
|
5781
|
+
gap: 1rem;
|
|
5782
|
+
}
|
|
5783
|
+
|
|
5784
|
+
.bw-media-reverse {
|
|
5785
|
+
flex-direction: row-reverse;
|
|
5786
|
+
}
|
|
5787
|
+
|
|
5788
|
+
.bw-bw_media-reverse {
|
|
5789
|
+
flex-direction: row-reverse;
|
|
5790
|
+
}
|
|
5791
|
+
|
|
5792
|
+
.bw-media-img {
|
|
5793
|
+
border-radius: 50%;
|
|
5794
|
+
object-fit: cover;
|
|
5795
|
+
flex-shrink: 0;
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
.bw-bw_media-img {
|
|
5799
|
+
border-radius: 50%;
|
|
5800
|
+
object-fit: cover;
|
|
5801
|
+
flex-shrink: 0;
|
|
5802
|
+
}
|
|
5803
|
+
|
|
5804
|
+
.bw-media-body {
|
|
5805
|
+
flex: 1;
|
|
5806
|
+
min-width: 0;
|
|
5807
|
+
}
|
|
5808
|
+
|
|
5809
|
+
.bw-bw_media-body {
|
|
5810
|
+
flex: 1;
|
|
5811
|
+
min-width: 0;
|
|
5812
|
+
}
|
|
5813
|
+
|
|
5814
|
+
.bw-media-title {
|
|
5815
|
+
margin: 0 0 0.25rem 0;
|
|
5816
|
+
font-size: 1rem;
|
|
5817
|
+
font-weight: 600;
|
|
5818
|
+
line-height: 1.3;
|
|
5819
|
+
}
|
|
5820
|
+
|
|
5821
|
+
.bw-bw_media-title {
|
|
5822
|
+
margin: 0 0 0.25rem 0;
|
|
5823
|
+
font-size: 1rem;
|
|
5824
|
+
font-weight: 600;
|
|
5825
|
+
line-height: 1.3;
|
|
5826
|
+
}
|
|
5827
|
+
|
|
5828
|
+
.bw-file-upload {
|
|
5829
|
+
display: flex;
|
|
5830
|
+
flex-direction: column;
|
|
5831
|
+
align-items: center;
|
|
5832
|
+
justify-content: center;
|
|
5833
|
+
padding: 2rem;
|
|
5834
|
+
border: 2px dashed transparent;
|
|
5835
|
+
border-radius: 8px;
|
|
5836
|
+
background-color: #f8f9fa;
|
|
5837
|
+
cursor: pointer;
|
|
5838
|
+
text-align: center;
|
|
5839
|
+
transition: border-color 0.15s ease-out, background-color 0.15s ease-out;
|
|
5840
|
+
position: relative;
|
|
5841
|
+
}
|
|
5842
|
+
|
|
5843
|
+
.bw-bw_file-upload {
|
|
5844
|
+
display: flex;
|
|
5845
|
+
flex-direction: column;
|
|
5846
|
+
align-items: center;
|
|
5847
|
+
justify-content: center;
|
|
5848
|
+
padding: 2rem;
|
|
5849
|
+
border: 2px dashed transparent;
|
|
5850
|
+
border-radius: 8px;
|
|
5851
|
+
background-color: #f8f9fa;
|
|
5852
|
+
cursor: pointer;
|
|
5853
|
+
text-align: center;
|
|
5854
|
+
transition: border-color 0.15s ease-out, background-color 0.15s ease-out;
|
|
5855
|
+
position: relative;
|
|
5856
|
+
}
|
|
5857
|
+
|
|
5858
|
+
.bw-file-upload:hover {
|
|
5859
|
+
border-color: #006666;
|
|
5860
|
+
background-color: #f0fafa;
|
|
5861
|
+
}
|
|
5862
|
+
|
|
5863
|
+
.bw-bw_file-upload:hover {
|
|
5864
|
+
border-color: #006666;
|
|
5865
|
+
background-color: #f0fafa;
|
|
5866
|
+
}
|
|
5867
|
+
|
|
5868
|
+
.bw-file-upload.bw-file-upload-active {
|
|
5869
|
+
border-color: #006666;
|
|
5870
|
+
background-color: #e6f7f7;
|
|
5871
|
+
border-style: solid;
|
|
5872
|
+
}
|
|
5873
|
+
|
|
5874
|
+
.bw-bw_file-upload.bw_file-upload-active {
|
|
5875
|
+
border-color: #006666;
|
|
5876
|
+
background-color: #e6f7f7;
|
|
5877
|
+
border-style: solid;
|
|
5878
|
+
}
|
|
5879
|
+
|
|
5880
|
+
.bw-file-upload-icon {
|
|
5881
|
+
font-size: 2rem;
|
|
5882
|
+
margin-bottom: 0.5rem;
|
|
5883
|
+
}
|
|
5884
|
+
|
|
5885
|
+
.bw-bw_file-upload-icon {
|
|
5886
|
+
font-size: 2rem;
|
|
5887
|
+
margin-bottom: 0.5rem;
|
|
5888
|
+
}
|
|
5889
|
+
|
|
5890
|
+
.bw-file-upload-text {
|
|
5891
|
+
font-size: 0.875rem;
|
|
5892
|
+
color: #6c757d;
|
|
5893
|
+
}
|
|
5894
|
+
|
|
5895
|
+
.bw-bw_file-upload-text {
|
|
5896
|
+
font-size: 0.875rem;
|
|
5897
|
+
color: #6c757d;
|
|
5898
|
+
}
|
|
5899
|
+
|
|
5900
|
+
.bw-file-upload-input {
|
|
5901
|
+
position: absolute;
|
|
5902
|
+
width: 1px;
|
|
5903
|
+
height: 1px;
|
|
5904
|
+
padding: 0;
|
|
5905
|
+
margin: -1px;
|
|
5906
|
+
overflow: hidden;
|
|
5907
|
+
clip: rect(0,0,0,0);
|
|
5908
|
+
border: 0;
|
|
5909
|
+
}
|
|
5910
|
+
|
|
5911
|
+
.bw-bw_file-upload-input {
|
|
5912
|
+
position: absolute;
|
|
5913
|
+
width: 1px;
|
|
5914
|
+
height: 1px;
|
|
5915
|
+
padding: 0;
|
|
5916
|
+
margin: -1px;
|
|
5917
|
+
overflow: hidden;
|
|
5918
|
+
clip: rect(0,0,0,0);
|
|
5919
|
+
border: 0;
|
|
5920
|
+
}
|
|
5921
|
+
|
|
5922
|
+
.bw-file-upload:focus {
|
|
5923
|
+
outline: 2px solid #006666;
|
|
5924
|
+
outline-offset: 2px;
|
|
5925
|
+
}
|
|
5926
|
+
|
|
5927
|
+
.bw-bw_file-upload:focus {
|
|
5928
|
+
outline: 2px solid #006666;
|
|
5929
|
+
outline-offset: 2px;
|
|
5930
|
+
}
|
|
5931
|
+
|
|
5932
|
+
.bw-timeline {
|
|
5933
|
+
position: relative;
|
|
5934
|
+
padding-left: 2rem;
|
|
5935
|
+
}
|
|
5936
|
+
|
|
5937
|
+
.bw-bw_timeline {
|
|
5938
|
+
position: relative;
|
|
5939
|
+
padding-left: 2rem;
|
|
5940
|
+
}
|
|
5941
|
+
|
|
5942
|
+
.bw-timeline::before {
|
|
5943
|
+
content: "";
|
|
5944
|
+
position: absolute;
|
|
5945
|
+
left: 0.5rem;
|
|
5946
|
+
top: 0;
|
|
5947
|
+
bottom: 0;
|
|
5948
|
+
width: 2px;
|
|
5949
|
+
background-color: #dee2e6;
|
|
5950
|
+
}
|
|
5951
|
+
|
|
5952
|
+
.bw-bw_timeline::before {
|
|
5953
|
+
content: "";
|
|
5954
|
+
position: absolute;
|
|
5955
|
+
left: 0.5rem;
|
|
5956
|
+
top: 0;
|
|
5957
|
+
bottom: 0;
|
|
5958
|
+
width: 2px;
|
|
5959
|
+
background-color: #dee2e6;
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5962
|
+
.bw-timeline-item {
|
|
5963
|
+
position: relative;
|
|
5964
|
+
padding-bottom: 1.5rem;
|
|
5965
|
+
}
|
|
5966
|
+
|
|
5967
|
+
.bw-bw_timeline-item {
|
|
5968
|
+
position: relative;
|
|
5969
|
+
padding-bottom: 1.5rem;
|
|
5970
|
+
}
|
|
5971
|
+
|
|
5972
|
+
.bw-timeline-item:last-child {
|
|
5973
|
+
padding-bottom: 0;
|
|
5974
|
+
}
|
|
5975
|
+
|
|
5976
|
+
.bw-bw_timeline-item:last-child {
|
|
5977
|
+
padding-bottom: 0;
|
|
5978
|
+
}
|
|
5979
|
+
|
|
5980
|
+
.bw-timeline-marker {
|
|
5981
|
+
position: absolute;
|
|
5982
|
+
left: -1.75rem;
|
|
5983
|
+
top: 0.25rem;
|
|
5984
|
+
width: 0.75rem;
|
|
5985
|
+
height: 0.75rem;
|
|
5986
|
+
border-radius: 50%;
|
|
5987
|
+
border: 2px solid #fff;
|
|
5988
|
+
box-shadow: 0 0 0 2px #dee2e6;
|
|
5989
|
+
}
|
|
5990
|
+
|
|
5991
|
+
.bw-bw_timeline-marker {
|
|
5992
|
+
position: absolute;
|
|
5993
|
+
left: -1.75rem;
|
|
5994
|
+
top: 0.25rem;
|
|
5995
|
+
width: 0.75rem;
|
|
5996
|
+
height: 0.75rem;
|
|
5997
|
+
border-radius: 50%;
|
|
5998
|
+
border: 2px solid #fff;
|
|
5999
|
+
box-shadow: 0 0 0 2px #dee2e6;
|
|
6000
|
+
}
|
|
6001
|
+
|
|
6002
|
+
.bw-timeline-marker-primary {
|
|
6003
|
+
background-color: #006666;
|
|
6004
|
+
box-shadow: 0 0 0 2px #006666;
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
.bw-bw_timeline-marker-primary {
|
|
6008
|
+
background-color: #006666;
|
|
6009
|
+
box-shadow: 0 0 0 2px #006666;
|
|
6010
|
+
}
|
|
6011
|
+
|
|
6012
|
+
.bw-timeline-marker-secondary {
|
|
6013
|
+
background-color: #6c757d;
|
|
6014
|
+
box-shadow: 0 0 0 2px #6c757d;
|
|
6015
|
+
}
|
|
6016
|
+
|
|
6017
|
+
.bw-bw_timeline-marker-secondary {
|
|
6018
|
+
background-color: #6c757d;
|
|
6019
|
+
box-shadow: 0 0 0 2px #6c757d;
|
|
6020
|
+
}
|
|
6021
|
+
|
|
6022
|
+
.bw-timeline-marker-success {
|
|
6023
|
+
background-color: #198754;
|
|
6024
|
+
box-shadow: 0 0 0 2px #198754;
|
|
6025
|
+
}
|
|
6026
|
+
|
|
6027
|
+
.bw-bw_timeline-marker-success {
|
|
6028
|
+
background-color: #198754;
|
|
6029
|
+
box-shadow: 0 0 0 2px #198754;
|
|
6030
|
+
}
|
|
6031
|
+
|
|
6032
|
+
.bw-timeline-marker-danger {
|
|
6033
|
+
background-color: #dc3545;
|
|
6034
|
+
box-shadow: 0 0 0 2px #dc3545;
|
|
6035
|
+
}
|
|
6036
|
+
|
|
6037
|
+
.bw-bw_timeline-marker-danger {
|
|
6038
|
+
background-color: #dc3545;
|
|
6039
|
+
box-shadow: 0 0 0 2px #dc3545;
|
|
6040
|
+
}
|
|
6041
|
+
|
|
6042
|
+
.bw-timeline-marker-warning {
|
|
6043
|
+
background-color: #b38600;
|
|
6044
|
+
box-shadow: 0 0 0 2px #b38600;
|
|
6045
|
+
}
|
|
6046
|
+
|
|
6047
|
+
.bw-bw_timeline-marker-warning {
|
|
6048
|
+
background-color: #b38600;
|
|
6049
|
+
box-shadow: 0 0 0 2px #b38600;
|
|
6050
|
+
}
|
|
6051
|
+
|
|
6052
|
+
.bw-timeline-marker-info {
|
|
6053
|
+
background-color: #0891b2;
|
|
6054
|
+
box-shadow: 0 0 0 2px #0891b2;
|
|
6055
|
+
}
|
|
6056
|
+
|
|
6057
|
+
.bw-bw_timeline-marker-info {
|
|
6058
|
+
background-color: #0891b2;
|
|
6059
|
+
box-shadow: 0 0 0 2px #0891b2;
|
|
6060
|
+
}
|
|
6061
|
+
|
|
6062
|
+
.bw-timeline-content {
|
|
6063
|
+
padding-left: 0.5rem;
|
|
6064
|
+
}
|
|
6065
|
+
|
|
6066
|
+
.bw-bw_timeline-content {
|
|
6067
|
+
padding-left: 0.5rem;
|
|
6068
|
+
}
|
|
6069
|
+
|
|
6070
|
+
.bw-timeline-date {
|
|
6071
|
+
font-size: 0.75rem;
|
|
6072
|
+
color: #6c757d;
|
|
6073
|
+
margin-bottom: 0.25rem;
|
|
6074
|
+
font-weight: 500;
|
|
6075
|
+
}
|
|
6076
|
+
|
|
6077
|
+
.bw-bw_timeline-date {
|
|
6078
|
+
font-size: 0.75rem;
|
|
6079
|
+
color: #6c757d;
|
|
6080
|
+
margin-bottom: 0.25rem;
|
|
6081
|
+
font-weight: 500;
|
|
6082
|
+
}
|
|
6083
|
+
|
|
6084
|
+
.bw-timeline-title {
|
|
6085
|
+
font-size: 1rem;
|
|
6086
|
+
font-weight: 600;
|
|
6087
|
+
margin: 0 0 0.25rem 0;
|
|
6088
|
+
line-height: 1.3;
|
|
6089
|
+
}
|
|
6090
|
+
|
|
6091
|
+
.bw-bw_timeline-title {
|
|
6092
|
+
font-size: 1rem;
|
|
6093
|
+
font-weight: 600;
|
|
6094
|
+
margin: 0 0 0.25rem 0;
|
|
6095
|
+
line-height: 1.3;
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
.bw-timeline-text {
|
|
6099
|
+
font-size: 0.875rem;
|
|
6100
|
+
color: #495057;
|
|
6101
|
+
margin: 0;
|
|
6102
|
+
line-height: 1.5;
|
|
6103
|
+
}
|
|
6104
|
+
|
|
6105
|
+
.bw-bw_timeline-text {
|
|
6106
|
+
font-size: 0.875rem;
|
|
6107
|
+
color: #495057;
|
|
6108
|
+
margin: 0;
|
|
6109
|
+
line-height: 1.5;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6112
|
+
.bw-stepper {
|
|
6113
|
+
display: flex;
|
|
6114
|
+
gap: 0;
|
|
6115
|
+
counter-reset: step;
|
|
6116
|
+
}
|
|
6117
|
+
|
|
6118
|
+
.bw-bw_stepper {
|
|
6119
|
+
display: flex;
|
|
6120
|
+
gap: 0;
|
|
6121
|
+
counter-reset: step;
|
|
6122
|
+
}
|
|
6123
|
+
|
|
6124
|
+
.bw-step {
|
|
6125
|
+
flex: 1;
|
|
6126
|
+
display: flex;
|
|
6127
|
+
flex-direction: column;
|
|
6128
|
+
align-items: center;
|
|
6129
|
+
text-align: center;
|
|
6130
|
+
position: relative;
|
|
6131
|
+
}
|
|
6132
|
+
|
|
6133
|
+
.bw-bw_step {
|
|
6134
|
+
flex: 1;
|
|
6135
|
+
display: flex;
|
|
6136
|
+
flex-direction: column;
|
|
6137
|
+
align-items: center;
|
|
6138
|
+
text-align: center;
|
|
6139
|
+
position: relative;
|
|
6140
|
+
}
|
|
6141
|
+
|
|
6142
|
+
.bw-step + .bw-step::before {
|
|
6143
|
+
content: "";
|
|
6144
|
+
position: absolute;
|
|
6145
|
+
top: 1rem;
|
|
6146
|
+
left: -50%;
|
|
6147
|
+
right: 50%;
|
|
6148
|
+
height: 2px;
|
|
6149
|
+
background-color: #dee2e6;
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
.bw-bw_step + .bw_step::before {
|
|
6153
|
+
content: "";
|
|
6154
|
+
position: absolute;
|
|
6155
|
+
top: 1rem;
|
|
6156
|
+
left: -50%;
|
|
6157
|
+
right: 50%;
|
|
6158
|
+
height: 2px;
|
|
6159
|
+
background-color: #dee2e6;
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
.bw-step-completed + .bw-step::before {
|
|
6163
|
+
background-color: #006666;
|
|
6164
|
+
}
|
|
6165
|
+
|
|
6166
|
+
.bw-bw_step-completed + .bw_step::before {
|
|
6167
|
+
background-color: #006666;
|
|
6168
|
+
}
|
|
6169
|
+
|
|
6170
|
+
.bw-step-indicator {
|
|
6171
|
+
width: 2rem;
|
|
6172
|
+
height: 2rem;
|
|
6173
|
+
border-radius: 50%;
|
|
6174
|
+
display: flex;
|
|
6175
|
+
align-items: center;
|
|
6176
|
+
justify-content: center;
|
|
6177
|
+
font-size: 0.875rem;
|
|
6178
|
+
font-weight: 600;
|
|
6179
|
+
background-color: #dee2e6;
|
|
6180
|
+
color: #6c757d;
|
|
6181
|
+
position: relative;
|
|
6182
|
+
z-index: 1;
|
|
6183
|
+
transition: background-color 0.2s ease-out, color 0.2s ease-out;
|
|
6184
|
+
}
|
|
6185
|
+
|
|
6186
|
+
.bw-bw_step-indicator {
|
|
6187
|
+
width: 2rem;
|
|
6188
|
+
height: 2rem;
|
|
6189
|
+
border-radius: 50%;
|
|
6190
|
+
display: flex;
|
|
6191
|
+
align-items: center;
|
|
6192
|
+
justify-content: center;
|
|
6193
|
+
font-size: 0.875rem;
|
|
6194
|
+
font-weight: 600;
|
|
6195
|
+
background-color: #dee2e6;
|
|
6196
|
+
color: #6c757d;
|
|
6197
|
+
position: relative;
|
|
6198
|
+
z-index: 1;
|
|
6199
|
+
transition: background-color 0.2s ease-out, color 0.2s ease-out;
|
|
6200
|
+
}
|
|
6201
|
+
|
|
6202
|
+
.bw-step-active .bw-step-indicator {
|
|
6203
|
+
background-color: #006666;
|
|
6204
|
+
color: #fff;
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
.bw-bw_step-active .bw_step-indicator {
|
|
6208
|
+
background-color: #006666;
|
|
6209
|
+
color: #fff;
|
|
6210
|
+
}
|
|
6211
|
+
|
|
6212
|
+
.bw-step-completed .bw-step-indicator {
|
|
6213
|
+
background-color: #006666;
|
|
6214
|
+
color: #fff;
|
|
6215
|
+
}
|
|
6216
|
+
|
|
6217
|
+
.bw-bw_step-completed .bw_step-indicator {
|
|
6218
|
+
background-color: #006666;
|
|
6219
|
+
color: #fff;
|
|
6220
|
+
}
|
|
6221
|
+
|
|
6222
|
+
.bw-step-body {
|
|
6223
|
+
margin-top: 0.5rem;
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
.bw-bw_step-body {
|
|
6227
|
+
margin-top: 0.5rem;
|
|
6228
|
+
}
|
|
6229
|
+
|
|
6230
|
+
.bw-step-label {
|
|
6231
|
+
font-size: 0.875rem;
|
|
6232
|
+
font-weight: 500;
|
|
6233
|
+
color: #6c757d;
|
|
6234
|
+
}
|
|
6235
|
+
|
|
6236
|
+
.bw-bw_step-label {
|
|
6237
|
+
font-size: 0.875rem;
|
|
6238
|
+
font-weight: 500;
|
|
6239
|
+
color: #6c757d;
|
|
6240
|
+
}
|
|
6241
|
+
|
|
6242
|
+
.bw-step-active .bw-step-label {
|
|
6243
|
+
color: #212529;
|
|
6244
|
+
font-weight: 600;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
.bw-bw_step-active .bw_step-label {
|
|
6248
|
+
color: #212529;
|
|
6249
|
+
font-weight: 600;
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
.bw-step-completed .bw-step-label {
|
|
6253
|
+
color: #006666;
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
.bw-bw_step-completed .bw_step-label {
|
|
6257
|
+
color: #006666;
|
|
6258
|
+
}
|
|
6259
|
+
|
|
6260
|
+
.bw-step-description {
|
|
6261
|
+
font-size: 0.75rem;
|
|
6262
|
+
color: #6c757d;
|
|
6263
|
+
margin-top: 0.125rem;
|
|
6264
|
+
}
|
|
6265
|
+
|
|
6266
|
+
.bw-bw_step-description {
|
|
6267
|
+
font-size: 0.75rem;
|
|
6268
|
+
color: #6c757d;
|
|
6269
|
+
margin-top: 0.125rem;
|
|
6270
|
+
}
|
|
6271
|
+
|
|
6272
|
+
.bw-chip-input {
|
|
6273
|
+
display: flex;
|
|
6274
|
+
flex-wrap: wrap;
|
|
6275
|
+
align-items: center;
|
|
6276
|
+
gap: 0.375rem;
|
|
6277
|
+
padding: 0.375rem 0.5rem;
|
|
6278
|
+
border: 1px solid #ced4da;
|
|
6279
|
+
border-radius: 6px;
|
|
6280
|
+
background-color: #fff;
|
|
6281
|
+
min-height: 2.5rem;
|
|
6282
|
+
cursor: text;
|
|
6283
|
+
transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
6284
|
+
}
|
|
6285
|
+
|
|
6286
|
+
.bw-bw_chip-input {
|
|
6287
|
+
display: flex;
|
|
6288
|
+
flex-wrap: wrap;
|
|
6289
|
+
align-items: center;
|
|
6290
|
+
gap: 0.375rem;
|
|
6291
|
+
padding: 0.375rem 0.5rem;
|
|
6292
|
+
border: 1px solid #ced4da;
|
|
6293
|
+
border-radius: 6px;
|
|
6294
|
+
background-color: #fff;
|
|
6295
|
+
min-height: 2.5rem;
|
|
6296
|
+
cursor: text;
|
|
6297
|
+
transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
.bw-chip-input:focus-within {
|
|
6301
|
+
border-color: #006666;
|
|
6302
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 102, 102, 0.25);
|
|
6303
|
+
}
|
|
6304
|
+
|
|
6305
|
+
.bw-bw_chip-input:focus-within {
|
|
6306
|
+
border-color: #006666;
|
|
6307
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 102, 102, 0.25);
|
|
6308
|
+
}
|
|
6309
|
+
|
|
6310
|
+
.bw-chip {
|
|
6311
|
+
display: inline-flex;
|
|
6312
|
+
align-items: center;
|
|
6313
|
+
gap: 0.25rem;
|
|
6314
|
+
padding: 0.125rem 0.5rem;
|
|
6315
|
+
background-color: #e9ecef;
|
|
6316
|
+
border-radius: 1rem;
|
|
6317
|
+
font-size: 0.8125rem;
|
|
6318
|
+
line-height: 1.5;
|
|
6319
|
+
color: #212529;
|
|
6320
|
+
white-space: nowrap;
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6323
|
+
.bw-bw_chip {
|
|
6324
|
+
display: inline-flex;
|
|
6325
|
+
align-items: center;
|
|
6326
|
+
gap: 0.25rem;
|
|
6327
|
+
padding: 0.125rem 0.5rem;
|
|
6328
|
+
background-color: #e9ecef;
|
|
6329
|
+
border-radius: 1rem;
|
|
6330
|
+
font-size: 0.8125rem;
|
|
6331
|
+
line-height: 1.5;
|
|
6332
|
+
color: #212529;
|
|
6333
|
+
white-space: nowrap;
|
|
6334
|
+
}
|
|
6335
|
+
|
|
6336
|
+
.bw-chip-remove {
|
|
6337
|
+
display: inline-flex;
|
|
6338
|
+
align-items: center;
|
|
6339
|
+
justify-content: center;
|
|
6340
|
+
width: 1rem;
|
|
6341
|
+
height: 1rem;
|
|
6342
|
+
border: none;
|
|
6343
|
+
background: none;
|
|
6344
|
+
color: #6c757d;
|
|
6345
|
+
font-size: 0.875rem;
|
|
6346
|
+
cursor: pointer;
|
|
6347
|
+
padding: 0;
|
|
6348
|
+
line-height: 1;
|
|
6349
|
+
border-radius: 50%;
|
|
6350
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out;
|
|
6351
|
+
}
|
|
6352
|
+
|
|
6353
|
+
.bw-bw_chip-remove {
|
|
6354
|
+
display: inline-flex;
|
|
6355
|
+
align-items: center;
|
|
6356
|
+
justify-content: center;
|
|
6357
|
+
width: 1rem;
|
|
6358
|
+
height: 1rem;
|
|
6359
|
+
border: none;
|
|
6360
|
+
background: none;
|
|
6361
|
+
color: #6c757d;
|
|
6362
|
+
font-size: 0.875rem;
|
|
6363
|
+
cursor: pointer;
|
|
6364
|
+
padding: 0;
|
|
6365
|
+
line-height: 1;
|
|
6366
|
+
border-radius: 50%;
|
|
6367
|
+
transition: color 0.15s ease-out, background-color 0.15s ease-out;
|
|
6368
|
+
}
|
|
6369
|
+
|
|
6370
|
+
.bw-chip-remove:hover {
|
|
6371
|
+
color: #dc3545;
|
|
6372
|
+
background-color: rgba(220, 53, 69, 0.1);
|
|
6373
|
+
}
|
|
6374
|
+
|
|
6375
|
+
.bw-bw_chip-remove:hover {
|
|
6376
|
+
color: #dc3545;
|
|
6377
|
+
background-color: rgba(220, 53, 69, 0.1);
|
|
6378
|
+
}
|
|
6379
|
+
|
|
6380
|
+
.bw-chip-field {
|
|
6381
|
+
flex: 1;
|
|
6382
|
+
min-width: 80px;
|
|
6383
|
+
border: none;
|
|
6384
|
+
outline: none;
|
|
6385
|
+
font-size: 0.875rem;
|
|
6386
|
+
padding: 0.125rem 0;
|
|
6387
|
+
background: transparent;
|
|
6388
|
+
}
|
|
6389
|
+
|
|
6390
|
+
.bw-bw_chip-field {
|
|
6391
|
+
flex: 1;
|
|
6392
|
+
min-width: 80px;
|
|
6393
|
+
border: none;
|
|
6394
|
+
outline: none;
|
|
6395
|
+
font-size: 0.875rem;
|
|
6396
|
+
padding: 0.125rem 0;
|
|
6397
|
+
background: transparent;
|
|
6398
|
+
}
|
|
6399
|
+
|
|
6400
|
+
.bw-m-0 {
|
|
6401
|
+
margin: 0 !important;
|
|
6402
|
+
}
|
|
6403
|
+
|
|
6404
|
+
.bw-bw_m-0 {
|
|
6405
|
+
margin: 0 !important;
|
|
6406
|
+
}
|
|
6407
|
+
|
|
6408
|
+
.bw-m-1 {
|
|
6409
|
+
margin: .25rem !important;
|
|
6410
|
+
}
|
|
6411
|
+
|
|
6412
|
+
.bw-bw_m-1 {
|
|
6413
|
+
margin: .25rem !important;
|
|
6414
|
+
}
|
|
6415
|
+
|
|
6416
|
+
.bw-m-2 {
|
|
6417
|
+
margin: .5rem !important;
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
.bw-bw_m-2 {
|
|
6421
|
+
margin: .5rem !important;
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
.bw-m-3 {
|
|
6425
|
+
margin: 1rem !important;
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6428
|
+
.bw-bw_m-3 {
|
|
6429
|
+
margin: 1rem !important;
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6432
|
+
.bw-m-4 {
|
|
6433
|
+
margin: 1.5rem !important;
|
|
6434
|
+
}
|
|
6435
|
+
|
|
6436
|
+
.bw-bw_m-4 {
|
|
6437
|
+
margin: 1.5rem !important;
|
|
6438
|
+
}
|
|
6439
|
+
|
|
6440
|
+
.bw-m-5 {
|
|
6441
|
+
margin: 3rem !important;
|
|
6442
|
+
}
|
|
6443
|
+
|
|
6444
|
+
.bw-bw_m-5 {
|
|
6445
|
+
margin: 3rem !important;
|
|
6446
|
+
}
|
|
6447
|
+
|
|
6448
|
+
.bw-m-auto, .m-auto {
|
|
6449
|
+
margin: auto !important;
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
.bw-bw_m-auto, .m-auto {
|
|
6453
|
+
margin: auto !important;
|
|
6454
|
+
}
|
|
6455
|
+
|
|
6456
|
+
.bw-mt-0 {
|
|
6457
|
+
margin-top: 0 !important;
|
|
6458
|
+
}
|
|
6459
|
+
|
|
6460
|
+
.bw-bw_mt-0 {
|
|
6461
|
+
margin-top: 0 !important;
|
|
6462
|
+
}
|
|
6463
|
+
|
|
6464
|
+
.bw-mt-1 {
|
|
6465
|
+
margin-top: .25rem !important;
|
|
6466
|
+
}
|
|
6467
|
+
|
|
6468
|
+
.bw-bw_mt-1 {
|
|
6469
|
+
margin-top: .25rem !important;
|
|
6470
|
+
}
|
|
6471
|
+
|
|
6472
|
+
.bw-mt-2 {
|
|
6473
|
+
margin-top: .5rem !important;
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
.bw-bw_mt-2 {
|
|
6477
|
+
margin-top: .5rem !important;
|
|
6478
|
+
}
|
|
6479
|
+
|
|
6480
|
+
.bw-mt-3 {
|
|
6481
|
+
margin-top: 1rem !important;
|
|
6482
|
+
}
|
|
6483
|
+
|
|
6484
|
+
.bw-bw_mt-3 {
|
|
6485
|
+
margin-top: 1rem !important;
|
|
6486
|
+
}
|
|
6487
|
+
|
|
6488
|
+
.bw-mt-4 {
|
|
6489
|
+
margin-top: 1.5rem !important;
|
|
6490
|
+
}
|
|
6491
|
+
|
|
6492
|
+
.bw-bw_mt-4 {
|
|
6493
|
+
margin-top: 1.5rem !important;
|
|
6494
|
+
}
|
|
6495
|
+
|
|
6496
|
+
.bw-mt-5 {
|
|
6497
|
+
margin-top: 3rem !important;
|
|
6498
|
+
}
|
|
6499
|
+
|
|
6500
|
+
.bw-bw_mt-5 {
|
|
6501
|
+
margin-top: 3rem !important;
|
|
6502
|
+
}
|
|
6503
|
+
|
|
6504
|
+
.bw-mb-0 {
|
|
6505
|
+
margin-bottom: 0 !important;
|
|
6506
|
+
}
|
|
6507
|
+
|
|
6508
|
+
.bw-bw_mb-0 {
|
|
6509
|
+
margin-bottom: 0 !important;
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6512
|
+
.bw-mb-1 {
|
|
6513
|
+
margin-bottom: .25rem !important;
|
|
6514
|
+
}
|
|
6515
|
+
|
|
6516
|
+
.bw-bw_mb-1 {
|
|
6517
|
+
margin-bottom: .25rem !important;
|
|
5082
6518
|
}
|
|
5083
6519
|
|
|
5084
6520
|
.bw-mb-2 {
|
|
@@ -5610,19 +7046,19 @@ a.bw_list-group-item:hover {
|
|
|
5610
7046
|
}
|
|
5611
7047
|
|
|
5612
7048
|
.bw-text-warning {
|
|
5613
|
-
color: #
|
|
7049
|
+
color: #b38600;
|
|
5614
7050
|
}
|
|
5615
7051
|
|
|
5616
7052
|
.bw-bw_text-warning {
|
|
5617
|
-
color: #
|
|
7053
|
+
color: #b38600;
|
|
5618
7054
|
}
|
|
5619
7055
|
|
|
5620
7056
|
.bw-text-info {
|
|
5621
|
-
color: #
|
|
7057
|
+
color: #0891b2;
|
|
5622
7058
|
}
|
|
5623
7059
|
|
|
5624
7060
|
.bw-bw_text-info {
|
|
5625
|
-
color: #
|
|
7061
|
+
color: #0891b2;
|
|
5626
7062
|
}
|
|
5627
7063
|
|
|
5628
7064
|
.bw-text-light {
|
|
@@ -5682,19 +7118,19 @@ a.bw_list-group-item:hover {
|
|
|
5682
7118
|
}
|
|
5683
7119
|
|
|
5684
7120
|
.bw-bg-warning {
|
|
5685
|
-
background-color: #
|
|
7121
|
+
background-color: #b38600;
|
|
5686
7122
|
}
|
|
5687
7123
|
|
|
5688
7124
|
.bw-bw_bg-warning {
|
|
5689
|
-
background-color: #
|
|
7125
|
+
background-color: #b38600;
|
|
5690
7126
|
}
|
|
5691
7127
|
|
|
5692
7128
|
.bw-bg-info {
|
|
5693
|
-
background-color: #
|
|
7129
|
+
background-color: #0891b2;
|
|
5694
7130
|
}
|
|
5695
7131
|
|
|
5696
7132
|
.bw-bw_bg-info {
|
|
5697
|
-
background-color: #
|
|
7133
|
+
background-color: #0891b2;
|
|
5698
7134
|
}
|
|
5699
7135
|
|
|
5700
7136
|
.bw-bg-light {
|
|
@@ -6320,6 +7756,18 @@ a.bw_list-group-item:hover {
|
|
|
6320
7756
|
font-size: 0.875rem;
|
|
6321
7757
|
}
|
|
6322
7758
|
|
|
7759
|
+
.bw-page-link:focus-visible {
|
|
7760
|
+
z-index: 3;
|
|
7761
|
+
outline: 2px solid currentColor;
|
|
7762
|
+
outline-offset: -2px;
|
|
7763
|
+
}
|
|
7764
|
+
|
|
7765
|
+
.bw-bw_page-link:focus-visible {
|
|
7766
|
+
z-index: 3;
|
|
7767
|
+
outline: 2px solid currentColor;
|
|
7768
|
+
outline-offset: -2px;
|
|
7769
|
+
}
|
|
7770
|
+
|
|
6323
7771
|
.bw-bar-chart-container {
|
|
6324
7772
|
padding: 1rem;
|
|
6325
7773
|
border: 1px solid transparent;
|
|
@@ -6367,14 +7815,14 @@ a.bw_list-group-item:hover {
|
|
|
6367
7815
|
.bw-bar {
|
|
6368
7816
|
width: 100%;
|
|
6369
7817
|
border-radius: 3px 3px 0 0;
|
|
6370
|
-
transition: height 0.
|
|
7818
|
+
transition: height 0.3s ease-out;
|
|
6371
7819
|
min-height: 4px;
|
|
6372
7820
|
}
|
|
6373
7821
|
|
|
6374
7822
|
.bw-bw_bar {
|
|
6375
7823
|
width: 100%;
|
|
6376
7824
|
border-radius: 3px 3px 0 0;
|
|
6377
|
-
transition: height 0.
|
|
7825
|
+
transition: height 0.3s ease-out;
|
|
6378
7826
|
min-height: 4px;
|
|
6379
7827
|
}
|
|
6380
7828
|
|
|
@@ -6432,6 +7880,15 @@ a.bw_list-group-item:hover {
|
|
|
6432
7880
|
transform: translate(-50%, -50%) !important;
|
|
6433
7881
|
}
|
|
6434
7882
|
|
|
7883
|
+
@media (prefers-reduced-motion: reduce) {
|
|
7884
|
+
*, *::before, *::after {
|
|
7885
|
+
animation-duration: 0.01ms !important;
|
|
7886
|
+
animation-iteration-count: 1 !important;
|
|
7887
|
+
transition-duration: 0.01ms !important;
|
|
7888
|
+
scroll-behavior: auto !important;
|
|
7889
|
+
}
|
|
7890
|
+
}
|
|
7891
|
+
|
|
6435
7892
|
/* Bitwrench Page Layout */
|
|
6436
7893
|
.bw-page {
|
|
6437
7894
|
min-height: 100vh;
|