@clayui/css 3.52.0 → 3.55.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/lib/css/atlas.css +157 -188
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +81 -127
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +0 -0
- package/lib/css/cadmin.css +15 -1
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/border-style.svg +14 -0
- package/lib/images/icons/border-width.svg +11 -0
- package/lib/images/icons/diagonal-line.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/opacity.svg +16 -0
- package/package.json +2 -2
- package/src/images/icons/border-style.svg +14 -0
- package/src/images/icons/border-width.svg +11 -0
- package/src/images/icons/diagonal-line.svg +9 -0
- package/src/images/icons/opacity.svg +16 -0
- package/src/scss/atlas/variables/_buttons.scss +1 -1
- package/src/scss/atlas/variables/_dropdowns.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +5 -5
- package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
- package/src/scss/atlas/variables/_navs.scss +1 -1
- package/src/scss/atlas/variables/_panels.scss +2 -2
- package/src/scss/atlas/variables/_sheets.scss +2 -1
- package/src/scss/atlas/variables/_sidebar.scss +3 -2
- package/src/scss/atlas/variables/_type.scss +0 -2
- package/src/scss/cadmin/components/_popovers.scss +45 -13
- package/src/scss/cadmin/variables/_popovers.scss +53 -0
- package/src/scss/components/_forms.scss +18 -58
- package/src/scss/components/_popovers.scss +45 -13
- package/src/scss/components/_tables.scss +2 -2
- package/src/scss/functions/_lx-icons-generated.scss +8 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_close.scss +303 -277
- package/src/scss/mixins/_forms.scss +2 -0
- package/src/scss/mixins/_grid.scss +3 -3
- package/src/scss/mixins/_popovers.scss +56 -19
- package/src/scss/variables/_buttons.scss +116 -67
- package/src/scss/variables/_cards.scss +1 -1
- package/src/scss/variables/_date-picker.scss +1 -1
- package/src/scss/variables/_dropdowns.scss +4 -4
- package/src/scss/variables/_forms.scss +75 -1
- package/src/scss/variables/_globals.scss +2 -2
- package/src/scss/variables/_links.scss +1 -1
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_management-bar.scss +2 -2
- package/src/scss/variables/_multi-step-nav.scss +1 -1
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +1 -1
- package/src/scss/variables/_pagination.scss +1 -1
- package/src/scss/variables/_panels.scss +5 -4
- package/src/scss/variables/_popovers.scss +53 -0
- package/src/scss/variables/_range.scss +2 -2
- package/src/scss/variables/_sheets.scss +1 -1
- package/src/scss/variables/_tables.scss +4 -4
- package/src/scss/variables/_tbar.scss +14 -13
- package/src/scss/variables/_time.scss +1 -1
- package/src/scss/variables/_type.scss +2 -2
- package/src/scss/variables/_utilities.scss +1 -1
package/lib/css/base.css
CHANGED
|
@@ -318,32 +318,26 @@ h1,
|
|
|
318
318
|
.h1 {
|
|
319
319
|
font-size: calc(1rem * 2.5);
|
|
320
320
|
}
|
|
321
|
-
|
|
322
321
|
h2,
|
|
323
322
|
.h2 {
|
|
324
323
|
font-size: calc(1rem * 2);
|
|
325
324
|
}
|
|
326
|
-
|
|
327
325
|
h3,
|
|
328
326
|
.h3 {
|
|
329
327
|
font-size: calc(1rem * 1.75);
|
|
330
328
|
}
|
|
331
|
-
|
|
332
329
|
h4,
|
|
333
330
|
.h4 {
|
|
334
331
|
font-size: calc(1rem * 1.5);
|
|
335
332
|
}
|
|
336
|
-
|
|
337
333
|
h5,
|
|
338
334
|
.h5 {
|
|
339
335
|
font-size: calc(1rem * 1.25);
|
|
340
336
|
}
|
|
341
|
-
|
|
342
337
|
h6,
|
|
343
338
|
.h6 {
|
|
344
339
|
font-size: 1rem;
|
|
345
340
|
}
|
|
346
|
-
|
|
347
341
|
.lead {
|
|
348
342
|
font-size: calc(1rem * 1.25);
|
|
349
343
|
font-weight: 300;
|
|
@@ -485,7 +479,7 @@ mark:before,
|
|
|
485
479
|
}
|
|
486
480
|
|
|
487
481
|
.c-kbd > .c-kbd {
|
|
488
|
-
border-width:
|
|
482
|
+
border-width: 0px;
|
|
489
483
|
font-size: inherit;
|
|
490
484
|
font-weight: inherit;
|
|
491
485
|
height: auto;
|
|
@@ -517,7 +511,7 @@ mark:before,
|
|
|
517
511
|
}
|
|
518
512
|
|
|
519
513
|
.c-kbd-inline {
|
|
520
|
-
border-width:
|
|
514
|
+
border-width: 0px;
|
|
521
515
|
font-weight: 300;
|
|
522
516
|
height: auto;
|
|
523
517
|
line-height: inherit;
|
|
@@ -1362,7 +1356,6 @@ input[type=button].btn-block {
|
|
|
1362
1356
|
.btn-primary:focus, .focus.btn-primary {
|
|
1363
1357
|
background-color: #0069d9;
|
|
1364
1358
|
border-color: #0062cc;
|
|
1365
|
-
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
1366
1359
|
color: #fff;
|
|
1367
1360
|
}
|
|
1368
1361
|
.btn-primary:active {
|
|
@@ -1370,9 +1363,6 @@ input[type=button].btn-block {
|
|
|
1370
1363
|
border-color: #005cbf;
|
|
1371
1364
|
color: #fff;
|
|
1372
1365
|
}
|
|
1373
|
-
.btn-primary:active:focus {
|
|
1374
|
-
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
1375
|
-
}
|
|
1376
1366
|
.active.btn-primary {
|
|
1377
1367
|
background-color: #0062cc;
|
|
1378
1368
|
border-color: #005cbf;
|
|
@@ -1391,7 +1381,6 @@ input[type=button].btn-block {
|
|
|
1391
1381
|
.form-file-input:focus + .btn-primary {
|
|
1392
1382
|
background-color: #0069d9;
|
|
1393
1383
|
border-color: #0062cc;
|
|
1394
|
-
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
1395
1384
|
color: #fff;
|
|
1396
1385
|
}
|
|
1397
1386
|
.btn-secondary {
|
|
@@ -1407,7 +1396,6 @@ input[type=button].btn-block {
|
|
|
1407
1396
|
.btn-secondary:focus, .focus.btn-secondary {
|
|
1408
1397
|
background-color: #5a6268;
|
|
1409
1398
|
border-color: #545b62;
|
|
1410
|
-
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
1411
1399
|
color: #fff;
|
|
1412
1400
|
}
|
|
1413
1401
|
.btn-secondary:active {
|
|
@@ -1415,9 +1403,6 @@ input[type=button].btn-block {
|
|
|
1415
1403
|
border-color: #4e555b;
|
|
1416
1404
|
color: #fff;
|
|
1417
1405
|
}
|
|
1418
|
-
.btn-secondary:active:focus {
|
|
1419
|
-
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
1420
|
-
}
|
|
1421
1406
|
.active.btn-secondary {
|
|
1422
1407
|
background-color: #545b62;
|
|
1423
1408
|
border-color: #4e555b;
|
|
@@ -1436,7 +1421,6 @@ input[type=button].btn-block {
|
|
|
1436
1421
|
.form-file-input:focus + .btn-secondary {
|
|
1437
1422
|
background-color: #5a6268;
|
|
1438
1423
|
border-color: #545b62;
|
|
1439
|
-
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
1440
1424
|
color: #fff;
|
|
1441
1425
|
}
|
|
1442
1426
|
.btn-success {
|
|
@@ -1452,7 +1436,6 @@ input[type=button].btn-block {
|
|
|
1452
1436
|
.btn-success:focus, .focus.btn-success {
|
|
1453
1437
|
background-color: #218838;
|
|
1454
1438
|
border-color: #1e7e34;
|
|
1455
|
-
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
1456
1439
|
color: #fff;
|
|
1457
1440
|
}
|
|
1458
1441
|
.btn-success:active {
|
|
@@ -1460,9 +1443,6 @@ input[type=button].btn-block {
|
|
|
1460
1443
|
border-color: #1c7430;
|
|
1461
1444
|
color: #fff;
|
|
1462
1445
|
}
|
|
1463
|
-
.btn-success:active:focus {
|
|
1464
|
-
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
1465
|
-
}
|
|
1466
1446
|
.active.btn-success {
|
|
1467
1447
|
background-color: #1e7e34;
|
|
1468
1448
|
border-color: #1c7430;
|
|
@@ -1481,7 +1461,6 @@ input[type=button].btn-block {
|
|
|
1481
1461
|
.form-file-input:focus + .btn-success {
|
|
1482
1462
|
background-color: #218838;
|
|
1483
1463
|
border-color: #1e7e34;
|
|
1484
|
-
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
1485
1464
|
color: #fff;
|
|
1486
1465
|
}
|
|
1487
1466
|
.btn-info {
|
|
@@ -1497,7 +1476,6 @@ input[type=button].btn-block {
|
|
|
1497
1476
|
.btn-info:focus, .focus.btn-info {
|
|
1498
1477
|
background-color: #138496;
|
|
1499
1478
|
border-color: #117a8b;
|
|
1500
|
-
box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
|
|
1501
1479
|
color: #fff;
|
|
1502
1480
|
}
|
|
1503
1481
|
.btn-info:active {
|
|
@@ -1505,9 +1483,6 @@ input[type=button].btn-block {
|
|
|
1505
1483
|
border-color: #10707f;
|
|
1506
1484
|
color: #fff;
|
|
1507
1485
|
}
|
|
1508
|
-
.btn-info:active:focus {
|
|
1509
|
-
box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
|
|
1510
|
-
}
|
|
1511
1486
|
.active.btn-info {
|
|
1512
1487
|
background-color: #117a8b;
|
|
1513
1488
|
border-color: #10707f;
|
|
@@ -1536,7 +1511,6 @@ input[type=button].btn-block {
|
|
|
1536
1511
|
.btn-warning:focus, .focus.btn-warning {
|
|
1537
1512
|
background-color: #e0a800;
|
|
1538
1513
|
border-color: #d39e00;
|
|
1539
|
-
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
1540
1514
|
color: #212529;
|
|
1541
1515
|
}
|
|
1542
1516
|
.btn-warning:active {
|
|
@@ -1544,9 +1518,6 @@ input[type=button].btn-block {
|
|
|
1544
1518
|
border-color: #c69500;
|
|
1545
1519
|
color: #212529;
|
|
1546
1520
|
}
|
|
1547
|
-
.btn-warning:active:focus {
|
|
1548
|
-
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
1549
|
-
}
|
|
1550
1521
|
.active.btn-warning {
|
|
1551
1522
|
background-color: #d39e00;
|
|
1552
1523
|
border-color: #c69500;
|
|
@@ -1565,7 +1536,6 @@ input[type=button].btn-block {
|
|
|
1565
1536
|
.form-file-input:focus + .btn-warning {
|
|
1566
1537
|
background-color: #e0a800;
|
|
1567
1538
|
border-color: #d39e00;
|
|
1568
|
-
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
1569
1539
|
color: #212529;
|
|
1570
1540
|
}
|
|
1571
1541
|
.btn-danger {
|
|
@@ -1581,7 +1551,6 @@ input[type=button].btn-block {
|
|
|
1581
1551
|
.btn-danger:focus, .focus.btn-danger {
|
|
1582
1552
|
background-color: #c82333;
|
|
1583
1553
|
border-color: #bd2130;
|
|
1584
|
-
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
1585
1554
|
color: #fff;
|
|
1586
1555
|
}
|
|
1587
1556
|
.btn-danger:active {
|
|
@@ -1589,9 +1558,6 @@ input[type=button].btn-block {
|
|
|
1589
1558
|
border-color: #b21f2d;
|
|
1590
1559
|
color: #fff;
|
|
1591
1560
|
}
|
|
1592
|
-
.btn-danger:active:focus {
|
|
1593
|
-
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
1594
|
-
}
|
|
1595
1561
|
.active.btn-danger {
|
|
1596
1562
|
background-color: #bd2130;
|
|
1597
1563
|
border-color: #b21f2d;
|
|
@@ -1610,7 +1576,6 @@ input[type=button].btn-block {
|
|
|
1610
1576
|
.form-file-input:focus + .btn-danger {
|
|
1611
1577
|
background-color: #c82333;
|
|
1612
1578
|
border-color: #bd2130;
|
|
1613
|
-
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
1614
1579
|
color: #fff;
|
|
1615
1580
|
}
|
|
1616
1581
|
.btn-light {
|
|
@@ -1626,7 +1591,6 @@ input[type=button].btn-block {
|
|
|
1626
1591
|
.btn-light:focus, .focus.btn-light {
|
|
1627
1592
|
background-color: #e2e6ea;
|
|
1628
1593
|
border-color: #dae0e5;
|
|
1629
|
-
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
|
|
1630
1594
|
color: #212529;
|
|
1631
1595
|
}
|
|
1632
1596
|
.btn-light:active {
|
|
@@ -1634,9 +1598,6 @@ input[type=button].btn-block {
|
|
|
1634
1598
|
border-color: #d3d9df;
|
|
1635
1599
|
color: #212529;
|
|
1636
1600
|
}
|
|
1637
|
-
.btn-light:active:focus {
|
|
1638
|
-
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
|
|
1639
|
-
}
|
|
1640
1601
|
.active.btn-light {
|
|
1641
1602
|
background-color: #dae0e5;
|
|
1642
1603
|
border-color: #d3d9df;
|
|
@@ -1655,7 +1616,6 @@ input[type=button].btn-block {
|
|
|
1655
1616
|
.form-file-input:focus + .btn-light {
|
|
1656
1617
|
background-color: #e2e6ea;
|
|
1657
1618
|
border-color: #dae0e5;
|
|
1658
|
-
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
|
|
1659
1619
|
color: #212529;
|
|
1660
1620
|
}
|
|
1661
1621
|
.btn-dark {
|
|
@@ -1671,7 +1631,6 @@ input[type=button].btn-block {
|
|
|
1671
1631
|
.btn-dark:focus, .focus.btn-dark {
|
|
1672
1632
|
background-color: #23272b;
|
|
1673
1633
|
border-color: #1d2124;
|
|
1674
|
-
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
|
|
1675
1634
|
color: #fff;
|
|
1676
1635
|
}
|
|
1677
1636
|
.btn-dark:active {
|
|
@@ -1679,9 +1638,6 @@ input[type=button].btn-block {
|
|
|
1679
1638
|
border-color: #171a1d;
|
|
1680
1639
|
color: #fff;
|
|
1681
1640
|
}
|
|
1682
|
-
.btn-dark:active:focus {
|
|
1683
|
-
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
|
|
1684
|
-
}
|
|
1685
1641
|
.active.btn-dark {
|
|
1686
1642
|
background-color: #1d2124;
|
|
1687
1643
|
border-color: #171a1d;
|
|
@@ -1700,7 +1656,6 @@ input[type=button].btn-block {
|
|
|
1700
1656
|
.form-file-input:focus + .btn-dark {
|
|
1701
1657
|
background-color: #23272b;
|
|
1702
1658
|
border-color: #1d2124;
|
|
1703
|
-
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
|
|
1704
1659
|
color: #fff;
|
|
1705
1660
|
}
|
|
1706
1661
|
.btn-link {
|
|
@@ -1742,6 +1697,9 @@ input[type=button].btn-block {
|
|
|
1742
1697
|
border-color: #007bff;
|
|
1743
1698
|
color: #fff;
|
|
1744
1699
|
}
|
|
1700
|
+
.btn-outline-primary:active:focus {
|
|
1701
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
|
|
1702
|
+
}
|
|
1745
1703
|
.active.btn-outline-primary {
|
|
1746
1704
|
background-color: #007bff;
|
|
1747
1705
|
border-color: #007bff;
|
|
@@ -5448,49 +5406,49 @@ input[type=button].btn-block {
|
|
|
5448
5406
|
.rounded-0 .card-header,
|
|
5449
5407
|
.rounded-0 .card-item-first {
|
|
5450
5408
|
border-top-left-radius: calc(
|
|
5451
|
-
|
|
5409
|
+
0px - 0.0625rem
|
|
5452
5410
|
);
|
|
5453
5411
|
border-top-right-radius: calc(
|
|
5454
|
-
|
|
5412
|
+
0px - 0.0625rem
|
|
5455
5413
|
);
|
|
5456
5414
|
}
|
|
5457
5415
|
.rounded-0 .card-footer,
|
|
5458
5416
|
.rounded-0 .card-item-last {
|
|
5459
5417
|
border-bottom-left-radius: calc(
|
|
5460
|
-
|
|
5418
|
+
0px - 0.0625rem
|
|
5461
5419
|
);
|
|
5462
5420
|
border-bottom-right-radius: calc(
|
|
5463
|
-
|
|
5421
|
+
0px - 0.0625rem
|
|
5464
5422
|
);
|
|
5465
5423
|
}
|
|
5466
5424
|
.rounded-0 .autofit-col:first-child {
|
|
5467
5425
|
border-bottom-left-radius: calc(
|
|
5468
|
-
|
|
5426
|
+
0px - 0.0625rem
|
|
5469
5427
|
);
|
|
5470
5428
|
border-top-left-radius: calc(
|
|
5471
|
-
|
|
5429
|
+
0px - 0.0625rem
|
|
5472
5430
|
);
|
|
5473
5431
|
}
|
|
5474
5432
|
.rounded-0 .autofit-col:first-child .card-item-first {
|
|
5475
5433
|
border-radius: calc(
|
|
5476
|
-
|
|
5434
|
+
0px - 0.0625rem
|
|
5477
5435
|
) 0 0 calc(
|
|
5478
|
-
|
|
5436
|
+
0px - 0.0625rem
|
|
5479
5437
|
);
|
|
5480
5438
|
}
|
|
5481
5439
|
.rounded-0 .autofit-col:last-child {
|
|
5482
5440
|
border-bottom-right-radius: calc(
|
|
5483
|
-
|
|
5441
|
+
0px - 0.0625rem
|
|
5484
5442
|
);
|
|
5485
5443
|
border-top-right-radius: calc(
|
|
5486
|
-
|
|
5444
|
+
0px - 0.0625rem
|
|
5487
5445
|
);
|
|
5488
5446
|
}
|
|
5489
5447
|
.rounded-0 .autofit-col:last-child .card-item-last {
|
|
5490
5448
|
border-radius: 0 calc(
|
|
5491
|
-
|
|
5449
|
+
0px - 0.0625rem
|
|
5492
5450
|
) calc(
|
|
5493
|
-
|
|
5451
|
+
0px - 0.0625rem
|
|
5494
5452
|
) 0;
|
|
5495
5453
|
}
|
|
5496
5454
|
|
|
@@ -6115,7 +6073,7 @@ input[type=button].btn-block {
|
|
|
6115
6073
|
color: #212529;
|
|
6116
6074
|
}
|
|
6117
6075
|
.card-type-template .aspect-ratio {
|
|
6118
|
-
border-width:
|
|
6076
|
+
border-width: 0px;
|
|
6119
6077
|
color: #6c757d;
|
|
6120
6078
|
text-align: center;
|
|
6121
6079
|
padding-bottom: calc(9 / 16 * 100%);
|
|
@@ -6213,8 +6171,8 @@ input[type=button].btn-block {
|
|
|
6213
6171
|
|
|
6214
6172
|
.dropdown-item {
|
|
6215
6173
|
background-color: transparent;
|
|
6216
|
-
border-radius:
|
|
6217
|
-
border-width:
|
|
6174
|
+
border-radius: 0px;
|
|
6175
|
+
border-width: 0px;
|
|
6218
6176
|
clear: both;
|
|
6219
6177
|
color: #212529;
|
|
6220
6178
|
cursor: pointer;
|
|
@@ -7252,7 +7210,7 @@ div.form-control-sm {
|
|
|
7252
7210
|
}
|
|
7253
7211
|
.form-control-inset {
|
|
7254
7212
|
background-color: transparent;
|
|
7255
|
-
border-width:
|
|
7213
|
+
border-width: 0px;
|
|
7256
7214
|
color: #495057;
|
|
7257
7215
|
flex-grow: 1;
|
|
7258
7216
|
margin-bottom: 0.125rem;
|
|
@@ -7350,7 +7308,6 @@ textarea.form-control-plaintext,
|
|
|
7350
7308
|
height: 150px;
|
|
7351
7309
|
resize: vertical;
|
|
7352
7310
|
}
|
|
7353
|
-
|
|
7354
7311
|
.form-control-file {
|
|
7355
7312
|
cursor: pointer;
|
|
7356
7313
|
display: block;
|
|
@@ -7455,59 +7412,36 @@ textarea.form-control-plaintext,
|
|
|
7455
7412
|
border-radius: 0.3rem;
|
|
7456
7413
|
font-size: 1.25rem;
|
|
7457
7414
|
height: 3rem;
|
|
7415
|
+
line-height: 1.5;
|
|
7458
7416
|
padding-bottom: 0.5rem;
|
|
7459
7417
|
padding-left: 1rem;
|
|
7460
7418
|
padding-right: 1rem;
|
|
7461
7419
|
padding-top: 0.5rem;
|
|
7462
7420
|
}
|
|
7463
|
-
|
|
7464
7421
|
textarea.form-control-lg,
|
|
7465
7422
|
.form-control-lg.form-control-textarea {
|
|
7466
7423
|
height: 190px;
|
|
7467
7424
|
}
|
|
7468
|
-
|
|
7469
|
-
.form-control-sm {
|
|
7470
|
-
border-radius: 0.2rem;
|
|
7471
|
-
font-size: 0.875rem;
|
|
7472
|
-
height: 1.9375rem;
|
|
7473
|
-
line-height: 1.5;
|
|
7474
|
-
padding: 0.25rem 0.5rem;
|
|
7475
|
-
}
|
|
7476
|
-
|
|
7477
|
-
.form-control-lg {
|
|
7478
|
-
border-radius: 0.3rem;
|
|
7479
|
-
font-size: 1.25rem;
|
|
7480
|
-
height: 3rem;
|
|
7481
|
-
line-height: 1.5;
|
|
7482
|
-
padding: 0.5rem 1rem;
|
|
7483
|
-
}
|
|
7484
|
-
|
|
7485
7425
|
.form-group-sm .form-control,
|
|
7486
7426
|
.form-group-sm .form-control-plaintext, .form-control-sm {
|
|
7487
7427
|
border-radius: 0.2rem;
|
|
7488
7428
|
font-size: 0.875rem;
|
|
7489
7429
|
height: 1.9375rem;
|
|
7430
|
+
line-height: 1.5;
|
|
7490
7431
|
padding-bottom: 0.25rem;
|
|
7491
7432
|
padding-left: 0.5rem;
|
|
7492
7433
|
padding-right: 0.5rem;
|
|
7493
7434
|
padding-top: 0.25rem;
|
|
7494
7435
|
}
|
|
7495
|
-
|
|
7496
7436
|
.form-group-sm select.form-control, .form-control-select.form-control-sm {
|
|
7497
7437
|
height: 1.9375rem;
|
|
7498
7438
|
padding-right: 2em;
|
|
7499
7439
|
}
|
|
7500
|
-
|
|
7501
7440
|
.form-group-sm textarea.form-control,
|
|
7502
|
-
.form-group-sm .form-control.form-control-textarea
|
|
7503
|
-
height: 120px;
|
|
7504
|
-
}
|
|
7505
|
-
|
|
7506
|
-
textarea.form-control-sm,
|
|
7441
|
+
.form-group-sm .form-control.form-control-textarea, textarea.form-control-sm,
|
|
7507
7442
|
.form-control-sm.form-control-textarea {
|
|
7508
7443
|
height: 120px;
|
|
7509
7444
|
}
|
|
7510
|
-
|
|
7511
7445
|
.form-group {
|
|
7512
7446
|
margin-bottom: 1rem;
|
|
7513
7447
|
}
|
|
@@ -7891,7 +7825,7 @@ button.link-outline {
|
|
|
7891
7825
|
background-color: transparent;
|
|
7892
7826
|
border-color: transparent;
|
|
7893
7827
|
border-radius: 0.25rem;
|
|
7894
|
-
border-width:
|
|
7828
|
+
border-width: 0px;
|
|
7895
7829
|
color: #6c757d;
|
|
7896
7830
|
display: inline-flex;
|
|
7897
7831
|
height: 1.9375rem;
|
|
@@ -7961,7 +7895,7 @@ button.link-outline {
|
|
|
7961
7895
|
flex-direction: column;
|
|
7962
7896
|
}
|
|
7963
7897
|
.clay-range .input-group-text {
|
|
7964
|
-
border-width:
|
|
7898
|
+
border-width: 0px;
|
|
7965
7899
|
color: #212529;
|
|
7966
7900
|
font-size: 0.875rem;
|
|
7967
7901
|
font-weight: 500;
|
|
@@ -8049,7 +7983,7 @@ button.link-outline {
|
|
|
8049
7983
|
.clay-range-input .clay-range-thumb {
|
|
8050
7984
|
background-color: #fff;
|
|
8051
7985
|
border-radius: 100px;
|
|
8052
|
-
border-width:
|
|
7986
|
+
border-width: 0px;
|
|
8053
7987
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8054
7988
|
height: 1.5rem;
|
|
8055
7989
|
margin-top: -0.75rem;
|
|
@@ -8079,7 +8013,7 @@ button.link-outline {
|
|
|
8079
8013
|
appearance: none;
|
|
8080
8014
|
background-color: #fff;
|
|
8081
8015
|
border-radius: 100px;
|
|
8082
|
-
border-width:
|
|
8016
|
+
border-width: 0px;
|
|
8083
8017
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8084
8018
|
height: 1.5rem;
|
|
8085
8019
|
margin-top: -0.75rem;
|
|
@@ -8102,7 +8036,7 @@ button.link-outline {
|
|
|
8102
8036
|
appearance: none;
|
|
8103
8037
|
background-color: #fff;
|
|
8104
8038
|
border-radius: 100px;
|
|
8105
|
-
border-width:
|
|
8039
|
+
border-width: 0px;
|
|
8106
8040
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8107
8041
|
height: 1.5rem;
|
|
8108
8042
|
width: 1.5rem;
|
|
@@ -8128,7 +8062,7 @@ button.link-outline {
|
|
|
8128
8062
|
appearance: none;
|
|
8129
8063
|
background-color: #fff;
|
|
8130
8064
|
border-radius: 100px;
|
|
8131
|
-
border-width:
|
|
8065
|
+
border-width: 0px;
|
|
8132
8066
|
box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.3);
|
|
8133
8067
|
height: 1.5rem;
|
|
8134
8068
|
margin-top: -0.75rem;
|
|
@@ -9031,7 +8965,7 @@ label.custom-control-label {
|
|
|
9031
8965
|
.clay-time-inner-spin .btn {
|
|
9032
8966
|
align-items: center;
|
|
9033
8967
|
border-radius: 8px;
|
|
9034
|
-
border-width:
|
|
8968
|
+
border-width: 0px;
|
|
9035
8969
|
display: inline-flex;
|
|
9036
8970
|
font-size: 8px;
|
|
9037
8971
|
height: auto;
|
|
@@ -9146,7 +9080,7 @@ label.custom-control-label {
|
|
|
9146
9080
|
|
|
9147
9081
|
.date-picker-calendar-item {
|
|
9148
9082
|
align-items: center;
|
|
9149
|
-
border-width:
|
|
9083
|
+
border-width: 0px;
|
|
9150
9084
|
display: inline-flex;
|
|
9151
9085
|
flex-shrink: 0;
|
|
9152
9086
|
font-weight: 500;
|
|
@@ -10878,8 +10812,8 @@ label.custom-control-label {
|
|
|
10878
10812
|
}
|
|
10879
10813
|
.list-group-notification .list-group-item-primary {
|
|
10880
10814
|
background-color: #fff;
|
|
10881
|
-
border-bottom-left-radius:
|
|
10882
|
-
border-top-left-radius:
|
|
10815
|
+
border-bottom-left-radius: 0px;
|
|
10816
|
+
border-top-left-radius: 0px;
|
|
10883
10817
|
box-shadow: inset 0.5rem 0 #b8daff, inset -0.0625rem 0 rgba(0, 0, 0, 0.125), inset 0 0.0625rem rgba(0, 0, 0, 0.125), inset 0 -0.0625rem rgba(0, 0, 0, 0.125);
|
|
10884
10818
|
}
|
|
10885
10819
|
.list-group-notification .list-group-item-primary.active {
|
|
@@ -11552,7 +11486,7 @@ label.custom-control-label {
|
|
|
11552
11486
|
align-items: center;
|
|
11553
11487
|
background-color: #e9ecef;
|
|
11554
11488
|
border-radius: 0.25rem;
|
|
11555
|
-
border-width:
|
|
11489
|
+
border-width: 0px;
|
|
11556
11490
|
color: rgba(0, 0, 0, 0.5);
|
|
11557
11491
|
cursor: pointer;
|
|
11558
11492
|
display: flex;
|
|
@@ -15298,6 +15232,12 @@ label.custom-control-label {
|
|
|
15298
15232
|
.management-bar-primary .navbar-nav .btn-unstyled.active {
|
|
15299
15233
|
color: rgba(0, 0, 0, 0.9);
|
|
15300
15234
|
}
|
|
15235
|
+
.management-bar-primary .navbar-nav .nav-link:disabled, .management-bar-primary .navbar-nav .nav-link.disabled,
|
|
15236
|
+
.management-bar-primary .navbar-nav .btn-unstyled:disabled,
|
|
15237
|
+
.management-bar-primary .navbar-nav .btn-unstyled.disabled {
|
|
15238
|
+
color: rgba(0, 0, 0, 0.3);
|
|
15239
|
+
opacity: 1;
|
|
15240
|
+
}
|
|
15301
15241
|
.management-bar-primary .navbar-nav .nav-link[aria-expanded=true], .management-bar-primary .navbar-nav .nav-link.show,
|
|
15302
15242
|
.management-bar-primary .navbar-nav .btn-unstyled[aria-expanded=true],
|
|
15303
15243
|
.management-bar-primary .navbar-nav .btn-unstyled.show {
|
|
@@ -15309,6 +15249,10 @@ label.custom-control-label {
|
|
|
15309
15249
|
.management-bar-primary .navbar-brand.active {
|
|
15310
15250
|
color: rgba(0, 0, 0, 0.9);
|
|
15311
15251
|
}
|
|
15252
|
+
.management-bar-primary .navbar-brand:disabled, .management-bar-primary .navbar-brand.disabled {
|
|
15253
|
+
color: rgba(0, 0, 0, 0.3);
|
|
15254
|
+
opacity: 1;
|
|
15255
|
+
}
|
|
15312
15256
|
.management-bar-primary .navbar-brand[aria-expanded=true], .management-bar-primary .navbar-brand.show {
|
|
15313
15257
|
color: rgba(0, 0, 0, 0.9);
|
|
15314
15258
|
}
|
|
@@ -15896,7 +15840,7 @@ label.custom-control-label {
|
|
|
15896
15840
|
.page-link {
|
|
15897
15841
|
align-items: center;
|
|
15898
15842
|
background-color: #fff;
|
|
15899
|
-
border-radius:
|
|
15843
|
+
border-radius: 0px;
|
|
15900
15844
|
border-color: #dee2e6;
|
|
15901
15845
|
border-style: solid;
|
|
15902
15846
|
border-width: 0.0625rem;
|
|
@@ -16454,13 +16398,13 @@ label.custom-control-label {
|
|
|
16454
16398
|
}
|
|
16455
16399
|
.panel-unstyled {
|
|
16456
16400
|
background-color: transparent;
|
|
16457
|
-
border-radius:
|
|
16458
|
-
border-width:
|
|
16401
|
+
border-radius: 0px;
|
|
16402
|
+
border-width: 0px;
|
|
16459
16403
|
margin-bottom: 1.5rem;
|
|
16460
16404
|
}
|
|
16461
16405
|
.panel-unstyled .panel-header {
|
|
16462
16406
|
border-color: #adb5bd;
|
|
16463
|
-
border-radius:
|
|
16407
|
+
border-radius: 0px;
|
|
16464
16408
|
border-style: solid;
|
|
16465
16409
|
border-width: 0 0 1px 0;
|
|
16466
16410
|
padding-left: 0;
|
|
@@ -16532,7 +16476,17 @@ label.custom-control-label {
|
|
|
16532
16476
|
.popover .inline-scroller {
|
|
16533
16477
|
max-height: 14.75rem;
|
|
16534
16478
|
}
|
|
16535
|
-
|
|
16479
|
+
.popover-secondary {
|
|
16480
|
+
box-shadow: 0 8px 16px 0 rgba(0, 123, 255, 0.16);
|
|
16481
|
+
}
|
|
16482
|
+
.popover-secondary .popover-header {
|
|
16483
|
+
background-color: transparent;
|
|
16484
|
+
border-color: transparent;
|
|
16485
|
+
padding-bottom: 0;
|
|
16486
|
+
}
|
|
16487
|
+
.popover-secondary .close {
|
|
16488
|
+
color: #6c757d;
|
|
16489
|
+
}
|
|
16536
16490
|
.bs-popover-bottom,
|
|
16537
16491
|
.bs-popover-auto[x-placement^=bottom] {
|
|
16538
16492
|
margin-top: 0.5rem;
|
|
@@ -16656,14 +16610,15 @@ label.custom-control-label {
|
|
|
16656
16610
|
.popover-header:empty {
|
|
16657
16611
|
display: none;
|
|
16658
16612
|
}
|
|
16659
|
-
|
|
16660
16613
|
.popover-body {
|
|
16661
16614
|
border-bottom-left-radius: 0.2375rem;
|
|
16662
16615
|
border-bottom-right-radius: 0.2375rem;
|
|
16663
16616
|
color: #212529;
|
|
16664
16617
|
padding: 0.5rem 0.75rem;
|
|
16665
16618
|
}
|
|
16666
|
-
|
|
16619
|
+
.popover-width-lg {
|
|
16620
|
+
max-width: 421px;
|
|
16621
|
+
}
|
|
16667
16622
|
.clay-popover-top,
|
|
16668
16623
|
.clay-popover-top-left,
|
|
16669
16624
|
.clay-popover-top-right {
|
|
@@ -17149,7 +17104,7 @@ a.sheet-subtitle:hover {
|
|
|
17149
17104
|
}
|
|
17150
17105
|
|
|
17151
17106
|
.sheet-dataset-content .sheet-header {
|
|
17152
|
-
border-width:
|
|
17107
|
+
border-width: 0px;
|
|
17153
17108
|
margin: -1.5rem -1.5rem 1.5rem;
|
|
17154
17109
|
padding: 1rem 1.5rem;
|
|
17155
17110
|
}
|
|
@@ -17696,8 +17651,8 @@ caption {
|
|
|
17696
17651
|
.table thead td,
|
|
17697
17652
|
.table thead th {
|
|
17698
17653
|
background-color: #fff;
|
|
17699
|
-
border-bottom: 0.
|
|
17700
|
-
border-top-width:
|
|
17654
|
+
border-bottom: calc(2 * 0.0625rem) solid #dee2e6;
|
|
17655
|
+
border-top-width: 0px;
|
|
17701
17656
|
vertical-align: bottom;
|
|
17702
17657
|
}
|
|
17703
17658
|
.table th {
|
|
@@ -17712,8 +17667,8 @@ caption {
|
|
|
17712
17667
|
.table td {
|
|
17713
17668
|
background-clip: padding-box;
|
|
17714
17669
|
border-bottom-width: 0.0625rem;
|
|
17715
|
-
border-left-width:
|
|
17716
|
-
border-right-width:
|
|
17670
|
+
border-left-width: 0px;
|
|
17671
|
+
border-right-width: 0px;
|
|
17717
17672
|
border-top-width: 0.0625rem;
|
|
17718
17673
|
border-color: #dee2e6;
|
|
17719
17674
|
border-style: solid;
|
|
@@ -17732,7 +17687,7 @@ caption {
|
|
|
17732
17687
|
padding-right: 15px;
|
|
17733
17688
|
}
|
|
17734
17689
|
.table tbody + tbody {
|
|
17735
|
-
border-top: 0.
|
|
17690
|
+
border-top: calc(2 * 0.0625rem) solid #dee2e6;
|
|
17736
17691
|
}
|
|
17737
17692
|
.table caption {
|
|
17738
17693
|
caption-side: top;
|
|
@@ -17769,8 +17724,7 @@ caption {
|
|
|
17769
17724
|
}
|
|
17770
17725
|
.table-bordered thead td,
|
|
17771
17726
|
.table-bordered thead th {
|
|
17772
|
-
border-bottom-width: 0.
|
|
17773
|
-
border-top-width: 0.0625rem;
|
|
17727
|
+
border-bottom-width: calc(2 * 0.0625rem);
|
|
17774
17728
|
}
|
|
17775
17729
|
.table-bordered td,
|
|
17776
17730
|
.table-bordered th {
|
|
@@ -18924,8 +18878,8 @@ caption {
|
|
|
18924
18878
|
padding-right: 0.25rem;
|
|
18925
18879
|
}
|
|
18926
18880
|
.subnav-tbar-primary .tbar-link-monospaced {
|
|
18927
|
-
border-radius:
|
|
18928
|
-
border-width:
|
|
18881
|
+
border-radius: 0px;
|
|
18882
|
+
border-width: 0px;
|
|
18929
18883
|
height: 3rem;
|
|
18930
18884
|
margin-bottom: -0.625rem;
|
|
18931
18885
|
margin-top: -0.625rem;
|
|
@@ -19013,8 +18967,8 @@ caption {
|
|
|
19013
18967
|
}
|
|
19014
18968
|
.tbar-stacked .tbar-btn-monospaced {
|
|
19015
18969
|
border-color: transparent;
|
|
19016
|
-
border-radius:
|
|
19017
|
-
border-width:
|
|
18970
|
+
border-radius: 0px;
|
|
18971
|
+
border-width: 0px;
|
|
19018
18972
|
color: inherit;
|
|
19019
18973
|
height: 2.5rem;
|
|
19020
18974
|
margin-bottom: 0;
|
|
@@ -19028,10 +18982,10 @@ caption {
|
|
|
19028
18982
|
width: 2.5rem;
|
|
19029
18983
|
}
|
|
19030
18984
|
.tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
|
|
19031
|
-
box-shadow: inset 0 0 0 0.125rem #75b8ff
|
|
18985
|
+
box-shadow: inset 0 0 0 0.125rem #75b8ff, inset 0 0 0 0.25rem #fff;
|
|
19032
18986
|
}
|
|
19033
18987
|
.tbar-stacked .tbar-btn-monospaced:active:focus {
|
|
19034
|
-
box-shadow: inset 0 0 0 0.125rem #75b8ff
|
|
18988
|
+
box-shadow: inset 0 0 0 0.125rem #75b8ff, inset 0 0 0 0.25rem #fff;
|
|
19035
18989
|
}
|
|
19036
18990
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
19037
18991
|
margin-bottom: 0;
|
|
@@ -19044,7 +18998,7 @@ caption {
|
|
|
19044
18998
|
}
|
|
19045
18999
|
.tbar-light {
|
|
19046
19000
|
background-color: #fff;
|
|
19047
|
-
box-shadow: inset 1px 0 0 0 #e9ecef
|
|
19001
|
+
box-shadow: inset 1px 0 0 0 #e9ecef, inset -1px 0 0 0 #e9ecef;
|
|
19048
19002
|
color: #6c757d;
|
|
19049
19003
|
}
|
|
19050
19004
|
.tbar-light .tbar-divider-before::before {
|
|
@@ -19079,7 +19033,7 @@ caption {
|
|
|
19079
19033
|
}
|
|
19080
19034
|
.tbar-dark-l2 {
|
|
19081
19035
|
background-color: #828e9a;
|
|
19082
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
19036
|
+
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
19083
19037
|
border-color: rgba(255, 255, 255, 0.06);
|
|
19084
19038
|
color: #adb5bd;
|
|
19085
19039
|
}
|
|
@@ -19115,7 +19069,7 @@ caption {
|
|
|
19115
19069
|
}
|
|
19116
19070
|
.tbar-dark-d1 {
|
|
19117
19071
|
background-color: #23272b;
|
|
19118
|
-
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06)
|
|
19072
|
+
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
19119
19073
|
color: #adb5bd;
|
|
19120
19074
|
}
|
|
19121
19075
|
.tbar-dark-d1 .tbar-divider-before::before {
|
|
@@ -20241,7 +20195,7 @@ caption {
|
|
|
20241
20195
|
appearance: none;
|
|
20242
20196
|
background-color: transparent;
|
|
20243
20197
|
border-radius: 0.2rem;
|
|
20244
|
-
border-width:
|
|
20198
|
+
border-width: 0px;
|
|
20245
20199
|
color: #000;
|
|
20246
20200
|
cursor: pointer;
|
|
20247
20201
|
display: inline-flex;
|
|
@@ -23185,7 +23139,7 @@ button.bg-dark:focus {
|
|
|
23185
23139
|
}
|
|
23186
23140
|
|
|
23187
23141
|
.rounded-0 {
|
|
23188
|
-
border-radius:
|
|
23142
|
+
border-radius: 0px !important;
|
|
23189
23143
|
}
|
|
23190
23144
|
|
|
23191
23145
|
.clearfix::after {
|