@deviceinsight/ng-ui-components 7.14.0 → 7.15.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/dist/style.css CHANGED
@@ -1276,56 +1276,860 @@ a .di.label:active {background-color:rgba(0,0,0,.1);}
1276
1276
  border-width: 4px 4px 0;
1277
1277
  border-top-color: #6c6c6c;
1278
1278
  }
1279
+ :root {
1280
+ --toastify-color-light: #fff;
1281
+ --toastify-color-dark: #121212;
1282
+ --toastify-color-info: #3498db;
1283
+ --toastify-color-success: #07bc0c;
1284
+ --toastify-color-warning: #f1c40f;
1285
+ --toastify-color-error: hsl(6, 78%, 57%);
1286
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
1287
+
1288
+ --toastify-icon-color-info: var(--toastify-color-info);
1289
+ --toastify-icon-color-success: var(--toastify-color-success);
1290
+ --toastify-icon-color-warning: var(--toastify-color-warning);
1291
+ --toastify-icon-color-error: var(--toastify-color-error);
1292
+
1293
+ --toastify-container-width: fit-content;
1294
+ --toastify-toast-width: 320px;
1295
+ --toastify-toast-offset: 16px;
1296
+ --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
1297
+ --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
1298
+ --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
1299
+ --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
1300
+ --toastify-toast-background: #fff;
1301
+ --toastify-toast-padding: 14px;
1302
+ --toastify-toast-min-height: 64px;
1303
+ --toastify-toast-max-height: 800px;
1304
+ --toastify-toast-bd-radius: 6px;
1305
+ --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
1306
+ --toastify-font-family: sans-serif;
1307
+ --toastify-z-index: 9999;
1308
+ --toastify-text-color-light: #757575;
1309
+ --toastify-text-color-dark: #fff;
1310
+
1311
+ /* Used only for colored theme */
1312
+ --toastify-text-color-info: #fff;
1313
+ --toastify-text-color-success: #fff;
1314
+ --toastify-text-color-warning: #fff;
1315
+ --toastify-text-color-error: #fff;
1316
+
1317
+ --toastify-spinner-color: #616161;
1318
+ --toastify-spinner-color-empty-area: #e0e0e0;
1319
+ --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
1320
+ --toastify-color-progress-dark: #bb86fc;
1321
+ --toastify-color-progress-info: var(--toastify-color-info);
1322
+ --toastify-color-progress-success: var(--toastify-color-success);
1323
+ --toastify-color-progress-warning: var(--toastify-color-warning);
1324
+ --toastify-color-progress-error: var(--toastify-color-error);
1325
+ /* used to control the opacity of the progress trail */
1326
+ --toastify-color-progress-bgo: 0.2;
1327
+ }
1328
+
1329
+ .Toastify__toast-container {
1330
+ z-index: var(--toastify-z-index);
1331
+ -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
1332
+ position: fixed;
1333
+ width: var(--toastify-container-width);
1334
+ box-sizing: border-box;
1335
+ color: #fff;
1336
+ display: flex;
1337
+ flex-direction: column;
1338
+ }
1339
+
1340
+ .Toastify__toast-container--top-left {
1341
+ top: var(--toastify-toast-top);
1342
+ left: var(--toastify-toast-left);
1343
+ }
1344
+ .Toastify__toast-container--top-center {
1345
+ top: var(--toastify-toast-top);
1346
+ left: 50%;
1347
+ transform: translateX(-50%);
1348
+ align-items: center;
1349
+ }
1350
+ .Toastify__toast-container--top-right {
1351
+ top: var(--toastify-toast-top);
1352
+ right: var(--toastify-toast-right);
1353
+ align-items: end;
1354
+ }
1355
+ .Toastify__toast-container--bottom-left {
1356
+ bottom: var(--toastify-toast-bottom);
1357
+ left: var(--toastify-toast-left);
1358
+ }
1359
+ .Toastify__toast-container--bottom-center {
1360
+ bottom: var(--toastify-toast-bottom);
1361
+ left: 50%;
1362
+ transform: translateX(-50%);
1363
+ align-items: center;
1364
+ }
1365
+ .Toastify__toast-container--bottom-right {
1366
+ bottom: var(--toastify-toast-bottom);
1367
+ right: var(--toastify-toast-right);
1368
+ align-items: end;
1369
+ }
1370
+
1371
+ .Toastify__toast {
1372
+ --y: 0px;
1373
+ position: relative;
1374
+ touch-action: none;
1375
+ width: var(--toastify-toast-width);
1376
+ min-height: var(--toastify-toast-min-height);
1377
+ box-sizing: border-box;
1378
+ margin-bottom: 1rem;
1379
+ padding: var(--toastify-toast-padding);
1380
+ border-radius: var(--toastify-toast-bd-radius);
1381
+ box-shadow: var(--toastify-toast-shadow);
1382
+ max-height: var(--toastify-toast-max-height);
1383
+ font-family: var(--toastify-font-family);
1384
+ /* webkit only issue #791 */
1385
+ z-index: 0;
1386
+ /* inner swag */
1387
+ display: flex;
1388
+ flex: 1 auto;
1389
+ align-items: center;
1390
+ word-break: break-word;
1391
+ }
1392
+
1393
+ @media only screen and (max-width: 480px) {
1394
+ .Toastify__toast-container {
1395
+ width: 100vw;
1396
+ left: env(safe-area-inset-left);
1397
+ margin: 0;
1398
+ }
1399
+ .Toastify__toast-container--top-left,
1400
+ .Toastify__toast-container--top-center,
1401
+ .Toastify__toast-container--top-right {
1402
+ top: env(safe-area-inset-top);
1403
+ transform: translateX(0);
1404
+ }
1405
+ .Toastify__toast-container--bottom-left,
1406
+ .Toastify__toast-container--bottom-center,
1407
+ .Toastify__toast-container--bottom-right {
1408
+ bottom: env(safe-area-inset-bottom);
1409
+ transform: translateX(0);
1410
+ }
1411
+ .Toastify__toast-container--rtl {
1412
+ right: env(safe-area-inset-right);
1413
+ left: initial;
1414
+ }
1415
+ .Toastify__toast {
1416
+ --toastify-toast-width: 100%;
1417
+ margin-bottom: 0;
1418
+ border-radius: 0;
1419
+ }
1420
+ }
1421
+
1422
+ .Toastify__toast-container[data-stacked='true'] {
1423
+ width: var(--toastify-toast-width);
1424
+ }
1425
+
1426
+ @media only screen and (max-width: 480px) {
1427
+ .Toastify__toast-container[data-stacked='true'] {
1428
+ width: 100vw;
1429
+ }
1430
+ }
1431
+
1432
+ .Toastify__toast--stacked {
1433
+ position: absolute;
1434
+ width: 100%;
1435
+ transform: translate3d(0, var(--y), 0) scale(var(--s));
1436
+ transition: transform 0.3s;
1437
+ }
1438
+
1439
+ .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
1440
+ .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
1441
+ transition: opacity 0.1s;
1442
+ }
1443
+
1444
+ .Toastify__toast--stacked[data-collapsed='false'] {
1445
+ overflow: visible;
1446
+ }
1447
+
1448
+ .Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
1449
+ opacity: 0;
1450
+ }
1451
+
1452
+ .Toastify__toast--stacked:after {
1453
+ content: '';
1454
+ position: absolute;
1455
+ left: 0;
1456
+ right: 0;
1457
+ height: calc(var(--g) * 1px);
1458
+ bottom: 100%;
1459
+ }
1460
+
1461
+ .Toastify__toast--stacked[data-pos='top'] {
1462
+ top: 0;
1463
+ }
1464
+
1465
+ .Toastify__toast--stacked[data-pos='bot'] {
1466
+ bottom: 0;
1467
+ }
1468
+
1469
+ .Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
1470
+ transform-origin: top;
1471
+ }
1472
+
1473
+ .Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
1474
+ transform-origin: bottom;
1475
+ }
1476
+
1477
+ .Toastify__toast--stacked:before {
1478
+ content: '';
1479
+ position: absolute;
1480
+ left: 0;
1481
+ right: 0;
1482
+ bottom: 0;
1483
+ height: 100%;
1484
+ transform: scaleY(3);
1485
+ z-index: -1;
1486
+ }
1487
+
1488
+ .Toastify__toast--rtl {
1489
+ direction: rtl;
1490
+ }
1491
+
1492
+ .Toastify__toast--close-on-click {
1493
+ cursor: pointer;
1494
+ }
1495
+
1496
+ .Toastify__toast-icon {
1497
+ margin-inline-end: 10px;
1498
+ width: 22px;
1499
+ flex-shrink: 0;
1500
+ display: flex;
1501
+ }
1502
+
1503
+ .Toastify--animate {
1504
+ animation-fill-mode: both;
1505
+ animation-duration: 0.5s;
1506
+ }
1507
+
1508
+ .Toastify--animate-icon {
1509
+ animation-fill-mode: both;
1510
+ animation-duration: 0.3s;
1511
+ }
1512
+
1513
+ .Toastify__toast-theme--dark {
1514
+ background: var(--toastify-color-dark);
1515
+ color: var(--toastify-text-color-dark);
1516
+ }
1517
+
1518
+ .Toastify__toast-theme--light {
1519
+ background: var(--toastify-color-light);
1520
+ color: var(--toastify-text-color-light);
1521
+ }
1522
+
1523
+ .Toastify__toast-theme--colored.Toastify__toast--default {
1524
+ background: var(--toastify-color-light);
1525
+ color: var(--toastify-text-color-light);
1526
+ }
1527
+
1528
+ .Toastify__toast-theme--colored.Toastify__toast--info {
1529
+ color: var(--toastify-text-color-info);
1530
+ background: var(--toastify-color-info);
1531
+ }
1532
+
1533
+ .Toastify__toast-theme--colored.Toastify__toast--success {
1534
+ color: var(--toastify-text-color-success);
1535
+ background: var(--toastify-color-success);
1536
+ }
1537
+
1538
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
1539
+ color: var(--toastify-text-color-warning);
1540
+ background: var(--toastify-color-warning);
1541
+ }
1542
+
1543
+ .Toastify__toast-theme--colored.Toastify__toast--error {
1544
+ color: var(--toastify-text-color-error);
1545
+ background: var(--toastify-color-error);
1546
+ }
1547
+
1548
+ .Toastify__progress-bar-theme--light {
1549
+ background: var(--toastify-color-progress-light);
1550
+ }
1551
+
1552
+ .Toastify__progress-bar-theme--dark {
1553
+ background: var(--toastify-color-progress-dark);
1554
+ }
1555
+
1556
+ .Toastify__progress-bar--info {
1557
+ background: var(--toastify-color-progress-info);
1558
+ }
1559
+
1560
+ .Toastify__progress-bar--success {
1561
+ background: var(--toastify-color-progress-success);
1562
+ }
1563
+
1564
+ .Toastify__progress-bar--warning {
1565
+ background: var(--toastify-color-progress-warning);
1566
+ }
1567
+
1568
+ .Toastify__progress-bar--error {
1569
+ background: var(--toastify-color-progress-error);
1570
+ }
1571
+
1572
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
1573
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
1574
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
1575
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
1576
+ background: var(--toastify-color-transparent);
1577
+ }
1578
+
1579
+ .Toastify__close-button {
1580
+ color: #fff;
1581
+ position: absolute;
1582
+ top: 6px;
1583
+ right: 6px;
1584
+ background: transparent;
1585
+ outline: none;
1586
+ border: none;
1587
+ padding: 0;
1588
+ cursor: pointer;
1589
+ opacity: 0.7;
1590
+ transition: 0.3s ease;
1591
+ z-index: 1;
1592
+ }
1593
+
1594
+ .Toastify__toast--rtl .Toastify__close-button {
1595
+ left: 6px;
1596
+ right: unset;
1597
+ }
1598
+
1599
+ .Toastify__close-button--light {
1600
+ color: #000;
1601
+ opacity: 0.3;
1602
+ }
1603
+
1604
+ .Toastify__close-button > svg {
1605
+ fill: currentColor;
1606
+ height: 16px;
1607
+ width: 14px;
1608
+ }
1609
+
1610
+ .Toastify__close-button:hover,
1611
+ .Toastify__close-button:focus {
1612
+ opacity: 1;
1613
+ }
1614
+
1615
+ @keyframes Toastify__trackProgress {
1616
+ 0% {
1617
+ transform: scaleX(1);
1618
+ }
1619
+ 100% {
1620
+ transform: scaleX(0);
1621
+ }
1622
+ }
1623
+
1624
+ .Toastify__progress-bar {
1625
+ position: absolute;
1626
+ bottom: 0;
1627
+ left: 0;
1628
+ width: 100%;
1629
+ height: 100%;
1630
+ z-index: 1;
1631
+ opacity: 0.7;
1632
+ transform-origin: left;
1633
+ }
1634
+
1635
+ .Toastify__progress-bar--animated {
1636
+ animation: Toastify__trackProgress linear 1 forwards;
1637
+ }
1638
+
1639
+ .Toastify__progress-bar--controlled {
1640
+ transition: transform 0.2s;
1641
+ }
1642
+
1643
+ .Toastify__progress-bar--rtl {
1644
+ right: 0;
1645
+ left: initial;
1646
+ transform-origin: right;
1647
+ border-bottom-left-radius: initial;
1648
+ }
1649
+
1650
+ .Toastify__progress-bar--wrp {
1651
+ position: absolute;
1652
+ overflow: hidden;
1653
+ bottom: 0;
1654
+ left: 0;
1655
+ width: 100%;
1656
+ height: 5px;
1657
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
1658
+ border-bottom-right-radius: var(--toastify-toast-bd-radius);
1659
+ }
1660
+
1661
+ .Toastify__progress-bar--wrp[data-hidden='true'] {
1662
+ opacity: 0;
1663
+ }
1664
+
1665
+ .Toastify__progress-bar--bg {
1666
+ opacity: var(--toastify-color-progress-bgo);
1667
+ width: 100%;
1668
+ height: 100%;
1669
+ }
1670
+
1671
+ .Toastify__spinner {
1672
+ width: 20px;
1673
+ height: 20px;
1674
+ box-sizing: border-box;
1675
+ border: 2px solid;
1676
+ border-radius: 100%;
1677
+ border-color: var(--toastify-spinner-color-empty-area);
1678
+ border-right-color: var(--toastify-spinner-color);
1679
+ animation: Toastify__spin 0.65s linear infinite;
1680
+ }
1681
+
1682
+ @keyframes Toastify__bounceInRight {
1683
+ from,
1684
+ 60%,
1685
+ 75%,
1686
+ 90%,
1687
+ to {
1688
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1689
+ }
1690
+ from {
1691
+ opacity: 0;
1692
+ transform: translate3d(3000px, 0, 0);
1693
+ }
1694
+ 60% {
1695
+ opacity: 1;
1696
+ transform: translate3d(-25px, 0, 0);
1697
+ }
1698
+ 75% {
1699
+ transform: translate3d(10px, 0, 0);
1700
+ }
1701
+ 90% {
1702
+ transform: translate3d(-5px, 0, 0);
1703
+ }
1704
+ to {
1705
+ transform: none;
1706
+ }
1707
+ }
1708
+
1709
+ @keyframes Toastify__bounceOutRight {
1710
+ 20% {
1711
+ opacity: 1;
1712
+ transform: translate3d(-20px, var(--y), 0);
1713
+ }
1714
+ to {
1715
+ opacity: 0;
1716
+ transform: translate3d(2000px, var(--y), 0);
1717
+ }
1718
+ }
1719
+
1720
+ @keyframes Toastify__bounceInLeft {
1721
+ from,
1722
+ 60%,
1723
+ 75%,
1724
+ 90%,
1725
+ to {
1726
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1727
+ }
1728
+ 0% {
1729
+ opacity: 0;
1730
+ transform: translate3d(-3000px, 0, 0);
1731
+ }
1732
+ 60% {
1733
+ opacity: 1;
1734
+ transform: translate3d(25px, 0, 0);
1735
+ }
1736
+ 75% {
1737
+ transform: translate3d(-10px, 0, 0);
1738
+ }
1739
+ 90% {
1740
+ transform: translate3d(5px, 0, 0);
1741
+ }
1742
+ to {
1743
+ transform: none;
1744
+ }
1745
+ }
1746
+
1747
+ @keyframes Toastify__bounceOutLeft {
1748
+ 20% {
1749
+ opacity: 1;
1750
+ transform: translate3d(20px, var(--y), 0);
1751
+ }
1752
+ to {
1753
+ opacity: 0;
1754
+ transform: translate3d(-2000px, var(--y), 0);
1755
+ }
1756
+ }
1757
+
1758
+ @keyframes Toastify__bounceInUp {
1759
+ from,
1760
+ 60%,
1761
+ 75%,
1762
+ 90%,
1763
+ to {
1764
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1765
+ }
1766
+ from {
1767
+ opacity: 0;
1768
+ transform: translate3d(0, 3000px, 0);
1769
+ }
1770
+ 60% {
1771
+ opacity: 1;
1772
+ transform: translate3d(0, -20px, 0);
1773
+ }
1774
+ 75% {
1775
+ transform: translate3d(0, 10px, 0);
1776
+ }
1777
+ 90% {
1778
+ transform: translate3d(0, -5px, 0);
1779
+ }
1780
+ to {
1781
+ transform: translate3d(0, 0, 0);
1782
+ }
1783
+ }
1784
+
1785
+ @keyframes Toastify__bounceOutUp {
1786
+ 20% {
1787
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
1788
+ }
1789
+ 40%,
1790
+ 45% {
1791
+ opacity: 1;
1792
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
1793
+ }
1794
+ to {
1795
+ opacity: 0;
1796
+ transform: translate3d(0, -2000px, 0);
1797
+ }
1798
+ }
1799
+
1800
+ @keyframes Toastify__bounceInDown {
1801
+ from,
1802
+ 60%,
1803
+ 75%,
1804
+ 90%,
1805
+ to {
1806
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1807
+ }
1808
+ 0% {
1809
+ opacity: 0;
1810
+ transform: translate3d(0, -3000px, 0);
1811
+ }
1812
+ 60% {
1813
+ opacity: 1;
1814
+ transform: translate3d(0, 25px, 0);
1815
+ }
1816
+ 75% {
1817
+ transform: translate3d(0, -10px, 0);
1818
+ }
1819
+ 90% {
1820
+ transform: translate3d(0, 5px, 0);
1821
+ }
1822
+ to {
1823
+ transform: none;
1824
+ }
1825
+ }
1826
+
1827
+ @keyframes Toastify__bounceOutDown {
1828
+ 20% {
1829
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
1830
+ }
1831
+ 40%,
1832
+ 45% {
1833
+ opacity: 1;
1834
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
1835
+ }
1836
+ to {
1837
+ opacity: 0;
1838
+ transform: translate3d(0, 2000px, 0);
1839
+ }
1840
+ }
1841
+
1842
+ .Toastify__bounce-enter--top-left,
1843
+ .Toastify__bounce-enter--bottom-left {
1844
+ animation-name: Toastify__bounceInLeft;
1845
+ }
1846
+
1847
+ .Toastify__bounce-enter--top-right,
1848
+ .Toastify__bounce-enter--bottom-right {
1849
+ animation-name: Toastify__bounceInRight;
1850
+ }
1851
+
1852
+ .Toastify__bounce-enter--top-center {
1853
+ animation-name: Toastify__bounceInDown;
1854
+ }
1855
+
1856
+ .Toastify__bounce-enter--bottom-center {
1857
+ animation-name: Toastify__bounceInUp;
1858
+ }
1859
+
1860
+ .Toastify__bounce-exit--top-left,
1861
+ .Toastify__bounce-exit--bottom-left {
1862
+ animation-name: Toastify__bounceOutLeft;
1863
+ }
1864
+
1865
+ .Toastify__bounce-exit--top-right,
1866
+ .Toastify__bounce-exit--bottom-right {
1867
+ animation-name: Toastify__bounceOutRight;
1868
+ }
1869
+
1870
+ .Toastify__bounce-exit--top-center {
1871
+ animation-name: Toastify__bounceOutUp;
1872
+ }
1873
+
1874
+ .Toastify__bounce-exit--bottom-center {
1875
+ animation-name: Toastify__bounceOutDown;
1876
+ }
1877
+
1878
+ @keyframes Toastify__zoomIn {
1879
+ from {
1880
+ opacity: 0;
1881
+ transform: scale3d(0.3, 0.3, 0.3);
1882
+ }
1883
+ 50% {
1884
+ opacity: 1;
1885
+ }
1886
+ }
1887
+
1888
+ @keyframes Toastify__zoomOut {
1889
+ from {
1890
+ opacity: 1;
1891
+ }
1892
+ 50% {
1893
+ opacity: 0;
1894
+ transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
1895
+ }
1896
+ to {
1897
+ opacity: 0;
1898
+ }
1899
+ }
1900
+
1901
+ .Toastify__zoom-enter {
1902
+ animation-name: Toastify__zoomIn;
1903
+ }
1904
+
1905
+ .Toastify__zoom-exit {
1906
+ animation-name: Toastify__zoomOut;
1907
+ }
1908
+
1909
+ @keyframes Toastify__flipIn {
1910
+ from {
1911
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1912
+ animation-timing-function: ease-in;
1913
+ opacity: 0;
1914
+ }
1915
+ 40% {
1916
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1917
+ animation-timing-function: ease-in;
1918
+ }
1919
+ 60% {
1920
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1921
+ opacity: 1;
1922
+ }
1923
+ 80% {
1924
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1925
+ }
1926
+ to {
1927
+ transform: perspective(400px);
1928
+ }
1929
+ }
1930
+
1931
+ @keyframes Toastify__flipOut {
1932
+ from {
1933
+ transform: translate3d(0, var(--y), 0) perspective(400px);
1934
+ }
1935
+ 30% {
1936
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
1937
+ opacity: 1;
1938
+ }
1939
+ to {
1940
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
1941
+ opacity: 0;
1942
+ }
1943
+ }
1944
+
1945
+ .Toastify__flip-enter {
1946
+ animation-name: Toastify__flipIn;
1947
+ }
1948
+
1949
+ .Toastify__flip-exit {
1950
+ animation-name: Toastify__flipOut;
1951
+ }
1952
+
1953
+ @keyframes Toastify__slideInRight {
1954
+ from {
1955
+ transform: translate3d(110%, 0, 0);
1956
+ visibility: visible;
1957
+ }
1958
+ to {
1959
+ transform: translate3d(0, var(--y), 0);
1960
+ }
1961
+ }
1962
+
1963
+ @keyframes Toastify__slideInLeft {
1964
+ from {
1965
+ transform: translate3d(-110%, 0, 0);
1966
+ visibility: visible;
1967
+ }
1968
+ to {
1969
+ transform: translate3d(0, var(--y), 0);
1970
+ }
1971
+ }
1972
+
1973
+ @keyframes Toastify__slideInUp {
1974
+ from {
1975
+ transform: translate3d(0, 110%, 0);
1976
+ visibility: visible;
1977
+ }
1978
+ to {
1979
+ transform: translate3d(0, var(--y), 0);
1980
+ }
1981
+ }
1982
+
1983
+ @keyframes Toastify__slideInDown {
1984
+ from {
1985
+ transform: translate3d(0, -110%, 0);
1986
+ visibility: visible;
1987
+ }
1988
+ to {
1989
+ transform: translate3d(0, var(--y), 0);
1990
+ }
1991
+ }
1992
+
1993
+ @keyframes Toastify__slideOutRight {
1994
+ from {
1995
+ transform: translate3d(0, var(--y), 0);
1996
+ }
1997
+ to {
1998
+ visibility: hidden;
1999
+ transform: translate3d(110%, var(--y), 0);
2000
+ }
2001
+ }
2002
+
2003
+ @keyframes Toastify__slideOutLeft {
2004
+ from {
2005
+ transform: translate3d(0, var(--y), 0);
2006
+ }
2007
+ to {
2008
+ visibility: hidden;
2009
+ transform: translate3d(-110%, var(--y), 0);
2010
+ }
2011
+ }
2012
+
2013
+ @keyframes Toastify__slideOutDown {
2014
+ from {
2015
+ transform: translate3d(0, var(--y), 0);
2016
+ }
2017
+ to {
2018
+ visibility: hidden;
2019
+ transform: translate3d(0, 500px, 0);
2020
+ }
2021
+ }
2022
+
2023
+ @keyframes Toastify__slideOutUp {
2024
+ from {
2025
+ transform: translate3d(0, var(--y), 0);
2026
+ }
2027
+ to {
2028
+ visibility: hidden;
2029
+ transform: translate3d(0, -500px, 0);
2030
+ }
2031
+ }
2032
+
2033
+ .Toastify__slide-enter--top-left,
2034
+ .Toastify__slide-enter--bottom-left {
2035
+ animation-name: Toastify__slideInLeft;
2036
+ }
2037
+
2038
+ .Toastify__slide-enter--top-right,
2039
+ .Toastify__slide-enter--bottom-right {
2040
+ animation-name: Toastify__slideInRight;
2041
+ }
2042
+
2043
+ .Toastify__slide-enter--top-center {
2044
+ animation-name: Toastify__slideInDown;
2045
+ }
2046
+
2047
+ .Toastify__slide-enter--bottom-center {
2048
+ animation-name: Toastify__slideInUp;
2049
+ }
2050
+
2051
+ .Toastify__slide-exit--top-left,
2052
+ .Toastify__slide-exit--bottom-left {
2053
+ animation-name: Toastify__slideOutLeft;
2054
+ animation-timing-function: ease-in;
2055
+ animation-duration: 0.3s;
2056
+ }
2057
+
2058
+ .Toastify__slide-exit--top-right,
2059
+ .Toastify__slide-exit--bottom-right {
2060
+ animation-name: Toastify__slideOutRight;
2061
+ animation-timing-function: ease-in;
2062
+ animation-duration: 0.3s;
2063
+ }
2064
+
2065
+ .Toastify__slide-exit--top-center {
2066
+ animation-name: Toastify__slideOutUp;
2067
+ animation-timing-function: ease-in;
2068
+ animation-duration: 0.3s;
2069
+ }
2070
+
2071
+ .Toastify__slide-exit--bottom-center {
2072
+ animation-name: Toastify__slideOutDown;
2073
+ animation-timing-function: ease-in;
2074
+ animation-duration: 0.3s;
2075
+ }
2076
+
2077
+ @keyframes Toastify__spin {
2078
+ from {
2079
+ transform: rotate(0deg);
2080
+ }
2081
+ to {
2082
+ transform: rotate(360deg);
2083
+ }
2084
+ }
1279
2085
  /* Customization of react-toastify messages/notifications. */
