@nordicsemiconductor/pc-nrfconnect-shared 243.0.0 → 245.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +60 -10
- package/README.md +10 -0
- package/dist/bootstrap.css +250 -233
- package/dist/scripts/nordic-publish.js +4 -4
- package/dist/typings/ipc/device.d.ts +1 -1
- package/dist/typings/ipc/device.d.ts.map +1 -1
- package/dist/typings/ipc/schema/packageJson.d.ts +9 -9
- package/dist/typings/scripts/esbuild-renderer.d.ts +4 -3
- package/dist/typings/scripts/esbuild-renderer.d.ts.map +1 -1
- package/dist/typings/src/About/About.d.ts +1 -2
- package/dist/typings/src/About/About.d.ts.map +1 -1
- package/dist/typings/src/About/ApplicationCard.d.ts +4 -1
- package/dist/typings/src/About/ApplicationCard.d.ts.map +1 -1
- package/dist/typings/src/About/DeviceCard.d.ts +4 -1
- package/dist/typings/src/About/DeviceCard.d.ts.map +1 -1
- package/dist/typings/src/About/DocumentationCard.d.ts +5 -3
- package/dist/typings/src/About/DocumentationCard.d.ts.map +1 -1
- package/dist/typings/src/About/SupportCard.d.ts +5 -3
- package/dist/typings/src/About/SupportCard.d.ts.map +1 -1
- package/dist/typings/src/Button/Button.d.ts +5 -9
- package/dist/typings/src/Button/Button.d.ts.map +1 -1
- package/dist/typings/src/Card/Card.d.ts +24 -6
- package/dist/typings/src/Card/Card.d.ts.map +1 -1
- package/dist/typings/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
- package/dist/typings/src/utils/packageJson.d.ts +2 -2
- package/ipc/device.ts +1 -0
- package/package.json +5 -5
- package/release_notes.md +32 -7
- package/scripts/esbuild-renderer.ts +5 -3
- package/scripts/nordic-publish.ts +1 -1
- package/src/About/About.tsx +15 -13
- package/src/About/ApplicationCard.tsx +11 -4
- package/src/About/DeviceCard.tsx +18 -6
- package/src/About/DocumentationCard.tsx +12 -7
- package/src/About/SupportCard.tsx +12 -4
- package/src/Button/Button.tsx +17 -16
- package/src/Card/Card.tsx +101 -14
- package/src/Device/deviceInfo/deviceInfo.ts +11 -0
- package/src/utils/useStopwatch.test.tsx +4 -4
- package/src/variables.scss +20 -18
- package/src/About/about.scss +0 -40
- package/src/Card/card.module.scss +0 -28
package/dist/bootstrap.css
CHANGED
|
@@ -151,7 +151,7 @@ a {
|
|
|
151
151
|
background-color: transparent;
|
|
152
152
|
}
|
|
153
153
|
a:hover {
|
|
154
|
-
color:
|
|
154
|
+
color: rgb(0, 152.1, 185.4);
|
|
155
155
|
text-decoration: underline;
|
|
156
156
|
}
|
|
157
157
|
a:not([href]):not([class]) {
|
|
@@ -1486,20 +1486,20 @@ pre code {
|
|
|
1486
1486
|
.table-primary,
|
|
1487
1487
|
.table-primary > th,
|
|
1488
1488
|
.table-primary > td {
|
|
1489
|
-
background-color:
|
|
1489
|
+
background-color: rgb(183.6, 230.92, 241.28);
|
|
1490
1490
|
}
|
|
1491
1491
|
.table-primary th,
|
|
1492
1492
|
.table-primary td,
|
|
1493
1493
|
.table-primary thead th,
|
|
1494
1494
|
.table-primary tbody + tbody {
|
|
1495
|
-
border-color:
|
|
1495
|
+
border-color: rgb(122.4, 210.28, 229.52);
|
|
1496
1496
|
}
|
|
1497
1497
|
.table-hover .table-primary:hover {
|
|
1498
|
-
background-color:
|
|
1498
|
+
background-color: rgb(162.2101973684, 223.7061842105, 237.1698026316);
|
|
1499
1499
|
}
|
|
1500
1500
|
.table-hover .table-primary:hover > td,
|
|
1501
1501
|
.table-hover .table-primary:hover > th {
|
|
1502
|
-
background-color:
|
|
1502
|
+
background-color: rgb(162.2101973684, 223.7061842105, 237.1698026316);
|
|
1503
1503
|
}
|
|
1504
1504
|
.table-secondary,
|
|
1505
1505
|
.table-secondary > th,
|
|
@@ -1513,119 +1513,119 @@ pre code {
|
|
|
1513
1513
|
border-color: white;
|
|
1514
1514
|
}
|
|
1515
1515
|
.table-hover .table-secondary:hover {
|
|
1516
|
-
background-color:
|
|
1516
|
+
background-color: rgb(242.25, 242.25, 242.25);
|
|
1517
1517
|
}
|
|
1518
1518
|
.table-hover .table-secondary:hover > td,
|
|
1519
1519
|
.table-hover .table-secondary:hover > th {
|
|
1520
|
-
background-color:
|
|
1520
|
+
background-color: rgb(242.25, 242.25, 242.25);
|
|
1521
1521
|
}
|
|
1522
1522
|
.table-success,
|
|
1523
1523
|
.table-success > th,
|
|
1524
1524
|
.table-success > td {
|
|
1525
|
-
background-color:
|
|
1525
|
+
background-color: rgb(204.88, 232.6, 206);
|
|
1526
1526
|
}
|
|
1527
1527
|
.table-success th,
|
|
1528
1528
|
.table-success td,
|
|
1529
1529
|
.table-success thead th,
|
|
1530
1530
|
.table-success tbody + tbody {
|
|
1531
|
-
border-color:
|
|
1531
|
+
border-color: rgb(161.92, 213.4, 164);
|
|
1532
1532
|
}
|
|
1533
1533
|
.table-hover .table-success:hover {
|
|
1534
|
-
background-color:
|
|
1534
|
+
background-color: rgb(187.2564478764, 224.7235521236, 188.7702702703);
|
|
1535
1535
|
}
|
|
1536
1536
|
.table-hover .table-success:hover > td,
|
|
1537
1537
|
.table-hover .table-success:hover > th {
|
|
1538
|
-
background-color:
|
|
1538
|
+
background-color: rgb(187.2564478764, 224.7235521236, 188.7702702703);
|
|
1539
1539
|
}
|
|
1540
1540
|
.table-info,
|
|
1541
1541
|
.table-info > th,
|
|
1542
1542
|
.table-info > td {
|
|
1543
|
-
background-color:
|
|
1543
|
+
background-color: rgb(190.04, 228.96, 235.12);
|
|
1544
1544
|
}
|
|
1545
1545
|
.table-info th,
|
|
1546
1546
|
.table-info td,
|
|
1547
1547
|
.table-info thead th,
|
|
1548
1548
|
.table-info tbody + tbody {
|
|
1549
|
-
border-color:
|
|
1549
|
+
border-color: rgb(134.36, 206.64, 218.08);
|
|
1550
1550
|
}
|
|
1551
1551
|
.table-hover .table-info:hover {
|
|
1552
|
-
background-color:
|
|
1552
|
+
background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
|
|
1553
1553
|
}
|
|
1554
1554
|
.table-hover .table-info:hover > td,
|
|
1555
1555
|
.table-hover .table-info:hover > th {
|
|
1556
|
-
background-color:
|
|
1556
|
+
background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
|
|
1557
1557
|
}
|
|
1558
1558
|
.table-warning,
|
|
1559
1559
|
.table-warning > th,
|
|
1560
1560
|
.table-warning > td {
|
|
1561
|
-
background-color:
|
|
1561
|
+
background-color: rgb(255, 237.64, 185.56);
|
|
1562
1562
|
}
|
|
1563
1563
|
.table-warning th,
|
|
1564
1564
|
.table-warning td,
|
|
1565
1565
|
.table-warning thead th,
|
|
1566
1566
|
.table-warning tbody + tbody {
|
|
1567
|
-
border-color:
|
|
1567
|
+
border-color: rgb(255, 222.76, 126.04);
|
|
1568
1568
|
}
|
|
1569
1569
|
.table-hover .table-warning:hover {
|
|
1570
|
-
background-color:
|
|
1570
|
+
background-color: rgb(255, 231.265, 160.06);
|
|
1571
1571
|
}
|
|
1572
1572
|
.table-hover .table-warning:hover > td,
|
|
1573
1573
|
.table-hover .table-warning:hover > th {
|
|
1574
|
-
background-color:
|
|
1574
|
+
background-color: rgb(255, 231.265, 160.06);
|
|
1575
1575
|
}
|
|
1576
1576
|
.table-danger,
|
|
1577
1577
|
.table-danger > th,
|
|
1578
1578
|
.table-danger > td {
|
|
1579
|
-
background-color:
|
|
1579
|
+
background-color: rgb(251.92, 202.36, 198.72);
|
|
1580
1580
|
}
|
|
1581
1581
|
.table-danger th,
|
|
1582
1582
|
.table-danger td,
|
|
1583
1583
|
.table-danger thead th,
|
|
1584
1584
|
.table-danger tbody + tbody {
|
|
1585
|
-
border-color:
|
|
1585
|
+
border-color: rgb(249.28, 157.24, 150.48);
|
|
1586
1586
|
}
|
|
1587
1587
|
.table-hover .table-danger:hover {
|
|
1588
|
-
background-color:
|
|
1588
|
+
background-color: rgb(250.5968867925, 179.7467924528, 174.5431132075);
|
|
1589
1589
|
}
|
|
1590
1590
|
.table-hover .table-danger:hover > td,
|
|
1591
1591
|
.table-hover .table-danger:hover > th {
|
|
1592
|
-
background-color:
|
|
1592
|
+
background-color: rgb(250.5968867925, 179.7467924528, 174.5431132075);
|
|
1593
1593
|
}
|
|
1594
1594
|
.table-light,
|
|
1595
1595
|
.table-light > th,
|
|
1596
1596
|
.table-light > td {
|
|
1597
|
-
background-color:
|
|
1597
|
+
background-color: rgb(241.56, 244.08, 245.2);
|
|
1598
1598
|
}
|
|
1599
1599
|
.table-light th,
|
|
1600
1600
|
.table-light td,
|
|
1601
1601
|
.table-light thead th,
|
|
1602
1602
|
.table-light tbody + tbody {
|
|
1603
|
-
border-color:
|
|
1603
|
+
border-color: rgb(230.04, 234.72, 236.8);
|
|
1604
1604
|
}
|
|
1605
1605
|
.table-hover .table-light:hover {
|
|
1606
|
-
background-color:
|
|
1606
|
+
background-color: rgb(226.8130120482, 232.0980722892, 234.4469879518);
|
|
1607
1607
|
}
|
|
1608
1608
|
.table-hover .table-light:hover > td,
|
|
1609
1609
|
.table-hover .table-light:hover > th {
|
|
1610
|
-
background-color:
|
|
1610
|
+
background-color: rgb(226.8130120482, 232.0980722892, 234.4469879518);
|
|
1611
1611
|
}
|
|
1612
1612
|
.table-dark,
|
|
1613
1613
|
.table-dark > th,
|
|
1614
1614
|
.table-dark > td {
|
|
1615
|
-
background-color:
|
|
1615
|
+
background-color: rgb(199, 203.48, 205.72);
|
|
1616
1616
|
}
|
|
1617
1617
|
.table-dark th,
|
|
1618
1618
|
.table-dark td,
|
|
1619
1619
|
.table-dark thead th,
|
|
1620
1620
|
.table-dark tbody + tbody {
|
|
1621
|
-
border-color:
|
|
1621
|
+
border-color: rgb(151, 159.32, 163.48);
|
|
1622
1622
|
}
|
|
1623
1623
|
.table-hover .table-dark:hover {
|
|
1624
|
-
background-color:
|
|
1624
|
+
background-color: rgb(185.4361702128, 191.0012765957, 193.7838297872);
|
|
1625
1625
|
}
|
|
1626
1626
|
.table-hover .table-dark:hover > td,
|
|
1627
1627
|
.table-hover .table-dark:hover > th {
|
|
1628
|
-
background-color:
|
|
1628
|
+
background-color: rgb(185.4361702128, 191.0012765957, 193.7838297872);
|
|
1629
1629
|
}
|
|
1630
1630
|
.table-active,
|
|
1631
1631
|
.table-active > th,
|
|
@@ -1642,7 +1642,7 @@ pre code {
|
|
|
1642
1642
|
.table .thead-dark th {
|
|
1643
1643
|
color: white;
|
|
1644
1644
|
background-color: #37474f;
|
|
1645
|
-
border-color:
|
|
1645
|
+
border-color: rgb(70.6996268657, 91.2667910448, 101.5503731343);
|
|
1646
1646
|
}
|
|
1647
1647
|
.table .thead-light th {
|
|
1648
1648
|
color: #455a64;
|
|
@@ -1656,7 +1656,7 @@ pre code {
|
|
|
1656
1656
|
.table-dark th,
|
|
1657
1657
|
.table-dark td,
|
|
1658
1658
|
.table-dark thead th {
|
|
1659
|
-
border-color:
|
|
1659
|
+
border-color: rgb(70.6996268657, 91.2667910448, 101.5503731343);
|
|
1660
1660
|
}
|
|
1661
1661
|
.table-dark.table-bordered {
|
|
1662
1662
|
border: 0;
|
|
@@ -1748,7 +1748,7 @@ pre code {
|
|
|
1748
1748
|
.form-control:focus {
|
|
1749
1749
|
color: #546e7a;
|
|
1750
1750
|
background-color: #fff;
|
|
1751
|
-
border-color:
|
|
1751
|
+
border-color: rgb(78.5, 223.2985436893, 255);
|
|
1752
1752
|
outline: 0;
|
|
1753
1753
|
box-shadow: 0 0 0 0.2rem rgba(0, 169, 206, 0.25);
|
|
1754
1754
|
}
|
|
@@ -1971,8 +1971,8 @@ textarea.form-control.is-valid {
|
|
|
1971
1971
|
}
|
|
1972
1972
|
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
|
|
1973
1973
|
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
|
|
1974
|
-
border-color:
|
|
1975
|
-
background-color:
|
|
1974
|
+
border-color: rgb(109.9800796813, 192.0199203187, 113.2948207171);
|
|
1975
|
+
background-color: rgb(109.9800796813, 192.0199203187, 113.2948207171);
|
|
1976
1976
|
}
|
|
1977
1977
|
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
|
|
1978
1978
|
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
|
|
@@ -2078,8 +2078,8 @@ textarea.form-control.is-invalid {
|
|
|
2078
2078
|
}
|
|
2079
2079
|
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
|
|
2080
2080
|
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
|
|
2081
|
-
border-color:
|
|
2082
|
-
background-color:
|
|
2081
|
+
border-color: rgb(246.6462264151, 112.2264150943, 102.3537735849);
|
|
2082
|
+
background-color: rgb(246.6462264151, 112.2264150943, 102.3537735849);
|
|
2083
2083
|
}
|
|
2084
2084
|
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
|
|
2085
2085
|
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
|
|
@@ -2205,15 +2205,15 @@ fieldset:disabled a.btn {
|
|
|
2205
2205
|
}
|
|
2206
2206
|
.btn-primary:hover {
|
|
2207
2207
|
color: white;
|
|
2208
|
-
background-color:
|
|
2209
|
-
border-color:
|
|
2208
|
+
background-color: rgb(0, 137.6201456311, 167.75);
|
|
2209
|
+
border-color: rgb(0, 127.1601941748, 155);
|
|
2210
2210
|
}
|
|
2211
2211
|
.btn-primary:focus,
|
|
2212
2212
|
.btn-primary.focus {
|
|
2213
2213
|
color: white;
|
|
2214
|
-
background-color:
|
|
2215
|
-
border-color:
|
|
2216
|
-
box-shadow: 0 0 0 0.2rem rgba(38,
|
|
2214
|
+
background-color: rgb(0, 137.6201456311, 167.75);
|
|
2215
|
+
border-color: rgb(0, 127.1601941748, 155);
|
|
2216
|
+
box-shadow: 0 0 0 0.2rem rgba(38.25, 181.9, 213.35, 0.5);
|
|
2217
2217
|
}
|
|
2218
2218
|
.btn-primary.disabled,
|
|
2219
2219
|
.btn-primary:disabled {
|
|
@@ -2225,13 +2225,13 @@ fieldset:disabled a.btn {
|
|
|
2225
2225
|
.btn-primary:not(:disabled):not(.disabled).active,
|
|
2226
2226
|
.show > .btn-primary.dropdown-toggle {
|
|
2227
2227
|
color: white;
|
|
2228
|
-
background-color:
|
|
2229
|
-
border-color:
|
|
2228
|
+
background-color: rgb(0, 127.1601941748, 155);
|
|
2229
|
+
border-color: rgb(0, 116.7002427184, 142.25);
|
|
2230
2230
|
}
|
|
2231
2231
|
.btn-primary:not(:disabled):not(.disabled):active:focus,
|
|
2232
2232
|
.btn-primary:not(:disabled):not(.disabled).active:focus,
|
|
2233
2233
|
.show > .btn-primary.dropdown-toggle:focus {
|
|
2234
|
-
box-shadow: 0 0 0 0.2rem rgba(38,
|
|
2234
|
+
box-shadow: 0 0 0 0.2rem rgba(38.25, 181.9, 213.35, 0.5);
|
|
2235
2235
|
}
|
|
2236
2236
|
.btn-secondary {
|
|
2237
2237
|
color: #263238;
|
|
@@ -2240,15 +2240,15 @@ fieldset:disabled a.btn {
|
|
|
2240
2240
|
}
|
|
2241
2241
|
.btn-secondary:hover {
|
|
2242
2242
|
color: #263238;
|
|
2243
|
-
background-color:
|
|
2244
|
-
border-color:
|
|
2243
|
+
background-color: rgb(235.875, 235.875, 235.875);
|
|
2244
|
+
border-color: rgb(229.5, 229.5, 229.5);
|
|
2245
2245
|
}
|
|
2246
2246
|
.btn-secondary:focus,
|
|
2247
2247
|
.btn-secondary.focus {
|
|
2248
2248
|
color: #263238;
|
|
2249
|
-
background-color:
|
|
2250
|
-
border-color:
|
|
2251
|
-
box-shadow: 0 0 0 0.2rem rgba(222, 224, 225, 0.5);
|
|
2249
|
+
background-color: rgb(235.875, 235.875, 235.875);
|
|
2250
|
+
border-color: rgb(229.5, 229.5, 229.5);
|
|
2251
|
+
box-shadow: 0 0 0 0.2rem rgba(222.45, 224.25, 225.15, 0.5);
|
|
2252
2252
|
}
|
|
2253
2253
|
.btn-secondary.disabled,
|
|
2254
2254
|
.btn-secondary:disabled {
|
|
@@ -2260,13 +2260,13 @@ fieldset:disabled a.btn {
|
|
|
2260
2260
|
.btn-secondary:not(:disabled):not(.disabled).active,
|
|
2261
2261
|
.show > .btn-secondary.dropdown-toggle {
|
|
2262
2262
|
color: #263238;
|
|
2263
|
-
background-color:
|
|
2264
|
-
border-color:
|
|
2263
|
+
background-color: rgb(229.5, 229.5, 229.5);
|
|
2264
|
+
border-color: rgb(223.125, 223.125, 223.125);
|
|
2265
2265
|
}
|
|
2266
2266
|
.btn-secondary:not(:disabled):not(.disabled):active:focus,
|
|
2267
2267
|
.btn-secondary:not(:disabled):not(.disabled).active:focus,
|
|
2268
2268
|
.show > .btn-secondary.dropdown-toggle:focus {
|
|
2269
|
-
box-shadow: 0 0 0 0.2rem rgba(222, 224, 225, 0.5);
|
|
2269
|
+
box-shadow: 0 0 0 0.2rem rgba(222.45, 224.25, 225.15, 0.5);
|
|
2270
2270
|
}
|
|
2271
2271
|
.btn-success {
|
|
2272
2272
|
color: white;
|
|
@@ -2275,15 +2275,15 @@ fieldset:disabled a.btn {
|
|
|
2275
2275
|
}
|
|
2276
2276
|
.btn-success:hover {
|
|
2277
2277
|
color: white;
|
|
2278
|
-
background-color:
|
|
2279
|
-
border-color:
|
|
2278
|
+
background-color: rgb(64.4183266932, 148.3316733068, 67.8087649402);
|
|
2279
|
+
border-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
|
|
2280
2280
|
}
|
|
2281
2281
|
.btn-success:focus,
|
|
2282
2282
|
.btn-success.focus {
|
|
2283
2283
|
color: white;
|
|
2284
|
-
background-color:
|
|
2285
|
-
border-color:
|
|
2286
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2284
|
+
background-color: rgb(64.4183266932, 148.3316733068, 67.8087649402);
|
|
2285
|
+
border-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
|
|
2286
|
+
box-shadow: 0 0 0 0.2rem rgba(102.85, 187, 106.25, 0.5);
|
|
2287
2287
|
}
|
|
2288
2288
|
.btn-success.disabled,
|
|
2289
2289
|
.btn-success:disabled {
|
|
@@ -2295,13 +2295,13 @@ fieldset:disabled a.btn {
|
|
|
2295
2295
|
.btn-success:not(:disabled):not(.disabled).active,
|
|
2296
2296
|
.show > .btn-success.dropdown-toggle {
|
|
2297
2297
|
color: white;
|
|
2298
|
-
background-color:
|
|
2299
|
-
border-color:
|
|
2298
|
+
background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
|
|
2299
|
+
border-color: rgb(56.6972111554, 130.5527888446, 59.6812749004);
|
|
2300
2300
|
}
|
|
2301
2301
|
.btn-success:not(:disabled):not(.disabled):active:focus,
|
|
2302
2302
|
.btn-success:not(:disabled):not(.disabled).active:focus,
|
|
2303
2303
|
.show > .btn-success.dropdown-toggle:focus {
|
|
2304
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2304
|
+
box-shadow: 0 0 0 0.2rem rgba(102.85, 187, 106.25, 0.5);
|
|
2305
2305
|
}
|
|
2306
2306
|
.btn-info {
|
|
2307
2307
|
color: white;
|
|
@@ -2310,15 +2310,15 @@ fieldset:disabled a.btn {
|
|
|
2310
2310
|
}
|
|
2311
2311
|
.btn-info:hover {
|
|
2312
2312
|
color: white;
|
|
2313
|
-
background-color:
|
|
2314
|
-
border-color:
|
|
2313
|
+
background-color: rgb(18.75, 132.0652173913, 150);
|
|
2314
|
+
border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
|
|
2315
2315
|
}
|
|
2316
2316
|
.btn-info:focus,
|
|
2317
2317
|
.btn-info.focus {
|
|
2318
2318
|
color: white;
|
|
2319
|
-
background-color:
|
|
2320
|
-
border-color:
|
|
2321
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2319
|
+
background-color: rgb(18.75, 132.0652173913, 150);
|
|
2320
|
+
border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
|
|
2321
|
+
box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
|
|
2322
2322
|
}
|
|
2323
2323
|
.btn-info.disabled,
|
|
2324
2324
|
.btn-info:disabled {
|
|
@@ -2330,13 +2330,13 @@ fieldset:disabled a.btn {
|
|
|
2330
2330
|
.btn-info:not(:disabled):not(.disabled).active,
|
|
2331
2331
|
.show > .btn-info.dropdown-toggle {
|
|
2332
2332
|
color: white;
|
|
2333
|
-
background-color:
|
|
2334
|
-
border-color:
|
|
2333
|
+
background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
|
|
2334
|
+
border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
|
|
2335
2335
|
}
|
|
2336
2336
|
.btn-info:not(:disabled):not(.disabled):active:focus,
|
|
2337
2337
|
.btn-info:not(:disabled):not(.disabled).active:focus,
|
|
2338
2338
|
.show > .btn-info.dropdown-toggle:focus {
|
|
2339
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2339
|
+
box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
|
|
2340
2340
|
}
|
|
2341
2341
|
.btn-warning {
|
|
2342
2342
|
color: #263238;
|
|
@@ -2345,15 +2345,15 @@ fieldset:disabled a.btn {
|
|
|
2345
2345
|
}
|
|
2346
2346
|
.btn-warning:hover {
|
|
2347
2347
|
color: #263238;
|
|
2348
|
-
background-color:
|
|
2349
|
-
border-color:
|
|
2348
|
+
background-color: rgb(223.75, 167.8125, 0);
|
|
2349
|
+
border-color: rgb(211, 158.25, 0);
|
|
2350
2350
|
}
|
|
2351
2351
|
.btn-warning:focus,
|
|
2352
2352
|
.btn-warning.focus {
|
|
2353
2353
|
color: #263238;
|
|
2354
|
-
background-color:
|
|
2355
|
-
border-color:
|
|
2356
|
-
box-shadow: 0 0 0 0.2rem rgba(222,
|
|
2354
|
+
background-color: rgb(223.75, 167.8125, 0);
|
|
2355
|
+
border-color: rgb(211, 158.25, 0);
|
|
2356
|
+
box-shadow: 0 0 0 0.2rem rgba(222.45, 171.55, 14.35, 0.5);
|
|
2357
2357
|
}
|
|
2358
2358
|
.btn-warning.disabled,
|
|
2359
2359
|
.btn-warning:disabled {
|
|
@@ -2365,13 +2365,13 @@ fieldset:disabled a.btn {
|
|
|
2365
2365
|
.btn-warning:not(:disabled):not(.disabled).active,
|
|
2366
2366
|
.show > .btn-warning.dropdown-toggle {
|
|
2367
2367
|
color: #263238;
|
|
2368
|
-
background-color:
|
|
2369
|
-
border-color:
|
|
2368
|
+
background-color: rgb(211, 158.25, 0);
|
|
2369
|
+
border-color: rgb(198.25, 148.6875, 0);
|
|
2370
2370
|
}
|
|
2371
2371
|
.btn-warning:not(:disabled):not(.disabled):active:focus,
|
|
2372
2372
|
.btn-warning:not(:disabled):not(.disabled).active:focus,
|
|
2373
2373
|
.show > .btn-warning.dropdown-toggle:focus {
|
|
2374
|
-
box-shadow: 0 0 0 0.2rem rgba(222,
|
|
2374
|
+
box-shadow: 0 0 0 0.2rem rgba(222.45, 171.55, 14.35, 0.5);
|
|
2375
2375
|
}
|
|
2376
2376
|
.btn-danger {
|
|
2377
2377
|
color: white;
|
|
@@ -2380,15 +2380,15 @@ fieldset:disabled a.btn {
|
|
|
2380
2380
|
}
|
|
2381
2381
|
.btn-danger:hover {
|
|
2382
2382
|
color: white;
|
|
2383
|
-
background-color:
|
|
2384
|
-
border-color:
|
|
2383
|
+
background-color: rgb(242.0153301887, 33.0801886792, 17.7346698113);
|
|
2384
|
+
border-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
|
|
2385
2385
|
}
|
|
2386
2386
|
.btn-danger:focus,
|
|
2387
2387
|
.btn-danger.focus {
|
|
2388
2388
|
color: white;
|
|
2389
|
-
background-color:
|
|
2390
|
-
border-color:
|
|
2391
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2389
|
+
background-color: rgb(242.0153301887, 33.0801886792, 17.7346698113);
|
|
2390
|
+
border-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
|
|
2391
|
+
box-shadow: 0 0 0 0.2rem rgba(245.65, 95.2, 84.15, 0.5);
|
|
2392
2392
|
}
|
|
2393
2393
|
.btn-danger.disabled,
|
|
2394
2394
|
.btn-danger:disabled {
|
|
@@ -2400,13 +2400,13 @@ fieldset:disabled a.btn {
|
|
|
2400
2400
|
.btn-danger:not(:disabled):not(.disabled).active,
|
|
2401
2401
|
.show > .btn-danger.dropdown-toggle {
|
|
2402
2402
|
color: white;
|
|
2403
|
-
background-color:
|
|
2404
|
-
border-color:
|
|
2403
|
+
background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
|
|
2404
|
+
border-color: rgb(222.0955188679, 26.5188679245, 12.1544811321);
|
|
2405
2405
|
}
|
|
2406
2406
|
.btn-danger:not(:disabled):not(.disabled):active:focus,
|
|
2407
2407
|
.btn-danger:not(:disabled):not(.disabled).active:focus,
|
|
2408
2408
|
.show > .btn-danger.dropdown-toggle:focus {
|
|
2409
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2409
|
+
box-shadow: 0 0 0 0.2rem rgba(245.65, 95.2, 84.15, 0.5);
|
|
2410
2410
|
}
|
|
2411
2411
|
.btn-light {
|
|
2412
2412
|
color: #263238;
|
|
@@ -2415,15 +2415,15 @@ fieldset:disabled a.btn {
|
|
|
2415
2415
|
}
|
|
2416
2416
|
.btn-light:hover {
|
|
2417
2417
|
color: #263238;
|
|
2418
|
-
background-color:
|
|
2419
|
-
border-color:
|
|
2418
|
+
background-color: rgb(184.8795180723, 198.0271084337, 203.8704819277);
|
|
2419
|
+
border-color: rgb(177.5060240964, 192.0361445783, 198.4939759036);
|
|
2420
2420
|
}
|
|
2421
2421
|
.btn-light:focus,
|
|
2422
2422
|
.btn-light.focus {
|
|
2423
2423
|
color: #263238;
|
|
2424
|
-
background-color:
|
|
2425
|
-
border-color:
|
|
2426
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2424
|
+
background-color: rgb(184.8795180723, 198.0271084337, 203.8704819277);
|
|
2425
|
+
border-color: rgb(177.5060240964, 192.0361445783, 198.4939759036);
|
|
2426
|
+
box-shadow: 0 0 0 0.2rem rgba(181.65, 191.1, 195.4, 0.5);
|
|
2427
2427
|
}
|
|
2428
2428
|
.btn-light.disabled,
|
|
2429
2429
|
.btn-light:disabled {
|
|
@@ -2435,13 +2435,13 @@ fieldset:disabled a.btn {
|
|
|
2435
2435
|
.btn-light:not(:disabled):not(.disabled).active,
|
|
2436
2436
|
.show > .btn-light.dropdown-toggle {
|
|
2437
2437
|
color: #263238;
|
|
2438
|
-
background-color:
|
|
2439
|
-
border-color:
|
|
2438
|
+
background-color: rgb(177.5060240964, 192.0361445783, 198.4939759036);
|
|
2439
|
+
border-color: rgb(170.1325301205, 186.0451807229, 193.1174698795);
|
|
2440
2440
|
}
|
|
2441
2441
|
.btn-light:not(:disabled):not(.disabled):active:focus,
|
|
2442
2442
|
.btn-light:not(:disabled):not(.disabled).active:focus,
|
|
2443
2443
|
.show > .btn-light.dropdown-toggle:focus {
|
|
2444
|
-
box-shadow: 0 0 0 0.2rem rgba(
|
|
2444
|
+
box-shadow: 0 0 0 0.2rem rgba(181.65, 191.1, 195.4, 0.5);
|
|
2445
2445
|
}
|
|
2446
2446
|
.btn-dark {
|
|
2447
2447
|
color: white;
|
|
@@ -2450,15 +2450,15 @@ fieldset:disabled a.btn {
|
|
|
2450
2450
|
}
|
|
2451
2451
|
.btn-dark:hover {
|
|
2452
2452
|
color: white;
|
|
2453
|
-
background-color:
|
|
2454
|
-
border-color:
|
|
2453
|
+
background-color: rgb(39.3003731343, 50.7332089552, 56.4496268657);
|
|
2454
|
+
border-color: rgb(34.0671641791, 43.9776119403, 48.9328358209);
|
|
2455
2455
|
}
|
|
2456
2456
|
.btn-dark:focus,
|
|
2457
2457
|
.btn-dark.focus {
|
|
2458
2458
|
color: white;
|
|
2459
|
-
background-color:
|
|
2460
|
-
border-color:
|
|
2461
|
-
box-shadow: 0 0 0 0.2rem rgba(85,
|
|
2459
|
+
background-color: rgb(39.3003731343, 50.7332089552, 56.4496268657);
|
|
2460
|
+
border-color: rgb(34.0671641791, 43.9776119403, 48.9328358209);
|
|
2461
|
+
box-shadow: 0 0 0 0.2rem rgba(85, 98.6, 105.4, 0.5);
|
|
2462
2462
|
}
|
|
2463
2463
|
.btn-dark.disabled,
|
|
2464
2464
|
.btn-dark:disabled {
|
|
@@ -2470,13 +2470,13 @@ fieldset:disabled a.btn {
|
|
|
2470
2470
|
.btn-dark:not(:disabled):not(.disabled).active,
|
|
2471
2471
|
.show > .btn-dark.dropdown-toggle {
|
|
2472
2472
|
color: white;
|
|
2473
|
-
background-color:
|
|
2474
|
-
border-color:
|
|
2473
|
+
background-color: rgb(34.0671641791, 43.9776119403, 48.9328358209);
|
|
2474
|
+
border-color: rgb(28.8339552239, 37.2220149254, 41.4160447761);
|
|
2475
2475
|
}
|
|
2476
2476
|
.btn-dark:not(:disabled):not(.disabled):active:focus,
|
|
2477
2477
|
.btn-dark:not(:disabled):not(.disabled).active:focus,
|
|
2478
2478
|
.show > .btn-dark.dropdown-toggle:focus {
|
|
2479
|
-
box-shadow: 0 0 0 0.2rem rgba(85,
|
|
2479
|
+
box-shadow: 0 0 0 0.2rem rgba(85, 98.6, 105.4, 0.5);
|
|
2480
2480
|
}
|
|
2481
2481
|
.btn-outline-primary {
|
|
2482
2482
|
color: #00a9ce;
|
|
@@ -2724,7 +2724,7 @@ fieldset:disabled a.btn {
|
|
|
2724
2724
|
text-decoration: none;
|
|
2725
2725
|
}
|
|
2726
2726
|
.btn-link:hover {
|
|
2727
|
-
color:
|
|
2727
|
+
color: rgb(0, 152.1, 185.4);
|
|
2728
2728
|
text-decoration: underline;
|
|
2729
2729
|
}
|
|
2730
2730
|
.btn-link:focus,
|
|
@@ -3323,12 +3323,12 @@ input[type=button].btn-block {
|
|
|
3323
3323
|
box-shadow: 0 0 0 0.2rem rgba(0, 169, 206, 0.25);
|
|
3324
3324
|
}
|
|
3325
3325
|
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
|
|
3326
|
-
border-color:
|
|
3326
|
+
border-color: rgb(78.5, 223.2985436893, 255);
|
|
3327
3327
|
}
|
|
3328
3328
|
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
|
|
3329
3329
|
color: #fff;
|
|
3330
|
-
background-color:
|
|
3331
|
-
border-color:
|
|
3330
|
+
background-color: rgb(129.5, 232.4587378641, 255);
|
|
3331
|
+
border-color: rgb(129.5, 232.4587378641, 255);
|
|
3332
3332
|
}
|
|
3333
3333
|
.custom-control-input[disabled] ~ .custom-control-label,
|
|
3334
3334
|
.custom-control-input:disabled ~ .custom-control-label {
|
|
@@ -3443,7 +3443,7 @@ input[type=button].btn-block {
|
|
|
3443
3443
|
appearance: none;
|
|
3444
3444
|
}
|
|
3445
3445
|
.custom-select:focus {
|
|
3446
|
-
border-color:
|
|
3446
|
+
border-color: rgb(78.5, 223.2985436893, 255);
|
|
3447
3447
|
outline: 0;
|
|
3448
3448
|
box-shadow: 0 0 0 0.2rem rgba(0, 169, 206, 0.25);
|
|
3449
3449
|
}
|
|
@@ -3499,7 +3499,7 @@ input[type=button].btn-block {
|
|
|
3499
3499
|
opacity: 0;
|
|
3500
3500
|
}
|
|
3501
3501
|
.custom-file-input:focus ~ .custom-file-label {
|
|
3502
|
-
border-color:
|
|
3502
|
+
border-color: rgb(78.5, 223.2985436893, 255);
|
|
3503
3503
|
box-shadow: 0 0 0 0.2rem rgba(0, 169, 206, 0.25);
|
|
3504
3504
|
}
|
|
3505
3505
|
.custom-file-input[disabled] ~ .custom-file-label,
|
|
@@ -3577,15 +3577,17 @@ input[type=button].btn-block {
|
|
|
3577
3577
|
background-color 0.15s ease-in-out,
|
|
3578
3578
|
border-color 0.15s ease-in-out,
|
|
3579
3579
|
box-shadow 0.15s ease-in-out;
|
|
3580
|
-
appearance: none;
|
|
3581
3580
|
}
|
|
3582
3581
|
@media (prefers-reduced-motion: reduce) {
|
|
3583
3582
|
.custom-range::-webkit-slider-thumb {
|
|
3584
3583
|
transition: none;
|
|
3585
3584
|
}
|
|
3586
3585
|
}
|
|
3586
|
+
.custom-range::-webkit-slider-thumb {
|
|
3587
|
+
appearance: none;
|
|
3588
|
+
}
|
|
3587
3589
|
.custom-range::-webkit-slider-thumb:active {
|
|
3588
|
-
background-color:
|
|
3590
|
+
background-color: rgb(129.5, 232.4587378641, 255);
|
|
3589
3591
|
}
|
|
3590
3592
|
.custom-range::-webkit-slider-runnable-track {
|
|
3591
3593
|
width: 100%;
|
|
@@ -3606,15 +3608,17 @@ input[type=button].btn-block {
|
|
|
3606
3608
|
background-color 0.15s ease-in-out,
|
|
3607
3609
|
border-color 0.15s ease-in-out,
|
|
3608
3610
|
box-shadow 0.15s ease-in-out;
|
|
3609
|
-
appearance: none;
|
|
3610
3611
|
}
|
|
3611
3612
|
@media (prefers-reduced-motion: reduce) {
|
|
3612
3613
|
.custom-range::-moz-range-thumb {
|
|
3613
3614
|
transition: none;
|
|
3614
3615
|
}
|
|
3615
3616
|
}
|
|
3617
|
+
.custom-range::-moz-range-thumb {
|
|
3618
|
+
appearance: none;
|
|
3619
|
+
}
|
|
3616
3620
|
.custom-range::-moz-range-thumb:active {
|
|
3617
|
-
background-color:
|
|
3621
|
+
background-color: rgb(129.5, 232.4587378641, 255);
|
|
3618
3622
|
}
|
|
3619
3623
|
.custom-range::-moz-range-track {
|
|
3620
3624
|
width: 100%;
|
|
@@ -3638,15 +3642,17 @@ input[type=button].btn-block {
|
|
|
3638
3642
|
background-color 0.15s ease-in-out,
|
|
3639
3643
|
border-color 0.15s ease-in-out,
|
|
3640
3644
|
box-shadow 0.15s ease-in-out;
|
|
3641
|
-
appearance: none;
|
|
3642
3645
|
}
|
|
3643
3646
|
@media (prefers-reduced-motion: reduce) {
|
|
3644
3647
|
.custom-range::-ms-thumb {
|
|
3645
3648
|
transition: none;
|
|
3646
3649
|
}
|
|
3647
3650
|
}
|
|
3651
|
+
.custom-range::-ms-thumb {
|
|
3652
|
+
appearance: none;
|
|
3653
|
+
}
|
|
3648
3654
|
.custom-range::-ms-thumb:active {
|
|
3649
|
-
background-color:
|
|
3655
|
+
background-color: rgb(129.5, 232.4587378641, 255);
|
|
3650
3656
|
}
|
|
3651
3657
|
.custom-range::-ms-track {
|
|
3652
3658
|
width: 100%;
|
|
@@ -4035,10 +4041,6 @@ input[type=button].btn-block {
|
|
|
4035
4041
|
display: none;
|
|
4036
4042
|
}
|
|
4037
4043
|
}
|
|
4038
|
-
.navbar-expand {
|
|
4039
|
-
flex-flow: row nowrap;
|
|
4040
|
-
justify-content: flex-start;
|
|
4041
|
-
}
|
|
4042
4044
|
.navbar-expand > .container,
|
|
4043
4045
|
.navbar-expand > .container-fluid,
|
|
4044
4046
|
.navbar-expand > .container-sm,
|
|
@@ -4048,6 +4050,10 @@ input[type=button].btn-block {
|
|
|
4048
4050
|
padding-right: 0;
|
|
4049
4051
|
padding-left: 0;
|
|
4050
4052
|
}
|
|
4053
|
+
.navbar-expand {
|
|
4054
|
+
flex-flow: row nowrap;
|
|
4055
|
+
justify-content: flex-start;
|
|
4056
|
+
}
|
|
4051
4057
|
.navbar-expand .navbar-nav {
|
|
4052
4058
|
flex-direction: row;
|
|
4053
4059
|
}
|
|
@@ -4399,7 +4405,7 @@ input[type=button].btn-block {
|
|
|
4399
4405
|
}
|
|
4400
4406
|
.page-link:hover {
|
|
4401
4407
|
z-index: 2;
|
|
4402
|
-
color:
|
|
4408
|
+
color: rgb(0, 152.1, 185.4);
|
|
4403
4409
|
text-decoration: none;
|
|
4404
4410
|
background-color: #eceff1;
|
|
4405
4411
|
border-color: #90a4ae;
|
|
@@ -4501,7 +4507,7 @@ a.badge:focus {
|
|
|
4501
4507
|
a.badge-primary:hover,
|
|
4502
4508
|
a.badge-primary:focus {
|
|
4503
4509
|
color: white;
|
|
4504
|
-
background-color:
|
|
4510
|
+
background-color: rgb(0, 127.1601941748, 155);
|
|
4505
4511
|
}
|
|
4506
4512
|
a.badge-primary:focus,
|
|
4507
4513
|
a.badge-primary.focus {
|
|
@@ -4515,7 +4521,7 @@ a.badge-primary.focus {
|
|
|
4515
4521
|
a.badge-secondary:hover,
|
|
4516
4522
|
a.badge-secondary:focus {
|
|
4517
4523
|
color: #263238;
|
|
4518
|
-
background-color:
|
|
4524
|
+
background-color: rgb(229.5, 229.5, 229.5);
|
|
4519
4525
|
}
|
|
4520
4526
|
a.badge-secondary:focus,
|
|
4521
4527
|
a.badge-secondary.focus {
|
|
@@ -4529,7 +4535,7 @@ a.badge-secondary.focus {
|
|
|
4529
4535
|
a.badge-success:hover,
|
|
4530
4536
|
a.badge-success:focus {
|
|
4531
4537
|
color: white;
|
|
4532
|
-
background-color:
|
|
4538
|
+
background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
|
|
4533
4539
|
}
|
|
4534
4540
|
a.badge-success:focus,
|
|
4535
4541
|
a.badge-success.focus {
|
|
@@ -4543,7 +4549,7 @@ a.badge-success.focus {
|
|
|
4543
4549
|
a.badge-info:hover,
|
|
4544
4550
|
a.badge-info:focus {
|
|
4545
4551
|
color: white;
|
|
4546
|
-
background-color:
|
|
4552
|
+
background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
|
|
4547
4553
|
}
|
|
4548
4554
|
a.badge-info:focus,
|
|
4549
4555
|
a.badge-info.focus {
|
|
@@ -4557,7 +4563,7 @@ a.badge-info.focus {
|
|
|
4557
4563
|
a.badge-warning:hover,
|
|
4558
4564
|
a.badge-warning:focus {
|
|
4559
4565
|
color: #263238;
|
|
4560
|
-
background-color:
|
|
4566
|
+
background-color: rgb(211, 158.25, 0);
|
|
4561
4567
|
}
|
|
4562
4568
|
a.badge-warning:focus,
|
|
4563
4569
|
a.badge-warning.focus {
|
|
@@ -4571,7 +4577,7 @@ a.badge-warning.focus {
|
|
|
4571
4577
|
a.badge-danger:hover,
|
|
4572
4578
|
a.badge-danger:focus {
|
|
4573
4579
|
color: white;
|
|
4574
|
-
background-color:
|
|
4580
|
+
background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358);
|
|
4575
4581
|
}
|
|
4576
4582
|
a.badge-danger:focus,
|
|
4577
4583
|
a.badge-danger.focus {
|
|
@@ -4585,7 +4591,7 @@ a.badge-danger.focus {
|
|
|
4585
4591
|
a.badge-light:hover,
|
|
4586
4592
|
a.badge-light:focus {
|
|
4587
4593
|
color: #263238;
|
|
4588
|
-
background-color:
|
|
4594
|
+
background-color: rgb(177.5060240964, 192.0361445783, 198.4939759036);
|
|
4589
4595
|
}
|
|
4590
4596
|
a.badge-light:focus,
|
|
4591
4597
|
a.badge-light.focus {
|
|
@@ -4599,7 +4605,7 @@ a.badge-light.focus {
|
|
|
4599
4605
|
a.badge-dark:hover,
|
|
4600
4606
|
a.badge-dark:focus {
|
|
4601
4607
|
color: white;
|
|
4602
|
-
background-color:
|
|
4608
|
+
background-color: rgb(34.0671641791, 43.9776119403, 48.9328358209);
|
|
4603
4609
|
}
|
|
4604
4610
|
a.badge-dark:focus,
|
|
4605
4611
|
a.badge-dark.focus {
|
|
@@ -4648,92 +4654,92 @@ a.badge-dark.focus {
|
|
|
4648
4654
|
color: inherit;
|
|
4649
4655
|
}
|
|
4650
4656
|
.alert-primary {
|
|
4651
|
-
color:
|
|
4652
|
-
background-color:
|
|
4653
|
-
border-color:
|
|
4657
|
+
color: rgb(0, 87.88, 107.12);
|
|
4658
|
+
background-color: rgb(204, 237.8, 245.2);
|
|
4659
|
+
border-color: rgb(183.6, 230.92, 241.28);
|
|
4654
4660
|
}
|
|
4655
4661
|
.alert-primary hr {
|
|
4656
|
-
border-top-color:
|
|
4662
|
+
border-top-color: rgb(162.2101973684, 223.7061842105, 237.1698026316);
|
|
4657
4663
|
}
|
|
4658
4664
|
.alert-primary .alert-link {
|
|
4659
|
-
color:
|
|
4665
|
+
color: rgb(0, 46.0401941748, 56.12);
|
|
4660
4666
|
}
|
|
4661
4667
|
.alert-secondary {
|
|
4662
|
-
color:
|
|
4668
|
+
color: rgb(132.6, 132.6, 132.6);
|
|
4663
4669
|
background-color: white;
|
|
4664
4670
|
border-color: white;
|
|
4665
4671
|
}
|
|
4666
4672
|
.alert-secondary hr {
|
|
4667
|
-
border-top-color:
|
|
4673
|
+
border-top-color: rgb(242.25, 242.25, 242.25);
|
|
4668
4674
|
}
|
|
4669
4675
|
.alert-secondary .alert-link {
|
|
4670
|
-
color:
|
|
4676
|
+
color: rgb(107.1, 107.1, 107.1);
|
|
4671
4677
|
}
|
|
4672
4678
|
.alert-success {
|
|
4673
|
-
color:
|
|
4674
|
-
background-color:
|
|
4675
|
-
border-color:
|
|
4679
|
+
color: rgb(39.52, 91, 41.6);
|
|
4680
|
+
background-color: rgb(219.2, 239, 220);
|
|
4681
|
+
border-color: rgb(204.88, 232.6, 206);
|
|
4676
4682
|
}
|
|
4677
4683
|
.alert-success hr {
|
|
4678
|
-
border-top-color:
|
|
4684
|
+
border-top-color: rgb(187.2564478764, 224.7235521236, 188.7702702703);
|
|
4679
4685
|
}
|
|
4680
4686
|
.alert-success .alert-link {
|
|
4681
|
-
color:
|
|
4687
|
+
color: rgb(24.0777689243, 55.4422310757, 25.3450199203);
|
|
4682
4688
|
}
|
|
4683
4689
|
.alert-info {
|
|
4684
|
-
color:
|
|
4685
|
-
background-color:
|
|
4686
|
-
border-color:
|
|
4690
|
+
color: rgb(11.96, 84.24, 95.68);
|
|
4691
|
+
background-color: rgb(208.6, 236.4, 240.8);
|
|
4692
|
+
border-color: rgb(190.04, 228.96, 235.12);
|
|
4687
4693
|
}
|
|
4688
4694
|
.alert-info hr {
|
|
4689
|
-
border-top-color:
|
|
4695
|
+
border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
|
|
4690
4696
|
}
|
|
4691
4697
|
.alert-info .alert-link {
|
|
4692
|
-
color:
|
|
4698
|
+
color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
|
|
4693
4699
|
}
|
|
4694
4700
|
.alert-warning {
|
|
4695
|
-
color:
|
|
4696
|
-
background-color:
|
|
4697
|
-
border-color:
|
|
4701
|
+
color: rgb(132.6, 100.36, 3.64);
|
|
4702
|
+
background-color: rgb(255, 242.6, 205.4);
|
|
4703
|
+
border-color: rgb(255, 237.64, 185.56);
|
|
4698
4704
|
}
|
|
4699
4705
|
.alert-warning hr {
|
|
4700
|
-
border-top-color:
|
|
4706
|
+
border-top-color: rgb(255, 231.265, 160.06);
|
|
4701
4707
|
}
|
|
4702
4708
|
.alert-warning .alert-link {
|
|
4703
|
-
color:
|
|
4709
|
+
color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
|
|
4704
4710
|
}
|
|
4705
4711
|
.alert-danger {
|
|
4706
|
-
color:
|
|
4707
|
-
background-color:
|
|
4708
|
-
border-color:
|
|
4712
|
+
color: rgb(126.88, 34.84, 28.08);
|
|
4713
|
+
background-color: rgb(252.8, 217.4, 214.8);
|
|
4714
|
+
border-color: rgb(251.92, 202.36, 198.72);
|
|
4709
4715
|
}
|
|
4710
4716
|
.alert-danger hr {
|
|
4711
|
-
border-top-color:
|
|
4717
|
+
border-top-color: rgb(250.5968867925, 179.7467924528, 174.5431132075);
|
|
4712
4718
|
}
|
|
4713
4719
|
.alert-danger .alert-link {
|
|
4714
|
-
color:
|
|
4720
|
+
color: rgb(85.1216107383, 23.373557047, 18.8383892617);
|
|
4715
4721
|
}
|
|
4716
4722
|
.alert-light {
|
|
4717
|
-
color:
|
|
4718
|
-
background-color:
|
|
4719
|
-
border-color:
|
|
4723
|
+
color: rgb(107.64, 112.32, 114.4);
|
|
4724
|
+
background-color: rgb(245.4, 247.2, 248);
|
|
4725
|
+
border-color: rgb(241.56, 244.08, 245.2);
|
|
4720
4726
|
}
|
|
4721
4727
|
.alert-light hr {
|
|
4722
|
-
border-top-color:
|
|
4728
|
+
border-top-color: rgb(226.8130120482, 232.0980722892, 234.4469879518);
|
|
4723
4729
|
}
|
|
4724
4730
|
.alert-light .alert-link {
|
|
4725
|
-
color:
|
|
4731
|
+
color: rgb(82.9163466042, 86.5214051522, 88.1236533958);
|
|
4726
4732
|
}
|
|
4727
4733
|
.alert-dark {
|
|
4728
|
-
color:
|
|
4729
|
-
background-color:
|
|
4730
|
-
border-color:
|
|
4734
|
+
color: rgb(28.6, 36.92, 41.08);
|
|
4735
|
+
background-color: rgb(215, 218.2, 219.8);
|
|
4736
|
+
border-color: rgb(199, 203.48, 205.72);
|
|
4731
4737
|
}
|
|
4732
4738
|
.alert-dark hr {
|
|
4733
|
-
border-top-color:
|
|
4739
|
+
border-top-color: rgb(185.4361702128, 191.0012765957, 193.7838297872);
|
|
4734
4740
|
}
|
|
4735
4741
|
.alert-dark .alert-link {
|
|
4736
|
-
color:
|
|
4742
|
+
color: rgb(7.6671641791, 9.8976119403, 11.0128358209);
|
|
4737
4743
|
}
|
|
4738
4744
|
@keyframes progress-bar-stripes {
|
|
4739
4745
|
from {
|
|
@@ -4769,7 +4775,16 @@ a.badge-dark.focus {
|
|
|
4769
4775
|
}
|
|
4770
4776
|
}
|
|
4771
4777
|
.progress-bar-striped {
|
|
4772
|
-
background-image:
|
|
4778
|
+
background-image:
|
|
4779
|
+
linear-gradient(
|
|
4780
|
+
45deg,
|
|
4781
|
+
rgba(255, 255, 255, 0.15) 25%,
|
|
4782
|
+
transparent 25%,
|
|
4783
|
+
transparent 50%,
|
|
4784
|
+
rgba(255, 255, 255, 0.15) 50%,
|
|
4785
|
+
rgba(255, 255, 255, 0.15) 75%,
|
|
4786
|
+
transparent 75%,
|
|
4787
|
+
transparent);
|
|
4773
4788
|
background-size: 1rem 1rem;
|
|
4774
4789
|
}
|
|
4775
4790
|
.progress-bar-animated {
|
|
@@ -4972,116 +4987,116 @@ a.badge-dark.focus {
|
|
|
4972
4987
|
border-bottom-width: 0;
|
|
4973
4988
|
}
|
|
4974
4989
|
.list-group-item-primary {
|
|
4975
|
-
color:
|
|
4976
|
-
background-color:
|
|
4990
|
+
color: rgb(0, 87.88, 107.12);
|
|
4991
|
+
background-color: rgb(183.6, 230.92, 241.28);
|
|
4977
4992
|
}
|
|
4978
4993
|
.list-group-item-primary.list-group-item-action:hover,
|
|
4979
4994
|
.list-group-item-primary.list-group-item-action:focus {
|
|
4980
|
-
color:
|
|
4981
|
-
background-color:
|
|
4995
|
+
color: rgb(0, 87.88, 107.12);
|
|
4996
|
+
background-color: rgb(162.2101973684, 223.7061842105, 237.1698026316);
|
|
4982
4997
|
}
|
|
4983
4998
|
.list-group-item-primary.list-group-item-action.active {
|
|
4984
4999
|
color: white;
|
|
4985
|
-
background-color:
|
|
4986
|
-
border-color:
|
|
5000
|
+
background-color: rgb(0, 87.88, 107.12);
|
|
5001
|
+
border-color: rgb(0, 87.88, 107.12);
|
|
4987
5002
|
}
|
|
4988
5003
|
.list-group-item-secondary {
|
|
4989
|
-
color:
|
|
5004
|
+
color: rgb(132.6, 132.6, 132.6);
|
|
4990
5005
|
background-color: white;
|
|
4991
5006
|
}
|
|
4992
5007
|
.list-group-item-secondary.list-group-item-action:hover,
|
|
4993
5008
|
.list-group-item-secondary.list-group-item-action:focus {
|
|
4994
|
-
color:
|
|
4995
|
-
background-color:
|
|
5009
|
+
color: rgb(132.6, 132.6, 132.6);
|
|
5010
|
+
background-color: rgb(242.25, 242.25, 242.25);
|
|
4996
5011
|
}
|
|
4997
5012
|
.list-group-item-secondary.list-group-item-action.active {
|
|
4998
5013
|
color: white;
|
|
4999
|
-
background-color:
|
|
5000
|
-
border-color:
|
|
5014
|
+
background-color: rgb(132.6, 132.6, 132.6);
|
|
5015
|
+
border-color: rgb(132.6, 132.6, 132.6);
|
|
5001
5016
|
}
|
|
5002
5017
|
.list-group-item-success {
|
|
5003
|
-
color:
|
|
5004
|
-
background-color:
|
|
5018
|
+
color: rgb(39.52, 91, 41.6);
|
|
5019
|
+
background-color: rgb(204.88, 232.6, 206);
|
|
5005
5020
|
}
|
|
5006
5021
|
.list-group-item-success.list-group-item-action:hover,
|
|
5007
5022
|
.list-group-item-success.list-group-item-action:focus {
|
|
5008
|
-
color:
|
|
5009
|
-
background-color:
|
|
5023
|
+
color: rgb(39.52, 91, 41.6);
|
|
5024
|
+
background-color: rgb(187.2564478764, 224.7235521236, 188.7702702703);
|
|
5010
5025
|
}
|
|
5011
5026
|
.list-group-item-success.list-group-item-action.active {
|
|
5012
5027
|
color: white;
|
|
5013
|
-
background-color:
|
|
5014
|
-
border-color:
|
|
5028
|
+
background-color: rgb(39.52, 91, 41.6);
|
|
5029
|
+
border-color: rgb(39.52, 91, 41.6);
|
|
5015
5030
|
}
|
|
5016
5031
|
.list-group-item-info {
|
|
5017
|
-
color:
|
|
5018
|
-
background-color:
|
|
5032
|
+
color: rgb(11.96, 84.24, 95.68);
|
|
5033
|
+
background-color: rgb(190.04, 228.96, 235.12);
|
|
5019
5034
|
}
|
|
5020
5035
|
.list-group-item-info.list-group-item-action:hover,
|
|
5021
5036
|
.list-group-item-info.list-group-item-action:focus {
|
|
5022
|
-
color:
|
|
5023
|
-
background-color:
|
|
5037
|
+
color: rgb(11.96, 84.24, 95.68);
|
|
5038
|
+
background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
|
|
5024
5039
|
}
|
|
5025
5040
|
.list-group-item-info.list-group-item-action.active {
|
|
5026
5041
|
color: white;
|
|
5027
|
-
background-color:
|
|
5028
|
-
border-color:
|
|
5042
|
+
background-color: rgb(11.96, 84.24, 95.68);
|
|
5043
|
+
border-color: rgb(11.96, 84.24, 95.68);
|
|
5029
5044
|
}
|
|
5030
5045
|
.list-group-item-warning {
|
|
5031
|
-
color:
|
|
5032
|
-
background-color:
|
|
5046
|
+
color: rgb(132.6, 100.36, 3.64);
|
|
5047
|
+
background-color: rgb(255, 237.64, 185.56);
|
|
5033
5048
|
}
|
|
5034
5049
|
.list-group-item-warning.list-group-item-action:hover,
|
|
5035
5050
|
.list-group-item-warning.list-group-item-action:focus {
|
|
5036
|
-
color:
|
|
5037
|
-
background-color:
|
|
5051
|
+
color: rgb(132.6, 100.36, 3.64);
|
|
5052
|
+
background-color: rgb(255, 231.265, 160.06);
|
|
5038
5053
|
}
|
|
5039
5054
|
.list-group-item-warning.list-group-item-action.active {
|
|
5040
5055
|
color: white;
|
|
5041
|
-
background-color:
|
|
5042
|
-
border-color:
|
|
5056
|
+
background-color: rgb(132.6, 100.36, 3.64);
|
|
5057
|
+
border-color: rgb(132.6, 100.36, 3.64);
|
|
5043
5058
|
}
|
|
5044
5059
|
.list-group-item-danger {
|
|
5045
|
-
color:
|
|
5046
|
-
background-color:
|
|
5060
|
+
color: rgb(126.88, 34.84, 28.08);
|
|
5061
|
+
background-color: rgb(251.92, 202.36, 198.72);
|
|
5047
5062
|
}
|
|
5048
5063
|
.list-group-item-danger.list-group-item-action:hover,
|
|
5049
5064
|
.list-group-item-danger.list-group-item-action:focus {
|
|
5050
|
-
color:
|
|
5051
|
-
background-color:
|
|
5065
|
+
color: rgb(126.88, 34.84, 28.08);
|
|
5066
|
+
background-color: rgb(250.5968867925, 179.7467924528, 174.5431132075);
|
|
5052
5067
|
}
|
|
5053
5068
|
.list-group-item-danger.list-group-item-action.active {
|
|
5054
5069
|
color: white;
|
|
5055
|
-
background-color:
|
|
5056
|
-
border-color:
|
|
5070
|
+
background-color: rgb(126.88, 34.84, 28.08);
|
|
5071
|
+
border-color: rgb(126.88, 34.84, 28.08);
|
|
5057
5072
|
}
|
|
5058
5073
|
.list-group-item-light {
|
|
5059
|
-
color:
|
|
5060
|
-
background-color:
|
|
5074
|
+
color: rgb(107.64, 112.32, 114.4);
|
|
5075
|
+
background-color: rgb(241.56, 244.08, 245.2);
|
|
5061
5076
|
}
|
|
5062
5077
|
.list-group-item-light.list-group-item-action:hover,
|
|
5063
5078
|
.list-group-item-light.list-group-item-action:focus {
|
|
5064
|
-
color:
|
|
5065
|
-
background-color:
|
|
5079
|
+
color: rgb(107.64, 112.32, 114.4);
|
|
5080
|
+
background-color: rgb(226.8130120482, 232.0980722892, 234.4469879518);
|
|
5066
5081
|
}
|
|
5067
5082
|
.list-group-item-light.list-group-item-action.active {
|
|
5068
5083
|
color: white;
|
|
5069
|
-
background-color:
|
|
5070
|
-
border-color:
|
|
5084
|
+
background-color: rgb(107.64, 112.32, 114.4);
|
|
5085
|
+
border-color: rgb(107.64, 112.32, 114.4);
|
|
5071
5086
|
}
|
|
5072
5087
|
.list-group-item-dark {
|
|
5073
|
-
color:
|
|
5074
|
-
background-color:
|
|
5088
|
+
color: rgb(28.6, 36.92, 41.08);
|
|
5089
|
+
background-color: rgb(199, 203.48, 205.72);
|
|
5075
5090
|
}
|
|
5076
5091
|
.list-group-item-dark.list-group-item-action:hover,
|
|
5077
5092
|
.list-group-item-dark.list-group-item-action:focus {
|
|
5078
|
-
color:
|
|
5079
|
-
background-color:
|
|
5093
|
+
color: rgb(28.6, 36.92, 41.08);
|
|
5094
|
+
background-color: rgb(185.4361702128, 191.0012765957, 193.7838297872);
|
|
5080
5095
|
}
|
|
5081
5096
|
.list-group-item-dark.list-group-item-action.active {
|
|
5082
5097
|
color: white;
|
|
5083
|
-
background-color:
|
|
5084
|
-
border-color:
|
|
5098
|
+
background-color: rgb(28.6, 36.92, 41.08);
|
|
5099
|
+
border-color: rgb(28.6, 36.92, 41.08);
|
|
5085
5100
|
}
|
|
5086
5101
|
.close {
|
|
5087
5102
|
float: right;
|
|
@@ -5172,13 +5187,15 @@ a.close.disabled {
|
|
|
5172
5187
|
}
|
|
5173
5188
|
.modal.fade .modal-dialog {
|
|
5174
5189
|
transition: transform 0.3s ease-out;
|
|
5175
|
-
transform: translate(0, -50px);
|
|
5176
5190
|
}
|
|
5177
5191
|
@media (prefers-reduced-motion: reduce) {
|
|
5178
5192
|
.modal.fade .modal-dialog {
|
|
5179
5193
|
transition: none;
|
|
5180
5194
|
}
|
|
5181
5195
|
}
|
|
5196
|
+
.modal.fade .modal-dialog {
|
|
5197
|
+
transform: translate(0, -50px);
|
|
5198
|
+
}
|
|
5182
5199
|
.modal.show .modal-dialog {
|
|
5183
5200
|
transform: none;
|
|
5184
5201
|
}
|
|
@@ -5545,7 +5562,7 @@ a.close.disabled {
|
|
|
5545
5562
|
width: 10px;
|
|
5546
5563
|
margin-left: -5px;
|
|
5547
5564
|
content: "";
|
|
5548
|
-
border-bottom: 1px solid
|
|
5565
|
+
border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
|
|
5549
5566
|
}
|
|
5550
5567
|
.bs-popover-left,
|
|
5551
5568
|
.bs-popover-auto[x-placement^=left] {
|
|
@@ -5575,8 +5592,8 @@ a.close.disabled {
|
|
|
5575
5592
|
margin-bottom: 0;
|
|
5576
5593
|
font-size: 0.875rem;
|
|
5577
5594
|
color: inherit;
|
|
5578
|
-
background-color:
|
|
5579
|
-
border-bottom: 1px solid
|
|
5595
|
+
background-color: rgb(247.35, 247.35, 247.35);
|
|
5596
|
+
border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
|
|
5580
5597
|
border-top-left-radius: calc(0.3rem - 1px);
|
|
5581
5598
|
border-top-right-radius: calc(0.3rem - 1px);
|
|
5582
5599
|
}
|
|
@@ -5827,7 +5844,7 @@ a.bg-primary:hover,
|
|
|
5827
5844
|
a.bg-primary:focus,
|
|
5828
5845
|
button.bg-primary:hover,
|
|
5829
5846
|
button.bg-primary:focus {
|
|
5830
|
-
background-color:
|
|
5847
|
+
background-color: rgb(0, 127.1601941748, 155) !important;
|
|
5831
5848
|
}
|
|
5832
5849
|
.bg-secondary {
|
|
5833
5850
|
background-color: white !important;
|
|
@@ -5836,7 +5853,7 @@ a.bg-secondary:hover,
|
|
|
5836
5853
|
a.bg-secondary:focus,
|
|
5837
5854
|
button.bg-secondary:hover,
|
|
5838
5855
|
button.bg-secondary:focus {
|
|
5839
|
-
background-color:
|
|
5856
|
+
background-color: rgb(229.5, 229.5, 229.5) !important;
|
|
5840
5857
|
}
|
|
5841
5858
|
.bg-success {
|
|
5842
5859
|
background-color: #4caf50 !important;
|
|
@@ -5845,7 +5862,7 @@ a.bg-success:hover,
|
|
|
5845
5862
|
a.bg-success:focus,
|
|
5846
5863
|
button.bg-success:hover,
|
|
5847
5864
|
button.bg-success:focus {
|
|
5848
|
-
background-color:
|
|
5865
|
+
background-color: rgb(60.5577689243, 139.4422310757, 63.7450199203) !important;
|
|
5849
5866
|
}
|
|
5850
5867
|
.bg-info {
|
|
5851
5868
|
background-color: #17a2b8 !important;
|
|
@@ -5854,7 +5871,7 @@ a.bg-info:hover,
|
|
|
5854
5871
|
a.bg-info:focus,
|
|
5855
5872
|
button.bg-info:hover,
|
|
5856
5873
|
button.bg-info:focus {
|
|
5857
|
-
background-color:
|
|
5874
|
+
background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
|
|
5858
5875
|
}
|
|
5859
5876
|
.bg-warning {
|
|
5860
5877
|
background-color: #ffc107 !important;
|
|
@@ -5863,7 +5880,7 @@ a.bg-warning:hover,
|
|
|
5863
5880
|
a.bg-warning:focus,
|
|
5864
5881
|
button.bg-warning:hover,
|
|
5865
5882
|
button.bg-warning:focus {
|
|
5866
|
-
background-color:
|
|
5883
|
+
background-color: rgb(211, 158.25, 0) !important;
|
|
5867
5884
|
}
|
|
5868
5885
|
.bg-danger {
|
|
5869
5886
|
background-color: #f44336 !important;
|
|
@@ -5872,7 +5889,7 @@ a.bg-danger:hover,
|
|
|
5872
5889
|
a.bg-danger:focus,
|
|
5873
5890
|
button.bg-danger:hover,
|
|
5874
5891
|
button.bg-danger:focus {
|
|
5875
|
-
background-color:
|
|
5892
|
+
background-color: rgb(234.1839622642, 27.9622641509, 12.8160377358) !important;
|
|
5876
5893
|
}
|
|
5877
5894
|
.bg-light {
|
|
5878
5895
|
background-color: #cfd8dc !important;
|
|
@@ -5881,7 +5898,7 @@ a.bg-light:hover,
|
|
|
5881
5898
|
a.bg-light:focus,
|
|
5882
5899
|
button.bg-light:hover,
|
|
5883
5900
|
button.bg-light:focus {
|
|
5884
|
-
background-color:
|
|
5901
|
+
background-color: rgb(177.5060240964, 192.0361445783, 198.4939759036) !important;
|
|
5885
5902
|
}
|
|
5886
5903
|
.bg-dark {
|
|
5887
5904
|
background-color: #37474f !important;
|
|
@@ -5890,7 +5907,7 @@ a.bg-dark:hover,
|
|
|
5890
5907
|
a.bg-dark:focus,
|
|
5891
5908
|
button.bg-dark:hover,
|
|
5892
5909
|
button.bg-dark:focus {
|
|
5893
|
-
background-color:
|
|
5910
|
+
background-color: rgb(34.0671641791, 43.9776119403, 48.9328358209) !important;
|
|
5894
5911
|
}
|
|
5895
5912
|
.bg-white {
|
|
5896
5913
|
background-color: white !important;
|
|
@@ -8743,56 +8760,56 @@ button.bg-dark:focus {
|
|
|
8743
8760
|
}
|
|
8744
8761
|
a.text-primary:hover,
|
|
8745
8762
|
a.text-primary:focus {
|
|
8746
|
-
color:
|
|
8763
|
+
color: rgb(0, 106.2402912621, 129.5) !important;
|
|
8747
8764
|
}
|
|
8748
8765
|
.text-secondary {
|
|
8749
8766
|
color: white !important;
|
|
8750
8767
|
}
|
|
8751
8768
|
a.text-secondary:hover,
|
|
8752
8769
|
a.text-secondary:focus {
|
|
8753
|
-
color:
|
|
8770
|
+
color: rgb(216.75, 216.75, 216.75) !important;
|
|
8754
8771
|
}
|
|
8755
8772
|
.text-success {
|
|
8756
8773
|
color: #4caf50 !important;
|
|
8757
8774
|
}
|
|
8758
8775
|
a.text-success:hover,
|
|
8759
8776
|
a.text-success:focus {
|
|
8760
|
-
color:
|
|
8777
|
+
color: rgb(52.8366533865, 121.6633466135, 55.6175298805) !important;
|
|
8761
8778
|
}
|
|
8762
8779
|
.text-info {
|
|
8763
8780
|
color: #17a2b8 !important;
|
|
8764
8781
|
}
|
|
8765
8782
|
a.text-info:hover,
|
|
8766
8783
|
a.text-info:focus {
|
|
8767
|
-
color:
|
|
8784
|
+
color: rgb(14.5, 102.1304347826, 116) !important;
|
|
8768
8785
|
}
|
|
8769
8786
|
.text-warning {
|
|
8770
8787
|
color: #ffc107 !important;
|
|
8771
8788
|
}
|
|
8772
8789
|
a.text-warning:hover,
|
|
8773
8790
|
a.text-warning:focus {
|
|
8774
|
-
color:
|
|
8791
|
+
color: rgb(185.5, 139.125, 0) !important;
|
|
8775
8792
|
}
|
|
8776
8793
|
.text-danger {
|
|
8777
8794
|
color: #f44336 !important;
|
|
8778
8795
|
}
|
|
8779
8796
|
a.text-danger:hover,
|
|
8780
8797
|
a.text-danger:focus {
|
|
8781
|
-
color:
|
|
8798
|
+
color: rgb(210.0070754717, 25.0754716981, 11.4929245283) !important;
|
|
8782
8799
|
}
|
|
8783
8800
|
.text-light {
|
|
8784
8801
|
color: #cfd8dc !important;
|
|
8785
8802
|
}
|
|
8786
8803
|
a.text-light:hover,
|
|
8787
8804
|
a.text-light:focus {
|
|
8788
|
-
color:
|
|
8805
|
+
color: rgb(162.7590361446, 180.0542168675, 187.7409638554) !important;
|
|
8789
8806
|
}
|
|
8790
8807
|
.text-dark {
|
|
8791
8808
|
color: #37474f !important;
|
|
8792
8809
|
}
|
|
8793
8810
|
a.text-dark:hover,
|
|
8794
8811
|
a.text-dark:focus {
|
|
8795
|
-
color:
|
|
8812
|
+
color: rgb(23.6007462687, 30.4664179104, 33.8992537313) !important;
|
|
8796
8813
|
}
|
|
8797
8814
|
.text-body {
|
|
8798
8815
|
color: #263238 !important;
|