@clayui/css 3.42.0 → 3.44.2
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/lib/css/atlas.css +405 -172
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +382 -151
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +234 -116
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/date-time.svg +12 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/date-time.svg +12 -0
- package/src/scss/atlas/variables/_buttons.scss +2 -31
- package/src/scss/atlas/variables/_navs.scss +20 -15
- package/src/scss/cadmin/components/_dropdowns.scss +4 -0
- package/src/scss/cadmin/components/_input-groups.scss +12 -312
- package/src/scss/cadmin/components/_navs.scss +35 -113
- package/src/scss/cadmin/components/_utilities-functional-important.scss +4 -3
- package/src/scss/cadmin/variables/_alerts.scss +3 -2
- package/src/scss/cadmin/variables/_dropdowns.scss +31 -2
- package/src/scss/cadmin/variables/_forms.scss +366 -5
- package/src/scss/cadmin/variables/_navs.scss +271 -53
- package/src/scss/components/_buttons.scss +87 -49
- package/src/scss/components/_cards.scss +16 -116
- package/src/scss/components/_dropdowns.scss +4 -0
- package/src/scss/components/_input-groups.scss +12 -308
- package/src/scss/components/_navs.scss +45 -128
- package/src/scss/functions/_lx-icons-generated.scss +2 -0
- package/src/scss/mixins/_buttons.scss +27 -64
- package/src/scss/mixins/_cards.scss +751 -557
- package/src/scss/mixins/_custom-forms.scss +404 -383
- package/src/scss/mixins/_dropdown-menu.scss +427 -355
- package/src/scss/mixins/_forms.scss +67 -10
- package/src/scss/mixins/_input-groups.scss +405 -11
- package/src/scss/mixins/_labels.scss +320 -296
- package/src/scss/mixins/_nav.scss +202 -131
- package/src/scss/mixins/_navbar.scss +32 -0
- package/src/scss/variables/_alerts.scss +1 -0
- package/src/scss/variables/_buttons.scss +26 -3
- package/src/scss/variables/_cards.scss +273 -1
- package/src/scss/variables/_dropdowns.scss +31 -2
- package/src/scss/variables/_forms.scss +405 -22
- package/src/scss/variables/_navs.scss +266 -33
package/lib/css/base.css
CHANGED
|
@@ -1331,10 +1331,6 @@ input[type=button].btn-block {
|
|
|
1331
1331
|
padding: 0;
|
|
1332
1332
|
width: 100%;
|
|
1333
1333
|
}
|
|
1334
|
-
.btn-monospaced.btn .lexicon-icon {
|
|
1335
|
-
margin-top: 0;
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
1334
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1339
1335
|
height: 3rem;
|
|
1340
1336
|
width: 3rem;
|
|
@@ -1382,6 +1378,12 @@ input[type=button].btn-block {
|
|
|
1382
1378
|
border-color: #005cbf;
|
|
1383
1379
|
color: #fff;
|
|
1384
1380
|
}
|
|
1381
|
+
.form-file-input:focus + .btn-primary {
|
|
1382
|
+
background-color: #0069d9;
|
|
1383
|
+
border-color: #0062cc;
|
|
1384
|
+
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
1385
|
+
color: #fff;
|
|
1386
|
+
}
|
|
1385
1387
|
.btn-secondary {
|
|
1386
1388
|
background-color: #6c757d;
|
|
1387
1389
|
border-color: #6c757d;
|
|
@@ -1421,6 +1423,12 @@ input[type=button].btn-block {
|
|
|
1421
1423
|
border-color: #4e555b;
|
|
1422
1424
|
color: #fff;
|
|
1423
1425
|
}
|
|
1426
|
+
.form-file-input:focus + .btn-secondary {
|
|
1427
|
+
background-color: #5a6268;
|
|
1428
|
+
border-color: #545b62;
|
|
1429
|
+
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
1430
|
+
color: #fff;
|
|
1431
|
+
}
|
|
1424
1432
|
.btn-success {
|
|
1425
1433
|
background-color: #28a745;
|
|
1426
1434
|
border-color: #28a745;
|
|
@@ -1460,6 +1468,12 @@ input[type=button].btn-block {
|
|
|
1460
1468
|
border-color: #1c7430;
|
|
1461
1469
|
color: #fff;
|
|
1462
1470
|
}
|
|
1471
|
+
.form-file-input:focus + .btn-success {
|
|
1472
|
+
background-color: #218838;
|
|
1473
|
+
border-color: #1e7e34;
|
|
1474
|
+
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
1475
|
+
color: #fff;
|
|
1476
|
+
}
|
|
1463
1477
|
.btn-info {
|
|
1464
1478
|
background-color: #17a2b8;
|
|
1465
1479
|
border-color: #17a2b8;
|
|
@@ -1538,6 +1552,12 @@ input[type=button].btn-block {
|
|
|
1538
1552
|
border-color: #c69500;
|
|
1539
1553
|
color: #212529;
|
|
1540
1554
|
}
|
|
1555
|
+
.form-file-input:focus + .btn-warning {
|
|
1556
|
+
background-color: #e0a800;
|
|
1557
|
+
border-color: #d39e00;
|
|
1558
|
+
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
1559
|
+
color: #212529;
|
|
1560
|
+
}
|
|
1541
1561
|
.btn-danger {
|
|
1542
1562
|
background-color: #dc3545;
|
|
1543
1563
|
border-color: #dc3545;
|
|
@@ -1577,6 +1597,12 @@ input[type=button].btn-block {
|
|
|
1577
1597
|
border-color: #b21f2d;
|
|
1578
1598
|
color: #fff;
|
|
1579
1599
|
}
|
|
1600
|
+
.form-file-input:focus + .btn-danger {
|
|
1601
|
+
background-color: #c82333;
|
|
1602
|
+
border-color: #bd2130;
|
|
1603
|
+
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
1604
|
+
color: #fff;
|
|
1605
|
+
}
|
|
1580
1606
|
.btn-light {
|
|
1581
1607
|
background-color: #f8f9fa;
|
|
1582
1608
|
border-color: #f8f9fa;
|
|
@@ -1616,6 +1642,12 @@ input[type=button].btn-block {
|
|
|
1616
1642
|
border-color: #d3d9df;
|
|
1617
1643
|
color: #212529;
|
|
1618
1644
|
}
|
|
1645
|
+
.form-file-input:focus + .btn-light {
|
|
1646
|
+
background-color: #e2e6ea;
|
|
1647
|
+
border-color: #dae0e5;
|
|
1648
|
+
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
|
|
1649
|
+
color: #212529;
|
|
1650
|
+
}
|
|
1619
1651
|
.btn-dark {
|
|
1620
1652
|
background-color: #343a40;
|
|
1621
1653
|
border-color: #343a40;
|
|
@@ -1655,6 +1687,12 @@ input[type=button].btn-block {
|
|
|
1655
1687
|
border-color: #171a1d;
|
|
1656
1688
|
color: #fff;
|
|
1657
1689
|
}
|
|
1690
|
+
.form-file-input:focus + .btn-dark {
|
|
1691
|
+
background-color: #23272b;
|
|
1692
|
+
border-color: #1d2124;
|
|
1693
|
+
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
|
|
1694
|
+
color: #fff;
|
|
1695
|
+
}
|
|
1658
1696
|
.btn-link {
|
|
1659
1697
|
border-radius: 1px;
|
|
1660
1698
|
color: #007bff;
|
|
@@ -3263,6 +3301,7 @@ input[type=button].btn-block {
|
|
|
3263
3301
|
margin-bottom: 1rem;
|
|
3264
3302
|
padding: 0.75rem 1.25rem;
|
|
3265
3303
|
position: relative;
|
|
3304
|
+
white-space: normal;
|
|
3266
3305
|
overflow-wrap: break-word;
|
|
3267
3306
|
word-wrap: break-word;
|
|
3268
3307
|
}
|
|
@@ -5567,31 +5606,22 @@ input[type=button].btn-block {
|
|
|
5567
5606
|
margin-top: 0;
|
|
5568
5607
|
padding-left: 0;
|
|
5569
5608
|
}
|
|
5570
|
-
.form-check-card .card {
|
|
5571
|
-
|
|
5572
|
-
}
|
|
5573
|
-
.form-check-card .custom-control {
|
|
5574
|
-
display: inline;
|
|
5575
|
-
margin-right: 0;
|
|
5576
|
-
position: static;
|
|
5577
|
-
}
|
|
5578
|
-
.form-check-card .custom-control > label {
|
|
5579
|
-
font-weight: 400;
|
|
5580
|
-
padding-left: 0;
|
|
5609
|
+
.form-check-card:hover .card {
|
|
5610
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5581
5611
|
}
|
|
5582
|
-
.form-check-card .
|
|
5583
|
-
|
|
5612
|
+
.form-check-card.active .card {
|
|
5613
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5584
5614
|
}
|
|
5585
|
-
.form-check-card .
|
|
5586
|
-
|
|
5587
|
-
z-index: 1;
|
|
5615
|
+
.form-check-card.checked .card {
|
|
5616
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5588
5617
|
}
|
|
5589
|
-
.form-check-card .
|
|
5590
|
-
|
|
5618
|
+
.form-check-card .card {
|
|
5619
|
+
margin-bottom: 0;
|
|
5591
5620
|
}
|
|
5592
5621
|
.form-check-card .form-check-input {
|
|
5593
5622
|
margin-left: 0;
|
|
5594
5623
|
margin-top: 0;
|
|
5624
|
+
opacity: 0;
|
|
5595
5625
|
position: absolute;
|
|
5596
5626
|
z-index: 1;
|
|
5597
5627
|
}
|
|
@@ -5602,21 +5632,35 @@ input[type=button].btn-block {
|
|
|
5602
5632
|
padding-left: 0;
|
|
5603
5633
|
position: static;
|
|
5604
5634
|
}
|
|
5605
|
-
.form-check-card.
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5635
|
+
.form-check-card .custom-control {
|
|
5636
|
+
display: inline;
|
|
5637
|
+
margin-right: 0;
|
|
5638
|
+
position: static;
|
|
5609
5639
|
}
|
|
5610
|
-
|
|
5611
|
-
|
|
5640
|
+
.form-check-card .custom-control label {
|
|
5641
|
+
font-weight: 400;
|
|
5642
|
+
padding-left: 0;
|
|
5643
|
+
}
|
|
5644
|
+
.form-check-card .custom-control .custom-control-label {
|
|
5645
|
+
opacity: 0;
|
|
5646
|
+
position: absolute;
|
|
5647
|
+
z-index: 1;
|
|
5648
|
+
}
|
|
5649
|
+
.form-check-card .custom-control .custom-control-label::before {
|
|
5650
|
+
top: 0;
|
|
5651
|
+
}
|
|
5652
|
+
.form-check-card .custom-control .custom-control-label::after {
|
|
5653
|
+
top: 0;
|
|
5654
|
+
}
|
|
5655
|
+
.form-check-card .custom-control .custom-control-input {
|
|
5656
|
+
z-index: 2;
|
|
5657
|
+
}
|
|
5658
|
+
.form-check-card .custom-control .custom-control-input:checked ~ .card {
|
|
5612
5659
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5613
5660
|
}
|
|
5614
|
-
|
|
5615
|
-
.custom-control-input:hover ~ .card,
|
|
5616
|
-
.form-check-input:hover ~ .card {
|
|
5661
|
+
.form-check-card .form-check-input:checked ~ .card {
|
|
5617
5662
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
5618
5663
|
}
|
|
5619
|
-
|
|
5620
5664
|
.form-check-bottom-left .card-horizontal > .card-body,
|
|
5621
5665
|
.form-check-middle-left .card-horizontal > .card-body,
|
|
5622
5666
|
.form-check-top-left .card-horizontal > .card-body {
|
|
@@ -5629,61 +5673,129 @@ input[type=button].btn-block {
|
|
|
5629
5673
|
padding-right: 40px;
|
|
5630
5674
|
}
|
|
5631
5675
|
|
|
5632
|
-
.form-check-bottom-left .custom-control-input,
|
|
5633
|
-
.form-check-bottom-left .custom-control-label,
|
|
5634
5676
|
.form-check-bottom-left .form-check-input {
|
|
5677
|
+
bottom: 1rem;
|
|
5678
|
+
left: 1rem;
|
|
5679
|
+
opacity: 1;
|
|
5680
|
+
top: auto;
|
|
5681
|
+
transform: none;
|
|
5682
|
+
}
|
|
5683
|
+
.form-check-bottom-left .custom-control .custom-control-label {
|
|
5684
|
+
bottom: 1rem;
|
|
5685
|
+
left: 1rem;
|
|
5686
|
+
opacity: 1;
|
|
5687
|
+
top: auto;
|
|
5688
|
+
transform: none;
|
|
5689
|
+
}
|
|
5690
|
+
.form-check-bottom-left .custom-control .custom-control-input {
|
|
5635
5691
|
bottom: 1rem;
|
|
5636
5692
|
left: 1rem;
|
|
5637
5693
|
top: auto;
|
|
5638
5694
|
transform: none;
|
|
5639
5695
|
}
|
|
5640
|
-
|
|
5641
|
-
.form-check-bottom-right .custom-control-input,
|
|
5642
|
-
.form-check-bottom-right .custom-control-label,
|
|
5643
5696
|
.form-check-bottom-right .form-check-input {
|
|
5697
|
+
bottom: 1rem;
|
|
5698
|
+
left: auto;
|
|
5699
|
+
opacity: 1;
|
|
5700
|
+
right: 1rem;
|
|
5701
|
+
top: auto;
|
|
5702
|
+
transform: none;
|
|
5703
|
+
}
|
|
5704
|
+
.form-check-bottom-right .custom-control .custom-control-label {
|
|
5705
|
+
bottom: 1rem;
|
|
5706
|
+
left: auto;
|
|
5707
|
+
opacity: 1;
|
|
5708
|
+
right: 1rem;
|
|
5709
|
+
top: auto;
|
|
5710
|
+
transform: none;
|
|
5711
|
+
}
|
|
5712
|
+
.form-check-bottom-right .custom-control .custom-control-input {
|
|
5644
5713
|
bottom: 1rem;
|
|
5645
5714
|
left: auto;
|
|
5646
5715
|
right: 1rem;
|
|
5647
5716
|
top: auto;
|
|
5648
5717
|
transform: none;
|
|
5649
5718
|
}
|
|
5650
|
-
|
|
5651
|
-
.form-check-middle-left .custom-control-input,
|
|
5652
|
-
.form-check-middle-left .custom-control-label,
|
|
5653
5719
|
.form-check-middle-left .form-check-input {
|
|
5720
|
+
left: 1rem;
|
|
5721
|
+
margin-top: 0;
|
|
5722
|
+
opacity: 1;
|
|
5723
|
+
top: 50%;
|
|
5724
|
+
transform: translateY(-50%);
|
|
5725
|
+
}
|
|
5726
|
+
.form-check-middle-left .custom-control .custom-control-label {
|
|
5727
|
+
left: 1rem;
|
|
5728
|
+
margin-top: 0;
|
|
5729
|
+
opacity: 1;
|
|
5730
|
+
top: 50%;
|
|
5731
|
+
transform: translateY(-50%);
|
|
5732
|
+
}
|
|
5733
|
+
.form-check-middle-left .custom-control .custom-control-input {
|
|
5654
5734
|
left: 1rem;
|
|
5655
5735
|
margin-top: 0;
|
|
5656
5736
|
top: 50%;
|
|
5657
5737
|
transform: translateY(-50%);
|
|
5658
5738
|
}
|
|
5659
|
-
|
|
5660
|
-
.form-check-middle-right .custom-control-input,
|
|
5661
|
-
.form-check-middle-right .custom-control-label,
|
|
5662
5739
|
.form-check-middle-right .form-check-input {
|
|
5740
|
+
left: auto;
|
|
5741
|
+
margin-top: 0;
|
|
5742
|
+
opacity: 1;
|
|
5743
|
+
right: 1rem;
|
|
5744
|
+
top: 50%;
|
|
5745
|
+
transform: translateY(-50%);
|
|
5746
|
+
}
|
|
5747
|
+
.form-check-middle-right .custom-control .custom-control-label {
|
|
5748
|
+
left: auto;
|
|
5749
|
+
margin-top: 0;
|
|
5750
|
+
opacity: 1;
|
|
5751
|
+
right: 1rem;
|
|
5752
|
+
top: 50%;
|
|
5753
|
+
transform: translateY(-50%);
|
|
5754
|
+
}
|
|
5755
|
+
.form-check-middle-right .custom-control .custom-control-input {
|
|
5663
5756
|
left: auto;
|
|
5664
5757
|
margin-top: 0;
|
|
5665
5758
|
right: 1rem;
|
|
5666
5759
|
top: 50%;
|
|
5667
5760
|
transform: translateY(-50%);
|
|
5668
5761
|
}
|
|
5669
|
-
|
|
5670
|
-
.form-check-top-left .custom-control-input,
|
|
5671
|
-
.form-check-top-left .custom-control-label,
|
|
5672
5762
|
.form-check-top-left .form-check-input {
|
|
5763
|
+
left: 1rem;
|
|
5764
|
+
opacity: 1;
|
|
5765
|
+
top: 1rem;
|
|
5766
|
+
transform: none;
|
|
5767
|
+
}
|
|
5768
|
+
.form-check-top-left .custom-control .custom-control-label {
|
|
5769
|
+
left: 1rem;
|
|
5770
|
+
opacity: 1;
|
|
5771
|
+
top: 1rem;
|
|
5772
|
+
transform: none;
|
|
5773
|
+
}
|
|
5774
|
+
.form-check-top-left .custom-control .custom-control-input {
|
|
5673
5775
|
left: 1rem;
|
|
5674
5776
|
top: 1rem;
|
|
5675
5777
|
transform: none;
|
|
5676
5778
|
}
|
|
5677
|
-
|
|
5678
|
-
.form-check-top-right .custom-control-input,
|
|
5679
|
-
.form-check-top-right .custom-control-label,
|
|
5680
5779
|
.form-check-top-right .form-check-input {
|
|
5780
|
+
left: auto;
|
|
5781
|
+
opacity: 1;
|
|
5782
|
+
right: 1rem;
|
|
5783
|
+
top: 1rem;
|
|
5784
|
+
transform: none;
|
|
5785
|
+
}
|
|
5786
|
+
.form-check-top-right .custom-control .custom-control-label {
|
|
5787
|
+
left: auto;
|
|
5788
|
+
opacity: 1;
|
|
5789
|
+
right: 1rem;
|
|
5790
|
+
top: 1rem;
|
|
5791
|
+
transform: none;
|
|
5792
|
+
}
|
|
5793
|
+
.form-check-top-right .custom-control .custom-control-input {
|
|
5681
5794
|
left: auto;
|
|
5682
5795
|
right: 1rem;
|
|
5683
5796
|
top: 1rem;
|
|
5684
5797
|
transform: none;
|
|
5685
5798
|
}
|
|
5686
|
-
|
|
5687
5799
|
.card-page.card-page-equal-height .card-page-item,
|
|
5688
5800
|
.card-page.card-page-equal-height .card-page-item-asset,
|
|
5689
5801
|
.card-page.card-page-equal-height .card-page-item-directory {
|
|
@@ -6081,7 +6193,6 @@ input[type=button].btn-block {
|
|
|
6081
6193
|
position: relative;
|
|
6082
6194
|
text-align: inherit;
|
|
6083
6195
|
transition: none;
|
|
6084
|
-
white-space: normal;
|
|
6085
6196
|
width: 100%;
|
|
6086
6197
|
overflow-wrap: break-word;
|
|
6087
6198
|
word-wrap: break-word;
|
|
@@ -6145,6 +6256,23 @@ input[type=button].btn-block {
|
|
|
6145
6256
|
margin-top: -0.25rem;
|
|
6146
6257
|
width: auto;
|
|
6147
6258
|
}
|
|
6259
|
+
.dropdown-item.autofit-row {
|
|
6260
|
+
padding-left: 1rem;
|
|
6261
|
+
padding-right: 1rem;
|
|
6262
|
+
}
|
|
6263
|
+
.dropdown-item.autofit-row > .autofit-col {
|
|
6264
|
+
padding-left: 0.25rem;
|
|
6265
|
+
padding-right: 0.25rem;
|
|
6266
|
+
}
|
|
6267
|
+
.dropdown-item .autofit-row {
|
|
6268
|
+
margin-left: 0.25rem;
|
|
6269
|
+
margin-right: 0.25rem;
|
|
6270
|
+
width: auto;
|
|
6271
|
+
}
|
|
6272
|
+
.dropdown-item .autofit-row > .autofit-col {
|
|
6273
|
+
padding-left: 0.25rem;
|
|
6274
|
+
padding-right: 0.25rem;
|
|
6275
|
+
}
|
|
6148
6276
|
.dropdown-item .c-kbd-inline {
|
|
6149
6277
|
line-height: 1.5rem;
|
|
6150
6278
|
}
|
|
@@ -6608,6 +6736,10 @@ input[type=button].btn-block {
|
|
|
6608
6736
|
}
|
|
6609
6737
|
}
|
|
6610
6738
|
|
|
6739
|
+
.dropdown-menu-width-shrink {
|
|
6740
|
+
min-width: 0;
|
|
6741
|
+
white-space: nowrap;
|
|
6742
|
+
}
|
|
6611
6743
|
.dropdown-menu-width-full {
|
|
6612
6744
|
left: 12px !important;
|
|
6613
6745
|
right: 12px !important;
|
|
@@ -8866,7 +8998,6 @@ label.custom-control-label {
|
|
|
8866
8998
|
padding-right: 0.25rem;
|
|
8867
8999
|
background-color: transparent;
|
|
8868
9000
|
}
|
|
8869
|
-
|
|
8870
9001
|
.date-picker-dropdown-menu {
|
|
8871
9002
|
max-height: none;
|
|
8872
9003
|
max-width: 370px;
|
|
@@ -9631,15 +9762,36 @@ label.custom-control-label {
|
|
|
9631
9762
|
.input-group .btn-unstyled {
|
|
9632
9763
|
color: inherit;
|
|
9633
9764
|
}
|
|
9634
|
-
|
|
9635
9765
|
.input-group-item {
|
|
9636
9766
|
display: flex;
|
|
9637
9767
|
flex-grow: 1;
|
|
9638
9768
|
flex-wrap: wrap;
|
|
9639
9769
|
margin-left: 0.5rem;
|
|
9640
9770
|
width: 1%;
|
|
9771
|
+
overflow-wrap: break-word;
|
|
9641
9772
|
word-wrap: break-word;
|
|
9642
9773
|
}
|
|
9774
|
+
.input-group-item.focus {
|
|
9775
|
+
border-radius: 0.25rem;
|
|
9776
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
9777
|
+
}
|
|
9778
|
+
.input-group-item.focus.input-group-prepend {
|
|
9779
|
+
border-bottom-right-radius: 0;
|
|
9780
|
+
border-top-right-radius: 0;
|
|
9781
|
+
z-index: 1;
|
|
9782
|
+
}
|
|
9783
|
+
.input-group-item.focus.input-group-append {
|
|
9784
|
+
border-bottom-left-radius: 0;
|
|
9785
|
+
border-top-left-radius: 0;
|
|
9786
|
+
}
|
|
9787
|
+
.input-group-item.focus > .form-control {
|
|
9788
|
+
background-color: #fff;
|
|
9789
|
+
border-color: #80bdff;
|
|
9790
|
+
}
|
|
9791
|
+
.input-group-item.focus > .input-group-inset-item {
|
|
9792
|
+
background-color: #fff;
|
|
9793
|
+
border-color: #80bdff;
|
|
9794
|
+
}
|
|
9643
9795
|
.input-group-item:first-child {
|
|
9644
9796
|
margin-left: 0;
|
|
9645
9797
|
}
|
|
@@ -9649,25 +9801,24 @@ label.custom-control-label {
|
|
|
9649
9801
|
.input-group-item > .dropdown {
|
|
9650
9802
|
display: flex;
|
|
9651
9803
|
flex-wrap: wrap;
|
|
9804
|
+
overflow-wrap: break-word;
|
|
9652
9805
|
word-wrap: break-word;
|
|
9653
9806
|
width: 100%;
|
|
9654
9807
|
}
|
|
9655
|
-
|
|
9656
9808
|
.input-group-item-shrink {
|
|
9657
9809
|
flex-grow: 0;
|
|
9658
9810
|
width: auto;
|
|
9659
9811
|
}
|
|
9660
|
-
|
|
9661
9812
|
.input-group-text {
|
|
9662
9813
|
align-items: center;
|
|
9663
9814
|
background-color: #e9ecef;
|
|
9664
|
-
border-color: #ced4da;
|
|
9665
|
-
border-style: solid;
|
|
9666
9815
|
border-bottom-width: 0.0625rem;
|
|
9816
|
+
border-color: #ced4da;
|
|
9667
9817
|
border-left-width: 0.0625rem;
|
|
9818
|
+
border-radius: 0.25rem;
|
|
9668
9819
|
border-right-width: 0.0625rem;
|
|
9820
|
+
border-style: solid;
|
|
9669
9821
|
border-top-width: 0.0625rem;
|
|
9670
|
-
border-radius: 0.25rem;
|
|
9671
9822
|
color: #495057;
|
|
9672
9823
|
display: flex;
|
|
9673
9824
|
font-size: 1rem;
|
|
@@ -9687,18 +9838,19 @@ label.custom-control-label {
|
|
|
9687
9838
|
.input-group-text label {
|
|
9688
9839
|
color: #495057;
|
|
9689
9840
|
}
|
|
9690
|
-
.input-group-text
|
|
9691
|
-
|
|
9692
|
-
margin-top: 0;
|
|
9841
|
+
.input-group-text .custom-control {
|
|
9842
|
+
margin-bottom: 0;
|
|
9693
9843
|
}
|
|
9694
|
-
.input-group-text .custom-control,
|
|
9695
9844
|
.input-group-text .form-check {
|
|
9696
9845
|
margin-bottom: 0;
|
|
9697
9846
|
}
|
|
9847
|
+
.input-group-text .form-check input[type=radio],
|
|
9848
|
+
.input-group-text .form-check input[type=checkbox] {
|
|
9849
|
+
margin-top: 0;
|
|
9850
|
+
}
|
|
9698
9851
|
.input-group-text .lexicon-icon {
|
|
9699
9852
|
margin-top: 0;
|
|
9700
9853
|
}
|
|
9701
|
-
|
|
9702
9854
|
.input-group-text-secondary {
|
|
9703
9855
|
background-color: #6c757d;
|
|
9704
9856
|
border-color: #6c757d;
|
|
@@ -9709,7 +9861,6 @@ label.custom-control-label {
|
|
|
9709
9861
|
.input-group-text-secondary label {
|
|
9710
9862
|
color: #fff;
|
|
9711
9863
|
}
|
|
9712
|
-
|
|
9713
9864
|
@media (max-width: 575.98px) {
|
|
9714
9865
|
.input-group-stacked-sm-down > .input-group-item {
|
|
9715
9866
|
margin-bottom: 0.5rem;
|
|
@@ -9724,6 +9875,17 @@ label.custom-control-label {
|
|
|
9724
9875
|
|
|
9725
9876
|
.input-group-lg > .input-group-item > .btn {
|
|
9726
9877
|
font-size: 1.25rem;
|
|
9878
|
+
line-height: 1.5;
|
|
9879
|
+
padding-bottom: 0.5rem;
|
|
9880
|
+
padding-left: 1rem;
|
|
9881
|
+
padding-right: 1rem;
|
|
9882
|
+
padding-top: 0.5rem;
|
|
9883
|
+
}
|
|
9884
|
+
.input-group-lg > .input-group-item > .btn .c-inner {
|
|
9885
|
+
margin-bottom: -0.5rem;
|
|
9886
|
+
margin-left: -1rem;
|
|
9887
|
+
margin-right: -1rem;
|
|
9888
|
+
margin-top: -0.5rem;
|
|
9727
9889
|
}
|
|
9728
9890
|
.input-group-lg > .input-group-item > .btn .btn-section {
|
|
9729
9891
|
font-size: 0.8125rem;
|
|
@@ -9733,7 +9895,17 @@ label.custom-control-label {
|
|
|
9733
9895
|
line-height: 1;
|
|
9734
9896
|
width: 3rem;
|
|
9735
9897
|
}
|
|
9736
|
-
.input-group-lg > .input-group-item > .form-control
|
|
9898
|
+
.input-group-lg > .input-group-item > .form-control {
|
|
9899
|
+
border-radius: 0.3rem;
|
|
9900
|
+
font-size: 1.25rem;
|
|
9901
|
+
height: auto;
|
|
9902
|
+
line-height: 1.5;
|
|
9903
|
+
min-height: 3rem;
|
|
9904
|
+
padding-bottom: 0.5rem;
|
|
9905
|
+
padding-left: 1rem;
|
|
9906
|
+
padding-right: 1rem;
|
|
9907
|
+
padding-top: 0.5rem;
|
|
9908
|
+
}
|
|
9737
9909
|
.input-group-lg > .input-group-item > .form-file .btn {
|
|
9738
9910
|
border-radius: 0.3rem;
|
|
9739
9911
|
font-size: 1.25rem;
|
|
@@ -9744,6 +9916,12 @@ label.custom-control-label {
|
|
|
9744
9916
|
padding-right: 1rem;
|
|
9745
9917
|
padding-top: 0.5rem;
|
|
9746
9918
|
}
|
|
9919
|
+
.input-group-lg > .input-group-item > .form-file .btn .c-inner {
|
|
9920
|
+
margin-bottom: -0.5rem;
|
|
9921
|
+
margin-left: -1rem;
|
|
9922
|
+
margin-right: -1rem;
|
|
9923
|
+
margin-top: -0.5rem;
|
|
9924
|
+
}
|
|
9747
9925
|
.input-group-lg > .input-group-item > textarea.form-control,
|
|
9748
9926
|
.input-group-lg > .input-group-item > .form-control-textarea {
|
|
9749
9927
|
height: 190px;
|
|
@@ -9763,25 +9941,39 @@ label.custom-control-label {
|
|
|
9763
9941
|
padding-left: 1rem;
|
|
9764
9942
|
padding-right: 1rem;
|
|
9765
9943
|
}
|
|
9766
|
-
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file {
|
|
9767
|
-
height: 75%;
|
|
9768
|
-
}
|
|
9769
9944
|
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file .btn {
|
|
9770
|
-
|
|
9771
|
-
|
|
9772
|
-
|
|
9773
|
-
|
|
9774
|
-
padding-
|
|
9775
|
-
padding-
|
|
9945
|
+
border-radius: 0.3rem;
|
|
9946
|
+
font-size: 1.25rem;
|
|
9947
|
+
height: 3rem;
|
|
9948
|
+
line-height: 1.5;
|
|
9949
|
+
padding-bottom: 0.5rem;
|
|
9950
|
+
padding-left: 1rem;
|
|
9951
|
+
padding-right: 1rem;
|
|
9952
|
+
padding-top: 0.5rem;
|
|
9776
9953
|
}
|
|
9777
9954
|
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner {
|
|
9955
|
+
margin-bottom: -0.5rem;
|
|
9956
|
+
margin-left: -1rem;
|
|
9957
|
+
margin-right: -1rem;
|
|
9958
|
+
margin-top: -0.5rem;
|
|
9959
|
+
}
|
|
9960
|
+
.input-group-lg > .input-group-item .form-control-inset {
|
|
9778
9961
|
margin-bottom: 0;
|
|
9779
|
-
margin-left: -0.75rem;
|
|
9780
|
-
margin-right: -0.75rem;
|
|
9781
9962
|
margin-top: 0;
|
|
9782
9963
|
}
|
|
9783
9964
|
.form-group-sm .input-group > .input-group-item > .btn, .input-group-sm > .input-group-item > .btn {
|
|
9784
9965
|
font-size: 0.875rem;
|
|
9966
|
+
line-height: 1.5;
|
|
9967
|
+
padding-bottom: 0.25rem;
|
|
9968
|
+
padding-left: 0.5rem;
|
|
9969
|
+
padding-right: 0.5rem;
|
|
9970
|
+
padding-top: 0.25rem;
|
|
9971
|
+
}
|
|
9972
|
+
.form-group-sm .input-group > .input-group-item > .btn .c-inner, .input-group-sm > .input-group-item > .btn .c-inner {
|
|
9973
|
+
margin-bottom: -0.25rem;
|
|
9974
|
+
margin-left: -0.5rem;
|
|
9975
|
+
margin-right: -0.5rem;
|
|
9976
|
+
margin-top: -0.25rem;
|
|
9785
9977
|
}
|
|
9786
9978
|
.form-group-sm .input-group > .input-group-item > .btn .btn-section, .input-group-sm > .input-group-item > .btn .btn-section {
|
|
9787
9979
|
font-size: 0.5625rem;
|
|
@@ -9791,30 +9983,49 @@ label.custom-control-label {
|
|
|
9791
9983
|
line-height: 1;
|
|
9792
9984
|
width: 1.9375rem;
|
|
9793
9985
|
}
|
|
9794
|
-
.form-group-sm .input-group > .input-group-item > .form-control, .input-group-sm > .input-group-item > .form-control
|
|
9795
|
-
.form-group-sm .input-group > .input-group-item > .form-file .btn,
|
|
9796
|
-
.input-group-sm > .input-group-item > .form-file .btn {
|
|
9986
|
+
.form-group-sm .input-group > .input-group-item > .form-control, .input-group-sm > .input-group-item > .form-control {
|
|
9797
9987
|
border-radius: 0.2rem;
|
|
9798
9988
|
font-size: 0.875rem;
|
|
9799
|
-
height:
|
|
9989
|
+
height: auto;
|
|
9800
9990
|
line-height: 1.5;
|
|
9801
|
-
|
|
9991
|
+
min-height: 1.9375rem;
|
|
9992
|
+
padding-bottom: 0;
|
|
9802
9993
|
padding-left: 0.5rem;
|
|
9803
9994
|
padding-right: 0.5rem;
|
|
9804
|
-
padding-top: 0
|
|
9995
|
+
padding-top: 0;
|
|
9805
9996
|
}
|
|
9806
|
-
.form-group-sm .input-group > .input-group-item > .form-control
|
|
9997
|
+
.form-group-sm .input-group > .input-group-item > .form-control .label, .input-group-sm > .input-group-item > .form-control .label {
|
|
9998
|
+
margin-bottom: 0.1875rem;
|
|
9999
|
+
margin-top: 0.1875rem;
|
|
10000
|
+
}
|
|
10001
|
+
.form-group-sm .input-group > .input-group-item > .form-file .btn, .input-group-sm > .input-group-item > .form-file .btn {
|
|
10002
|
+
border-radius: 0.2rem;
|
|
9807
10003
|
font-size: 0.875rem;
|
|
9808
10004
|
height: 1.9375rem;
|
|
9809
10005
|
line-height: 1.5;
|
|
9810
10006
|
padding-bottom: 0.25rem;
|
|
10007
|
+
padding-left: 0.5rem;
|
|
10008
|
+
padding-right: 0.5rem;
|
|
9811
10009
|
padding-top: 0.25rem;
|
|
9812
10010
|
}
|
|
10011
|
+
.form-group-sm .input-group > .input-group-item > .form-file .btn .c-inner, .input-group-sm > .input-group-item > .form-file .btn .c-inner {
|
|
10012
|
+
margin-bottom: -0.25rem;
|
|
10013
|
+
margin-left: -0.5rem;
|
|
10014
|
+
margin-right: -0.5rem;
|
|
10015
|
+
margin-top: -0.25rem;
|
|
10016
|
+
}
|
|
9813
10017
|
.form-group-sm .input-group > .input-group-item > textarea.form-control, .input-group-sm > .input-group-item > textarea.form-control,
|
|
9814
10018
|
.form-group-sm .input-group > .input-group-item > .form-control-textarea,
|
|
9815
10019
|
.input-group-sm > .input-group-item > .form-control-textarea {
|
|
9816
10020
|
height: 120px;
|
|
9817
10021
|
}
|
|
10022
|
+
.form-group-sm .input-group > .input-group-item > .form-control-plaintext, .input-group-sm > .input-group-item > .form-control-plaintext {
|
|
10023
|
+
font-size: 0.875rem;
|
|
10024
|
+
height: 1.9375rem;
|
|
10025
|
+
line-height: 1.5;
|
|
10026
|
+
padding-bottom: 0.25rem;
|
|
10027
|
+
padding-top: 0.25rem;
|
|
10028
|
+
}
|
|
9818
10029
|
.form-group-sm .input-group > .input-group-item > .input-group-text, .input-group-sm > .input-group-item > .input-group-text {
|
|
9819
10030
|
border-radius: 0.2rem;
|
|
9820
10031
|
font-size: 0.875rem;
|
|
@@ -9842,67 +10053,48 @@ label.custom-control-label {
|
|
|
9842
10053
|
margin-right: 0.25rem;
|
|
9843
10054
|
width: 1.5rem;
|
|
9844
10055
|
}
|
|
9845
|
-
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file {
|
|
9846
|
-
height: 75%;
|
|
9847
|
-
}
|
|
9848
10056
|
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file .btn, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file .btn {
|
|
9849
|
-
|
|
9850
|
-
|
|
9851
|
-
|
|
10057
|
+
border-radius: 0.2rem;
|
|
10058
|
+
font-size: 0.875rem;
|
|
10059
|
+
height: 1.9375rem;
|
|
10060
|
+
line-height: 1.5;
|
|
10061
|
+
padding-bottom: 0.25rem;
|
|
9852
10062
|
padding-left: 0.5rem;
|
|
9853
10063
|
padding-right: 0.5rem;
|
|
9854
|
-
padding-top: 0;
|
|
10064
|
+
padding-top: 0.25rem;
|
|
9855
10065
|
}
|
|
9856
10066
|
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner {
|
|
9857
|
-
margin-bottom: 0;
|
|
10067
|
+
margin-bottom: -0.25rem;
|
|
9858
10068
|
margin-left: -0.5rem;
|
|
9859
10069
|
margin-right: -0.5rem;
|
|
9860
|
-
margin-top: 0;
|
|
9861
|
-
}
|
|
9862
|
-
.input-group-item.focus {
|
|
9863
|
-
border-radius: 0.25rem;
|
|
9864
|
-
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
9865
|
-
}
|
|
9866
|
-
.input-group-item.focus .form-control,
|
|
9867
|
-
.input-group-item.focus .form-control[readonly] ~ .input-group-inset-item,
|
|
9868
|
-
.input-group-item.focus .input-group-inset-item {
|
|
9869
|
-
background-color: #fff;
|
|
9870
|
-
border-color: #80bdff;
|
|
9871
|
-
}
|
|
9872
|
-
|
|
9873
|
-
.input-group-item.input-group-prepend.focus {
|
|
9874
|
-
border-bottom-right-radius: 0;
|
|
9875
|
-
border-top-right-radius: 0;
|
|
9876
|
-
z-index: 1;
|
|
10070
|
+
margin-top: -0.25rem;
|
|
9877
10071
|
}
|
|
9878
|
-
|
|
9879
|
-
|
|
9880
|
-
|
|
9881
|
-
border-top-left-radius: 0;
|
|
10072
|
+
.form-group-sm .input-group > .input-group-item .form-control-inset, .input-group-sm > .input-group-item .form-control-inset {
|
|
10073
|
+
margin-bottom: 0.125rem;
|
|
10074
|
+
margin-top: 0.1875rem;
|
|
9882
10075
|
}
|
|
9883
|
-
|
|
9884
10076
|
.input-group-inset {
|
|
9885
10077
|
flex-grow: 1;
|
|
9886
10078
|
order: 5;
|
|
9887
10079
|
width: 1%;
|
|
9888
10080
|
}
|
|
9889
|
-
.input-group-inset
|
|
9890
|
-
background-color: #e9ecef;
|
|
9891
|
-
}
|
|
9892
|
-
.input-group-inset:focus {
|
|
10081
|
+
.input-group-inset:focus, .input-group-inset.focus {
|
|
9893
10082
|
box-shadow: none;
|
|
9894
10083
|
}
|
|
9895
|
-
.input-group-inset:focus ~ .input-group-inset-item {
|
|
10084
|
+
.input-group-inset:focus ~ .input-group-inset-item, .input-group-inset.focus ~ .input-group-inset-item {
|
|
9896
10085
|
background-color: #fff;
|
|
9897
10086
|
border-color: #80bdff;
|
|
9898
10087
|
}
|
|
9899
|
-
.input-group-inset:disabled ~ .input-group-inset-item {
|
|
10088
|
+
.input-group-inset:disabled ~ .input-group-inset-item, .input-group-inset.disabled ~ .input-group-inset-item {
|
|
9900
10089
|
background-color: #e9ecef;
|
|
9901
10090
|
}
|
|
9902
10091
|
.input-group-inset ~ .form-feedback-group {
|
|
9903
10092
|
order: 13;
|
|
9904
10093
|
}
|
|
9905
10094
|
|
|
10095
|
+
.input-group-inset[readonly] ~ .input-group-inset-item {
|
|
10096
|
+
background-color: #e9ecef;
|
|
10097
|
+
}
|
|
9906
10098
|
.input-group .input-group-inset-item {
|
|
9907
10099
|
align-items: center;
|
|
9908
10100
|
background-color: #fff;
|
|
@@ -11484,7 +11676,6 @@ label.custom-control-label {
|
|
|
11484
11676
|
margin-left: 0;
|
|
11485
11677
|
margin-right: 0;
|
|
11486
11678
|
}
|
|
11487
|
-
|
|
11488
11679
|
.nav-btn-monospaced {
|
|
11489
11680
|
padding: 0;
|
|
11490
11681
|
}
|
|
@@ -11506,6 +11697,7 @@ label.custom-control-label {
|
|
|
11506
11697
|
}
|
|
11507
11698
|
|
|
11508
11699
|
.nav-item {
|
|
11700
|
+
overflow-wrap: break-word;
|
|
11509
11701
|
word-wrap: break-word;
|
|
11510
11702
|
}
|
|
11511
11703
|
|
|
@@ -11515,6 +11707,41 @@ label.custom-control-label {
|
|
|
11515
11707
|
text-align: center;
|
|
11516
11708
|
}
|
|
11517
11709
|
|
|
11710
|
+
.nav-divider {
|
|
11711
|
+
margin-left: 0.5rem;
|
|
11712
|
+
padding-left: 0.5rem;
|
|
11713
|
+
position: relative;
|
|
11714
|
+
}
|
|
11715
|
+
.nav-divider::before {
|
|
11716
|
+
background-color: #6c757d;
|
|
11717
|
+
content: "";
|
|
11718
|
+
display: block;
|
|
11719
|
+
height: 1rem;
|
|
11720
|
+
left: 0;
|
|
11721
|
+
margin-top: -0.5rem;
|
|
11722
|
+
position: absolute;
|
|
11723
|
+
top: 50%;
|
|
11724
|
+
width: 1px;
|
|
11725
|
+
z-index: 2;
|
|
11726
|
+
}
|
|
11727
|
+
.nav-divider-end {
|
|
11728
|
+
margin-right: 0.5rem;
|
|
11729
|
+
padding-right: 0.5rem;
|
|
11730
|
+
position: relative;
|
|
11731
|
+
}
|
|
11732
|
+
.nav-divider-end::after {
|
|
11733
|
+
background-color: #6c757d;
|
|
11734
|
+
content: "";
|
|
11735
|
+
display: block;
|
|
11736
|
+
height: 1rem;
|
|
11737
|
+
margin-top: -0.5rem;
|
|
11738
|
+
position: absolute;
|
|
11739
|
+
right: 0;
|
|
11740
|
+
top: 50%;
|
|
11741
|
+
width: 1px;
|
|
11742
|
+
z-index: 2;
|
|
11743
|
+
}
|
|
11744
|
+
|
|
11518
11745
|
.nav-text-truncate {
|
|
11519
11746
|
display: inline-block;
|
|
11520
11747
|
margin-bottom: -6px;
|
|
@@ -11528,13 +11755,6 @@ label.custom-control-label {
|
|
|
11528
11755
|
max-width: calc(100% - 24px);
|
|
11529
11756
|
}
|
|
11530
11757
|
|
|
11531
|
-
.nav-form {
|
|
11532
|
-
padding-bottom: 0.5rem;
|
|
11533
|
-
padding-left: 0.5rem;
|
|
11534
|
-
padding-right: 0.5rem;
|
|
11535
|
-
padding-top: 0.5rem;
|
|
11536
|
-
}
|
|
11537
|
-
|
|
11538
11758
|
.nav .nav-form {
|
|
11539
11759
|
padding-bottom: 0;
|
|
11540
11760
|
padding-left: 1rem;
|
|
@@ -11546,17 +11766,15 @@ label.custom-control-label {
|
|
|
11546
11766
|
flex: 1 1 auto;
|
|
11547
11767
|
text-align: center;
|
|
11548
11768
|
}
|
|
11549
|
-
|
|
11769
|
+
.nav-justified .nav-link {
|
|
11770
|
+
text-align: center;
|
|
11771
|
+
width: 100%;
|
|
11772
|
+
}
|
|
11550
11773
|
.nav-justified .nav-item {
|
|
11551
11774
|
flex-basis: 0;
|
|
11552
11775
|
flex-grow: 1;
|
|
11553
11776
|
text-align: center;
|
|
11554
11777
|
}
|
|
11555
|
-
.nav-justified button.nav-link {
|
|
11556
|
-
text-align: center;
|
|
11557
|
-
width: 100%;
|
|
11558
|
-
}
|
|
11559
|
-
|
|
11560
11778
|
.nav-stacked {
|
|
11561
11779
|
display: block;
|
|
11562
11780
|
}
|
|
@@ -11570,18 +11788,35 @@ label.custom-control-label {
|
|
|
11570
11788
|
.nav-unstyled {
|
|
11571
11789
|
flex-wrap: nowrap;
|
|
11572
11790
|
}
|
|
11573
|
-
.nav-unstyled .nav-btn {
|
|
11574
|
-
margin: 0 4px;
|
|
11575
|
-
padding: 0 4px;
|
|
11576
|
-
}
|
|
11577
11791
|
.nav-unstyled .nav-link {
|
|
11578
11792
|
line-height: 2rem;
|
|
11579
|
-
padding: 0
|
|
11793
|
+
padding-bottom: 0;
|
|
11794
|
+
padding-left: 4px;
|
|
11795
|
+
padding-right: 4px;
|
|
11796
|
+
padding-top: 0;
|
|
11797
|
+
}
|
|
11798
|
+
.nav-unstyled .nav-link > .c-inner {
|
|
11799
|
+
margin-bottom: 0;
|
|
11800
|
+
margin-left: -4px;
|
|
11801
|
+
margin-right: -4px;
|
|
11802
|
+
margin-top: 0;
|
|
11580
11803
|
}
|
|
11581
11804
|
.nav-unstyled .nav-link-monospaced {
|
|
11582
11805
|
margin: 0 4px;
|
|
11583
11806
|
}
|
|
11584
|
-
|
|
11807
|
+
.nav-unstyled .nav-btn {
|
|
11808
|
+
margin: 0 4px;
|
|
11809
|
+
padding-bottom: 0;
|
|
11810
|
+
padding-left: 4px;
|
|
11811
|
+
padding-right: 4px;
|
|
11812
|
+
padding-top: 0;
|
|
11813
|
+
}
|
|
11814
|
+
.nav-unstyled .nav-btn .c-inner {
|
|
11815
|
+
margin-bottom: 0;
|
|
11816
|
+
margin-left: -4px;
|
|
11817
|
+
margin-right: -4px;
|
|
11818
|
+
margin-top: 0;
|
|
11819
|
+
}
|
|
11585
11820
|
.nav-nested {
|
|
11586
11821
|
flex-direction: column;
|
|
11587
11822
|
flex-wrap: nowrap;
|
|
@@ -11688,9 +11923,6 @@ label.custom-control-label {
|
|
|
11688
11923
|
.nav-tabs {
|
|
11689
11924
|
border-bottom: 0.0625rem solid #dee2e6;
|
|
11690
11925
|
}
|
|
11691
|
-
.nav-tabs .nav-item {
|
|
11692
|
-
margin-bottom: -0.0625rem;
|
|
11693
|
-
}
|
|
11694
11926
|
.nav-tabs .nav-link {
|
|
11695
11927
|
border-color: transparent;
|
|
11696
11928
|
border-style: solid;
|
|
@@ -11711,8 +11943,8 @@ label.custom-control-label {
|
|
|
11711
11943
|
}
|
|
11712
11944
|
.nav-tabs .nav-link.active {
|
|
11713
11945
|
background-color: #fff;
|
|
11714
|
-
border-color: #dee2e6 #dee2e6 #fff;
|
|
11715
11946
|
color: #495057;
|
|
11947
|
+
border-color: #dee2e6 #dee2e6 #fff;
|
|
11716
11948
|
}
|
|
11717
11949
|
.nav-tabs .nav-link:disabled, .nav-tabs .nav-link.disabled {
|
|
11718
11950
|
background-color: transparent;
|
|
@@ -11721,13 +11953,11 @@ label.custom-control-label {
|
|
|
11721
11953
|
}
|
|
11722
11954
|
.nav-tabs .nav-link[aria-expanded=true], .nav-tabs .nav-link.show {
|
|
11723
11955
|
background-color: #fff;
|
|
11724
|
-
border-color: #dee2e6 #dee2e6 #fff;
|
|
11725
11956
|
color: #495057;
|
|
11726
|
-
}
|
|
11727
|
-
.nav-tabs .nav-item.show .nav-link {
|
|
11728
|
-
background-color: #fff;
|
|
11729
11957
|
border-color: #dee2e6 #dee2e6 #fff;
|
|
11730
|
-
|
|
11958
|
+
}
|
|
11959
|
+
.nav-tabs .nav-item {
|
|
11960
|
+
margin-bottom: -0.0625rem;
|
|
11731
11961
|
}
|
|
11732
11962
|
.nav-tabs .dropdown-menu {
|
|
11733
11963
|
border-top-left-radius: 0;
|
|
@@ -11773,11 +12003,12 @@ label.custom-control-label {
|
|
|
11773
12003
|
right: 0.5rem;
|
|
11774
12004
|
width: auto;
|
|
11775
12005
|
}
|
|
11776
|
-
.nav-underline .nav-
|
|
12006
|
+
.nav-underline .nav-link.active::after {
|
|
11777
12007
|
background-color: #007bff;
|
|
12008
|
+
content: "";
|
|
12009
|
+
height: 0.1875rem;
|
|
11778
12010
|
}
|
|
11779
|
-
.nav-underline .nav-link.
|
|
11780
|
-
.nav-underline .nav-item.show .nav-link:after {
|
|
12011
|
+
.nav-underline .nav-link[aria-expanded=true]::after, .nav-underline .nav-link.show::after {
|
|
11781
12012
|
content: "";
|
|
11782
12013
|
height: 0.1875rem;
|
|
11783
12014
|
}
|