1280
2086
 
1281
2087
  .Toastify {
1282
- z-index: 999999;
1283
- position: fixed;
2088
+ --toastify-z-index: 999999;
1284
2089
  --toastify-toast-width: 350px;
1285
2090
  --toastify-toast-min-height: 68px;
1286
2091
  --toastify-toast-padding: 0 35px 0 70px;
1287
2092
  }
1288
- .Toastify__toast {
2093
+ .Toastify .Toastify__toast {
1289
2094
  margin-bottom: -1px;
1290
2095
  border: 1px solid #fff;
1291
2096
  }
1292
- .Toastify__toast {
2097
+ .Toastify .Toastify__toast {
1293
2098
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
1294
2099
  }
1295
- .Toastify__toast-container--top-center {
2100
+ .Toastify .Toastify__toast-container--top-center {
1296
2101
  top: 0;
1297
2102
  }
1298
- .Toastify__toast-body {
2103
+ .Toastify .Toastify__toast-body {
1299
2104
  margin: auto 20px;
1300
2105
  }
1301
2106
 
1302
- .Toastify__toast-theme--colored.Toastify__toast--error {
2107
+ .Toastify .Toastify__toast-theme--colored.Toastify__toast--error {
1303
2108
  background: #ecd9d9 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQlJREFUeNpi/P//PwMtAQspivf29QmAaOeiog9ANlF6GIn1AdDAfiBVAOVOAOJCqlkANNwBSO1HE3YE4gOE9DIRGTr9RIqRbgHQ9QlAygCLFEgsgaIggkbqfSAWwKHkAxArQmmyfFCAx3AGqFwBWT4Aul4B6no4ACZPmBy6cpAvHpDqg34Sskg/SUEETZYBJFgAUutAig/6ySgV+omyAE+yJASwJlsmLMmyn4F80I+e6lhISZZEFHCwZNuAkUyxJUsKADzZMpESsaB8AMsLxEY4E5nJkuhkC4uDeiLrBFIj3JDZlo9PAVqBUBtIAPFCJlxlCJXAA1gkJ9LA8ESS6mRyARMDjQFAgAEAi9hTqMxme4UAAAAASUVORK5CYII=') no-repeat 25px center;
1304
2109
  color: rgb(130, 0, 0);
1305
2110
  }
1306
- .Toastify__toast-theme--colored.Toastify__toast--success {
2111
+ .Toastify .Toastify__toast-theme--colored.Toastify__toast--success {
1307
2112
  background: #cce0cc url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAYNJREFUeNpi/P//PwMtAQs+yY7NPYJAKhKIPYFYD4glgPgXED8B4jtAvB2Il1f4lrzHoZ+BEZsPgBIcQKoQiMuAWICAIz8AcTcQ9wMt+o5uARMWwxWA1GkgbiPCcAaomlYgPgXViwKY0AyXAVKHgViHjOAG6TkMNQPTAmiwrANiGQriVAZqBlYfFACxKRUSjimGBUDXCwGpCmokS2BEg6j/6D4AJUV+KhkOC/JsZAvcqWw4iPJAtsCAyoaDgD6yBeJUNhxuJsyCn7g0IxtAguEYyfQ5sa4kwfCXyBbcxFVYYTOQGJcDwUVkC3biKVFxBhkew0FgB7IFy4H4IzGWEGn4R6iZEAuArnoHpDoJ1A3EGs4ANQtkJqI+AGriBFIngViXwjx3BYjNgPg7SmEHrSyCgPgZBYY/BeJAmOEY9QHQElA1aAN1BTkut4FWpah1MlqY3od6EVRllpJSZSK7nFCl/x1aZU4H4ihowQWq9CWRMuYlaFJcBsTvcdnOSOtmC0CAAQDdhonhy/OiLAAAAABJRU5ErkJggg==') no-repeat 25px center;
1308
2113
  color: rgb(0, 100, 0);
1309
2114
  }
1310
2115
 
1311
- .Toastify__close-button {
2116
+ .Toastify .Toastify__close-button {
1312
2117
  top: 0;
1313
2118
  right: 0;
1314
2119
  height: 100%;
1315
2120
  padding: 5px 10px;
1316
2121
  color: #111;
1317
2122
  font-weight: normal;
1318
- align-self: auto;
1319
2123
  transition: 0.05s;
1320
2124
  background: rgba(0, 0, 0, 0.05);
1321
2125
  border-radius: 0;
1322
2126
  opacity: 1;
1323
2127
  }
1324
- .Toastify__close-button:hover {
2128
+ .Toastify .Toastify__close-button:hover {
1325
2129
  background: rgba(0, 0, 0, 0.1);
1326
2130
  }
1327
2131
 
1328
- .Toastify__toast-icon {
2132
+ .Toastify .Toastify__toast-icon {
1329
2133
  display: none;
1330
2134
  }
1331
2135