@useblu/ocean-core 1.30.1 → 1.30.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/ocean.css CHANGED
@@ -1523,84 +1523,6 @@
1523
1523
  font-weight: 400;
1524
1524
  }
1525
1525
 
1526
- .ods-typography {
1527
- margin: 0;
1528
- }
1529
- .ods-typography__heading1 {
1530
- color: #0c0d14;
1531
- font-family: "Avenir";
1532
- font-weight: 800;
1533
- line-height: 1.1;
1534
- font-size: 32px;
1535
- }
1536
- .ods-typography__heading2 {
1537
- color: #0c0d14;
1538
- font-family: "Avenir";
1539
- font-weight: 800;
1540
- line-height: 1.1;
1541
- font-size: 24px;
1542
- }
1543
- .ods-typography__heading3 {
1544
- color: #0c0d14;
1545
- font-family: "Avenir";
1546
- font-weight: 800;
1547
- line-height: 1.1;
1548
- font-size: 20px;
1549
- }
1550
- .ods-typography__heading4 {
1551
- color: #0c0d14;
1552
- font-family: "Avenir";
1553
- font-weight: 800;
1554
- line-height: 1.1;
1555
- font-size: 16px;
1556
- font-weight: 700;
1557
- line-height: 1.1;
1558
- }
1559
- .ods-typography__subtitle1 {
1560
- color: #67697a;
1561
- font-family: "Nunito Sans";
1562
- font-weight: 400;
1563
- line-height: 1.1;
1564
- font-size: 24px;
1565
- }
1566
- .ods-typography__subtitle2 {
1567
- color: #67697a;
1568
- font-family: "Nunito Sans";
1569
- font-weight: 400;
1570
- line-height: 1.1;
1571
- font-size: 20px;
1572
- }
1573
- .ods-typography__paragraph {
1574
- color: #67697a;
1575
- font-family: "Nunito Sans";
1576
- font-weight: 400;
1577
- line-height: 1.5;
1578
- font-size: 16px;
1579
- }
1580
- .ods-typography__lead {
1581
- color: #393b47;
1582
- font-family: "Nunito Sans";
1583
- font-size: 20px;
1584
- font-weight: 700;
1585
- }
1586
- .ods-typography__description {
1587
- color: #67697a;
1588
- font-family: "Nunito Sans";
1589
- font-weight: 400;
1590
- line-height: 1.5;
1591
- font-size: 14px;
1592
- }
1593
- .ods-typography__caption {
1594
- color: #67697a;
1595
- font-family: "Nunito Sans";
1596
- font-weight: 400;
1597
- line-height: 1.5;
1598
- font-size: 12px;
1599
- }
1600
- .ods-typography--inverse {
1601
- color: white;
1602
- }
1603
-
1604
1526
  .ods-alert {
1605
1527
  align-items: center;
1606
1528
  background-color: #f7f9ff;
@@ -1663,6 +1585,199 @@
1663
1585
  line-height: 1.5;
1664
1586
  }
1665
1587
 
1588
+ .ods-badge {
1589
+ display: flex;
1590
+ font-family: "Nunito Sans";
1591
+ }
1592
+ .ods-badge__content {
1593
+ align-items: center;
1594
+ background-color: #ff726e;
1595
+ border-radius: 40px;
1596
+ box-sizing: border-box;
1597
+ color: white;
1598
+ display: flex;
1599
+ font-weight: 700;
1600
+ justify-content: center;
1601
+ white-space: nowrap;
1602
+ width: auto;
1603
+ }
1604
+ .ods-badge--medium .ods-badge__content {
1605
+ font-size: 12px;
1606
+ height: 24px;
1607
+ line-height: 24px;
1608
+ min-width: 24px;
1609
+ width: 24px;
1610
+ }
1611
+ .ods-badge--small .ods-badge__content {
1612
+ font-size: 10px;
1613
+ height: 16px;
1614
+ line-height: 16px;
1615
+ min-width: 16px;
1616
+ }
1617
+ .ods-badge--tiny .ods-badge__content {
1618
+ display: block;
1619
+ font-size: 10px;
1620
+ height: 8px;
1621
+ line-height: 8px;
1622
+ min-width: 8px;
1623
+ overflow: hidden;
1624
+ width: 8px;
1625
+ }
1626
+ .ods-badge--small .ods-badge__text {
1627
+ border-radius: 40px;
1628
+ box-shadow: 0 4px 10px #ff726e3d;
1629
+ padding: 0 4px;
1630
+ width: auto;
1631
+ }
1632
+ .ods-badge--overflow .ods-badge__content {
1633
+ padding: 0 4px;
1634
+ width: auto;
1635
+ }
1636
+ .ods-badge--overflow .ods-badge__content {
1637
+ padding: 0 4px;
1638
+ width: auto;
1639
+ }
1640
+ .ods-badge--brand .ods-badge__content {
1641
+ background-color: #0025e0;
1642
+ }
1643
+ .ods-badge--brand .ods-badge__text.ods-badge__content {
1644
+ box-shadow: 0 4px 10px #0025e03d;
1645
+ }
1646
+ .ods-badge--complementary .ods-badge__content {
1647
+ background-color: #13bdbd;
1648
+ }
1649
+ .ods-badge--complementary .ods-badge__text.ods-badge__content {
1650
+ box-shadow: 0 4px 10px #13bdbd3d;
1651
+ }
1652
+ .ods-badge--alert .ods-badge__content {
1653
+ background-color: #ff8a14;
1654
+ }
1655
+ .ods-badge--alert .ods-badge__text.ods-badge__content {
1656
+ box-shadow: 0 4px 10px #ff8a143d;
1657
+ }
1658
+ .ods-badge--neutral .ods-badge__content {
1659
+ background-color: #b6b9cc;
1660
+ }
1661
+ .ods-badge--neutral .ods-badge__text.ods-badge__content {
1662
+ box-shadow: 0 4px 10px #b6b9cc3d;
1663
+ }
1664
+
1665
+ .ods-btn {
1666
+ border: 0;
1667
+ border-radius: 500px;
1668
+ cursor: pointer;
1669
+ font-family: "Nunito Sans";
1670
+ font-weight: 700;
1671
+ line-height: 1;
1672
+ outline: none;
1673
+ text-align: center;
1674
+ transition: background-color 0.1s ease-out;
1675
+ }
1676
+ .ods-btn--sm {
1677
+ font-size: 14px;
1678
+ height: 32px;
1679
+ min-width: 96px;
1680
+ padding-left: 16px;
1681
+ padding-right: 16px;
1682
+ }
1683
+ .ods-btn--md {
1684
+ font-size: 16px;
1685
+ height: 48px;
1686
+ min-width: 108px;
1687
+ padding-left: 24px;
1688
+ padding-right: 24px;
1689
+ }
1690
+ .ods-btn--lg {
1691
+ font-size: 20px;
1692
+ height: 56px;
1693
+ min-width: 148px;
1694
+ padding-left: 32px;
1695
+ padding-right: 32px;
1696
+ }
1697
+ .ods-btn--primary {
1698
+ background-color: #0025e0;
1699
+ color: white;
1700
+ }
1701
+ .ods-btn--primary:hover {
1702
+ background-color: #5872f5;
1703
+ }
1704
+ .ods-btn--primary:focus {
1705
+ background-color: #5872f5;
1706
+ }
1707
+ .ods-btn--primary:active {
1708
+ background-color: #0e248f;
1709
+ }
1710
+ .ods-btn--primary-critical {
1711
+ background-color: #f5456e;
1712
+ color: white;
1713
+ }
1714
+ .ods-btn--primary-critical:hover {
1715
+ background-color: #f27592;
1716
+ }
1717
+ .ods-btn--primary-critical:focus {
1718
+ background-color: #f27592;
1719
+ }
1720
+ .ods-btn--primary-critical:active {
1721
+ background-color: #d31441;
1722
+ }
1723
+ .ods-btn--secondary {
1724
+ background-color: #f7f9ff;
1725
+ color: #0025e0;
1726
+ }
1727
+ .ods-btn--secondary:hover {
1728
+ background-color: #ebecf5;
1729
+ }
1730
+ .ods-btn--secondary:focus {
1731
+ background-color: #ebecf5;
1732
+ }
1733
+ .ods-btn--secondary:active {
1734
+ background-color: #b6b9cc;
1735
+ }
1736
+ .ods-btn--text, .ods-btn--text-critical {
1737
+ background-color: transparent;
1738
+ }
1739
+ .ods-btn--text:hover, .ods-btn--text-critical:hover {
1740
+ background-color: #ebecf5;
1741
+ }
1742
+ .ods-btn--text:focus, .ods-btn--text-critical:focus {
1743
+ background-color: #ebecf5;
1744
+ }
1745
+ .ods-btn--text:active, .ods-btn--text-critical:active {
1746
+ background-color: #d8dae8;
1747
+ }
1748
+ .ods-btn--text {
1749
+ color: #0025e0;
1750
+ }
1751
+ .ods-btn--text-critical {
1752
+ color: #f5456e;
1753
+ }
1754
+ .ods-btn--inverse {
1755
+ background-color: #13bdbd;
1756
+ color: white;
1757
+ }
1758
+ .ods-btn--inverse:hover {
1759
+ background-color: #6ae5e5;
1760
+ }
1761
+ .ods-btn--inverse:focus {
1762
+ background-color: #6ae5e5;
1763
+ }
1764
+ .ods-btn--inverse:active {
1765
+ background-color: #1c9999;
1766
+ }
1767
+ .ods-btn--blocked {
1768
+ width: 100%;
1769
+ }
1770
+ .ods-btn--loading > span {
1771
+ display: block;
1772
+ height: 0;
1773
+ visibility: hidden;
1774
+ }
1775
+ .ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
1776
+ background-color: #ebecf5;
1777
+ color: #b6b9cc;
1778
+ cursor: not-allowed;
1779
+ }
1780
+
1666
1781
  .ods-carousel.columns-5, .ods-carousel.columns-4, .ods-carousel.columns-3, .ods-carousel.columns-2 {
1667
1782
  overflow: hidden;
1668
1783
  }
@@ -1819,184 +1934,68 @@
1819
1934
  list-style: none;
1820
1935
  width: 100%;
1821
1936
  }
1822
-
1823
- .ods-carousel-dots ul {
1824
- align-items: center;
1825
- display: flex;
1826
- justify-content: center;
1827
- -webkit-margin-after: 0;
1828
- margin-block-end: 0;
1829
- -webkit-margin-before: 0;
1830
- margin-block-start: 0;
1831
- -webkit-padding-start: 0;
1832
- padding-inline-start: 0;
1833
- }
1834
-
1835
- .ods-carousel-dots li {
1836
- cursor: pointer;
1837
- display: inline-block;
1838
- height: 20px;
1839
- position: relative;
1840
- width: 12px;
1841
- }
1842
-
1843
- .ods-carousel-dots li button {
1844
- align-items: center;
1845
- background: transparent;
1846
- border: 0;
1847
- color: transparent;
1848
- cursor: pointer;
1849
- display: flex;
1850
- display: block;
1851
- font-size: 0;
1852
- height: 20px;
1853
- justify-content: center;
1854
- line-height: 0;
1855
- outline: none;
1856
- padding: 5px;
1857
- width: 8px;
1858
- }
1859
-
1860
- .ods-carousel-dots li button::before {
1861
- align-items: center;
1862
- background: #d8dae8;
1863
- border-radius: 16px;
1864
- content: " ";
1865
- display: flex;
1866
- font-size: 24px;
1867
- height: 4px;
1868
- left: 0;
1869
- padding: 0;
1870
- position: absolute;
1871
- text-align: center;
1872
- top: 0;
1873
- width: 4px;
1874
- }
1875
-
1876
- .ods-carousel-dots .slick-active button::before {
1877
- background: #0025e0;
1878
- }
1879
-
1880
- .ods-divider {
1881
- border: 0;
1882
- border-top: 1px solid #ebecf5;
1883
- margin: 0;
1884
- }
1885
-
1886
- .ods-btn {
1887
- border: 0;
1888
- border-radius: 500px;
1889
- cursor: pointer;
1890
- font-family: "Nunito Sans";
1891
- font-weight: 700;
1892
- line-height: 1;
1893
- outline: none;
1894
- text-align: center;
1895
- transition: background-color 0.1s ease-out;
1896
- }
1897
- .ods-btn--sm {
1898
- font-size: 14px;
1899
- height: 32px;
1900
- min-width: 96px;
1901
- padding-left: 16px;
1902
- padding-right: 16px;
1903
- }
1904
- .ods-btn--md {
1905
- font-size: 16px;
1906
- height: 48px;
1907
- min-width: 108px;
1908
- padding-left: 24px;
1909
- padding-right: 24px;
1910
- }
1911
- .ods-btn--lg {
1912
- font-size: 20px;
1913
- height: 56px;
1914
- min-width: 148px;
1915
- padding-left: 32px;
1916
- padding-right: 32px;
1917
- }
1918
- .ods-btn--primary {
1919
- background-color: #0025e0;
1920
- color: white;
1921
- }
1922
- .ods-btn--primary:hover {
1923
- background-color: #5872f5;
1924
- }
1925
- .ods-btn--primary:focus {
1926
- background-color: #5872f5;
1927
- }
1928
- .ods-btn--primary:active {
1929
- background-color: #0e248f;
1930
- }
1931
- .ods-btn--primary-critical {
1932
- background-color: #f5456e;
1933
- color: white;
1934
- }
1935
- .ods-btn--primary-critical:hover {
1936
- background-color: #f27592;
1937
- }
1938
- .ods-btn--primary-critical:focus {
1939
- background-color: #f27592;
1940
- }
1941
- .ods-btn--primary-critical:active {
1942
- background-color: #d31441;
1943
- }
1944
- .ods-btn--secondary {
1945
- background-color: #f7f9ff;
1946
- color: #0025e0;
1947
- }
1948
- .ods-btn--secondary:hover {
1949
- background-color: #ebecf5;
1950
- }
1951
- .ods-btn--secondary:focus {
1952
- background-color: #ebecf5;
1953
- }
1954
- .ods-btn--secondary:active {
1955
- background-color: #b6b9cc;
1956
- }
1957
- .ods-btn--text, .ods-btn--text-critical {
1958
- background-color: transparent;
1959
- }
1960
- .ods-btn--text:hover, .ods-btn--text-critical:hover {
1961
- background-color: #ebecf5;
1962
- }
1963
- .ods-btn--text:focus, .ods-btn--text-critical:focus {
1964
- background-color: #ebecf5;
1965
- }
1966
- .ods-btn--text:active, .ods-btn--text-critical:active {
1967
- background-color: #d8dae8;
1968
- }
1969
- .ods-btn--text {
1970
- color: #0025e0;
1971
- }
1972
- .ods-btn--text-critical {
1973
- color: #f5456e;
1974
- }
1975
- .ods-btn--inverse {
1976
- background-color: #13bdbd;
1977
- color: white;
1978
- }
1979
- .ods-btn--inverse:hover {
1980
- background-color: #6ae5e5;
1937
+
1938
+ .ods-carousel-dots ul {
1939
+ align-items: center;
1940
+ display: flex;
1941
+ justify-content: center;
1942
+ -webkit-margin-after: 0;
1943
+ margin-block-end: 0;
1944
+ -webkit-margin-before: 0;
1945
+ margin-block-start: 0;
1946
+ -webkit-padding-start: 0;
1947
+ padding-inline-start: 0;
1981
1948
  }
1982
- .ods-btn--inverse:focus {
1983
- background-color: #6ae5e5;
1949
+
1950
+ .ods-carousel-dots li {
1951
+ cursor: pointer;
1952
+ display: inline-block;
1953
+ height: 20px;
1954
+ position: relative;
1955
+ width: 12px;
1984
1956
  }
1985
- .ods-btn--inverse:active {
1986
- background-color: #1c9999;
1957
+
1958
+ .ods-carousel-dots li button {
1959
+ align-items: center;
1960
+ background: transparent;
1961
+ border: 0;
1962
+ color: transparent;
1963
+ cursor: pointer;
1964
+ display: flex;
1965
+ display: block;
1966
+ font-size: 0;
1967
+ height: 20px;
1968
+ justify-content: center;
1969
+ line-height: 0;
1970
+ outline: none;
1971
+ padding: 5px;
1972
+ width: 8px;
1987
1973
  }
1988
- .ods-btn--blocked {
1989
- width: 100%;
1974
+
1975
+ .ods-carousel-dots li button::before {
1976
+ align-items: center;
1977
+ background: #d8dae8;
1978
+ border-radius: 16px;
1979
+ content: " ";
1980
+ display: flex;
1981
+ font-size: 24px;
1982
+ height: 4px;
1983
+ left: 0;
1984
+ padding: 0;
1985
+ position: absolute;
1986
+ text-align: center;
1987
+ top: 0;
1988
+ width: 4px;
1990
1989
  }
1991
- .ods-btn--loading > span {
1992
- display: block;
1993
- height: 0;
1994
- visibility: hidden;
1990
+
1991
+ .ods-carousel-dots .slick-active button::before {
1992
+ background: #0025e0;
1995
1993
  }
1996
- .ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
1997
- background-color: #ebecf5;
1998
- color: #b6b9cc;
1999
- cursor: not-allowed;
1994
+
1995
+ .ods-divider {
1996
+ border: 0;
1997
+ border-top: 1px solid #ebecf5;
1998
+ margin: 0;
2000
1999
  }
2001
2000
 
2002
2001
  .ods-icon-btn {
@@ -2023,6 +2022,7 @@
2023
2022
  .ods-icon-btn--sm {
2024
2023
  font-size: 16px;
2025
2024
  height: 40px;
2025
+ min-width: 40px;
2026
2026
  width: 40px;
2027
2027
  }
2028
2028
  .ods-icon-btn--sm :first-child {
@@ -2032,6 +2032,7 @@
2032
2032
  .ods-icon-btn--md {
2033
2033
  font-size: 20px;
2034
2034
  height: 48px;
2035
+ min-width: 48px;
2035
2036
  width: 48px;
2036
2037
  }
2037
2038
  .ods-icon-btn--disabled {
@@ -2220,57 +2221,6 @@
2220
2221
  font-weight: 600;
2221
2222
  }
2222
2223
 
2223
- .ods-progress svg {
2224
- -webkit-animation: ods-loading-animation 0.8s linear infinite;
2225
- animation: ods-loading-animation 0.8s linear infinite;
2226
- }
2227
- .ods-progress svg circle {
2228
- stroke: #b8c3ff;
2229
- }
2230
- .ods-progress svg path {
2231
- stroke: #0025e0;
2232
- }
2233
- .ods-progress--on-color svg circle {
2234
- stroke: #fff;
2235
- }
2236
- .ods-progress--on-color svg path {
2237
- stroke: #fff;
2238
- }
2239
- .ods-progress--md svg {
2240
- height: 24px;
2241
- width: 24px;
2242
- }
2243
- .ods-progress--sm svg {
2244
- height: 16px;
2245
- width: 16px;
2246
- }
2247
- .ods-progress--lg svg {
2248
- height: 32px;
2249
- width: 32px;
2250
- }
2251
- @-webkit-keyframes ods-loading-animation {
2252
- 0% {
2253
- transform: rotate(0deg);
2254
- }
2255
- 90% {
2256
- transform: rotate(340deg);
2257
- }
2258
- 100% {
2259
- transform: rotate(360deg);
2260
- }
2261
- }
2262
- @keyframes ods-loading-animation {
2263
- 0% {
2264
- transform: rotate(0deg);
2265
- }
2266
- 90% {
2267
- transform: rotate(340deg);
2268
- }
2269
- 100% {
2270
- transform: rotate(360deg);
2271
- }
2272
- }
2273
-
2274
2224
  .ods-modal__overlay {
2275
2225
  background: rgba(57, 59, 71, 0.4);
2276
2226
  bottom: 0;
@@ -2382,6 +2332,149 @@
2382
2332
  }
2383
2333
  }
2384
2334
 
2335
+ .ods-progress svg {
2336
+ -webkit-animation: ods-loading-animation 0.8s linear infinite;
2337
+ animation: ods-loading-animation 0.8s linear infinite;
2338
+ }
2339
+ .ods-progress svg circle {
2340
+ stroke: #b8c3ff;
2341
+ }
2342
+ .ods-progress svg path {
2343
+ stroke: #0025e0;
2344
+ }
2345
+ .ods-progress--on-color svg circle {
2346
+ stroke: #fff;
2347
+ }
2348
+ .ods-progress--on-color svg path {
2349
+ stroke: #fff;
2350
+ }
2351
+ .ods-progress--md, .ods-progress--md svg {
2352
+ height: 24px;
2353
+ width: 24px;
2354
+ }
2355
+ .ods-progress--sm, .ods-progress--sm svg {
2356
+ height: 16px;
2357
+ width: 16px;
2358
+ }
2359
+ .ods-progress--lg, .ods-progress--lg svg {
2360
+ height: 32px;
2361
+ width: 32px;
2362
+ }
2363
+ @-webkit-keyframes ods-loading-animation {
2364
+ 0% {
2365
+ transform: rotate(0deg);
2366
+ }
2367
+ 90% {
2368
+ transform: rotate(340deg);
2369
+ }
2370
+ 100% {
2371
+ transform: rotate(360deg);
2372
+ }
2373
+ }
2374
+ @keyframes ods-loading-animation {
2375
+ 0% {
2376
+ transform: rotate(0deg);
2377
+ }
2378
+ 90% {
2379
+ transform: rotate(340deg);
2380
+ }
2381
+ 100% {
2382
+ transform: rotate(360deg);
2383
+ }
2384
+ }
2385
+
2386
+ .ods-sub-header {
2387
+ background-color: #f7f9ff;
2388
+ box-sizing: border-box;
2389
+ display: flex;
2390
+ justify-content: space-between;
2391
+ padding: 12px 16px 8px 16px;
2392
+ width: 100%;
2393
+ }
2394
+
2395
+ .ods-sub-header__subtitle,
2396
+ .ods-sub-header__title {
2397
+ color: #67697a;
2398
+ font-family: "Nunito Sans";
2399
+ font-size: 12px;
2400
+ font-weight: 400;
2401
+ line-height: 150%;
2402
+ }
2403
+ .ods-sub-header__subtitle strong,
2404
+ .ods-sub-header__title strong {
2405
+ font-weight: 900;
2406
+ }
2407
+
2408
+ .ods-search {
2409
+ align-items: center;
2410
+ background-color: white;
2411
+ border: 1px solid #d8dae8;
2412
+ border-radius: 4px;
2413
+ display: flex;
2414
+ height: 46px;
2415
+ margin: 1px;
2416
+ width: 100%;
2417
+ }
2418
+ .ods-search input {
2419
+ border: 0;
2420
+ border-radius: 4px;
2421
+ box-sizing: border-box;
2422
+ color: #393b47;
2423
+ font-size: 16px;
2424
+ font-weight: 400;
2425
+ height: 100%;
2426
+ line-height: 1.1;
2427
+ outline: none;
2428
+ padding: 0 8px;
2429
+ width: 100%;
2430
+ }
2431
+ .ods-search input::-moz-placeholder {
2432
+ color: #d8dae8;
2433
+ }
2434
+ .ods-search input:-ms-input-placeholder {
2435
+ color: #d8dae8;
2436
+ }
2437
+ .ods-search input::placeholder {
2438
+ color: #d8dae8;
2439
+ }
2440
+ .ods-search:hover, .ods-search:focus, .ods-search:active {
2441
+ border-color: #5872f5;
2442
+ border-width: 2px;
2443
+ margin: 0;
2444
+ }
2445
+ .ods-search--filled {
2446
+ border-color: #b8c3ff;
2447
+ }
2448
+ .ods-search--disabled {
2449
+ background-color: #ebecf5;
2450
+ border-color: #ebecf5;
2451
+ cursor: not-allowed;
2452
+ }
2453
+ .ods-search--disabled input {
2454
+ color: #b6b9cc;
2455
+ cursor: not-allowed;
2456
+ }
2457
+ .ods-search--disabled:hover, .ods-search--disabled:focus, .ods-search--disabled:active {
2458
+ border-color: #ebecf5;
2459
+ }
2460
+ .ods-search__adornment {
2461
+ line-height: 0;
2462
+ padding-left: 16px;
2463
+ }
2464
+ .ods-search__adornment svg {
2465
+ color: #d8dae8;
2466
+ }
2467
+ .ods-search--filled .ods-search__adornment svg {
2468
+ color: #0025e0;
2469
+ }
2470
+ .ods-search__clean {
2471
+ color: #b6b9cc;
2472
+ margin-right: 4px;
2473
+ }
2474
+ .ods-search__clean:hover {
2475
+ color: #0025e0;
2476
+ }
2477
+
2385
2478
  .ods-tag {
2386
2479
  align-items: center;
2387
2480
  background-color: #f7f9ff;
@@ -2461,176 +2554,292 @@
2461
2554
  white-space: nowrap;
2462
2555
  }
2463
2556
 
2464
- .ods-badge {
2465
- display: flex;
2557
+ .ods-typography {
2558
+ margin: 0;
2559
+ }
2560
+ .ods-typography__heading1 {
2561
+ color: #0c0d14;
2562
+ font-family: "Avenir";
2563
+ font-weight: 800;
2564
+ line-height: 1.1;
2565
+ font-size: 32px;
2566
+ }
2567
+ .ods-typography__heading2 {
2568
+ color: #0c0d14;
2569
+ font-family: "Avenir";
2570
+ font-weight: 800;
2571
+ line-height: 1.1;
2572
+ font-size: 24px;
2573
+ }
2574
+ .ods-typography__heading3 {
2575
+ color: #0c0d14;
2576
+ font-family: "Avenir";
2577
+ font-weight: 800;
2578
+ line-height: 1.1;
2579
+ font-size: 20px;
2580
+ }
2581
+ .ods-typography__heading4 {
2582
+ color: #0c0d14;
2583
+ font-family: "Avenir";
2584
+ font-weight: 800;
2585
+ line-height: 1.1;
2586
+ font-size: 16px;
2587
+ font-weight: 700;
2588
+ line-height: 1.1;
2589
+ }
2590
+ .ods-typography__subtitle1 {
2591
+ color: #67697a;
2466
2592
  font-family: "Nunito Sans";
2593
+ font-weight: 400;
2594
+ line-height: 1.1;
2595
+ font-size: 24px;
2467
2596
  }
2468
- .ods-badge__content {
2469
- align-items: center;
2470
- background-color: #ff726e;
2471
- border-radius: 40px;
2472
- box-sizing: border-box;
2473
- color: white;
2474
- display: flex;
2597
+ .ods-typography__subtitle2 {
2598
+ color: #67697a;
2599
+ font-family: "Nunito Sans";
2600
+ font-weight: 400;
2601
+ line-height: 1.1;
2602
+ font-size: 20px;
2603
+ }
2604
+ .ods-typography__paragraph {
2605
+ color: #67697a;
2606
+ font-family: "Nunito Sans";
2607
+ font-weight: 400;
2608
+ line-height: 1.5;
2609
+ font-size: 16px;
2610
+ }
2611
+ .ods-typography__lead {
2612
+ color: #393b47;
2613
+ font-family: "Nunito Sans";
2614
+ font-size: 20px;
2475
2615
  font-weight: 700;
2476
- justify-content: center;
2477
- white-space: nowrap;
2478
- width: auto;
2479
2616
  }
2480
- .ods-badge--medium .ods-badge__content {
2617
+ .ods-typography__description {
2618
+ color: #67697a;
2619
+ font-family: "Nunito Sans";
2620
+ font-weight: 400;
2621
+ line-height: 1.5;
2622
+ font-size: 14px;
2623
+ }
2624
+ .ods-typography__caption {
2625
+ color: #67697a;
2626
+ font-family: "Nunito Sans";
2627
+ font-weight: 400;
2628
+ line-height: 1.5;
2481
2629
  font-size: 12px;
2482
- height: 24px;
2483
- line-height: 24px;
2484
- min-width: 24px;
2485
- width: 24px;
2486
2630
  }
2487
- .ods-badge--small .ods-badge__content {
2488
- font-size: 10px;
2489
- height: 16px;
2490
- line-height: 16px;
2491
- min-width: 16px;
2631
+ .ods-typography--inverse {
2632
+ color: white;
2492
2633
  }
2493
- .ods-badge--tiny .ods-badge__content {
2494
- display: block;
2495
- font-size: 10px;
2496
- height: 8px;
2497
- line-height: 8px;
2498
- min-width: 8px;
2499
- overflow: hidden;
2500
- width: 8px;
2634
+
2635
+ :root {
2636
+ --balloon-color: #393b47;
2637
+ --balloon-text-color: white;
2638
+ --balloon-font-size: 12px;
2639
+ --balloon-move: 4px;
2501
2640
  }
2502
- .ods-badge--small .ods-badge__text {
2503
- border-radius: 40px;
2504
- box-shadow: 0 4px 10px #ff726e3d;
2505
- padding: 0 4px;
2506
- width: auto;
2641
+
2642
+ .ods-tooltip {
2643
+ cursor: pointer;
2644
+ position: relative;
2507
2645
  }
2508
- .ods-badge--overflow .ods-badge__content {
2509
- padding: 0 4px;
2510
- width: auto;
2646
+
2647
+ .ods-tooltip::after {
2648
+ opacity: 0;
2649
+ pointer-events: none;
2650
+ transition: opacity 0.18s ease-out 0.18s, transform 0.18s ease-out 0.18s;
2651
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
2652
+ font-size: var(--balloon-font-size);
2653
+ font-style: normal;
2654
+ font-weight: normal;
2655
+ text-indent: 0;
2656
+ text-shadow: none;
2657
+ background: var(--balloon-color);
2658
+ border-radius: 2px;
2659
+ border-radius: 8px;
2660
+ color: var(--balloon-text-color);
2661
+ content: attr(aria-label);
2662
+ padding: 12px 16px;
2663
+ position: absolute;
2664
+ white-space: pre;
2665
+ z-index: 10;
2511
2666
  }
2512
- .ods-badge--overflow .ods-badge__content {
2513
- padding: 0 4px;
2514
- width: auto;
2667
+
2668
+ .ods-tooltip::before {
2669
+ border: 5px solid transparent;
2670
+ height: 0;
2671
+ width: 0;
2672
+ border-top-color: var(--balloon-color);
2673
+ opacity: 0;
2674
+ pointer-events: none;
2675
+ transition: opacity 0.18s ease-out 0.18s, transform 0.18s ease-out 0.18s;
2676
+ content: "";
2677
+ position: absolute;
2678
+ z-index: 10;
2515
2679
  }
2516
- .ods-badge--brand .ods-badge__content {
2517
- background-color: #0025e0;
2680
+
2681
+ .ods-tooltip:hover::before, .ods-tooltip:hover::after,
2682
+ .ods-tooltip[data-balloon-visible]::before,
2683
+ .ods-tooltip[data-balloon-visible]::after,
2684
+ .ods-tooltip:not([data-balloon-nofocus]):focus::before,
2685
+ .ods-tooltip:not([data-balloon-nofocus]):focus::after {
2686
+ opacity: 1;
2687
+ pointer-events: none;
2518
2688
  }
2519
- .ods-badge--brand .ods-badge__text.ods-badge__content {
2520
- box-shadow: 0 4px 10px #0025e03d;
2689
+
2690
+ .ods-tooltip.font-awesome::after {
2691
+ font-family: FontAwesome, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
2521
2692
  }
2522
- .ods-badge--complementary .ods-badge__content {
2523
- background-color: #13bdbd;
2693
+
2694
+ .ods-tooltip[data-balloon-break]::after {
2695
+ white-space: pre;
2524
2696
  }
2525
- .ods-badge--complementary .ods-badge__text.ods-badge__content {
2526
- box-shadow: 0 4px 10px #13bdbd3d;
2697
+ .ods-tooltip[data-balloon-break][data-balloon-length]::after {
2698
+ white-space: pre-line;
2699
+ word-break: break-word;
2527
2700
  }
2528
- .ods-badge--alert .ods-badge__content {
2529
- background-color: #ff8a14;
2701
+
2702
+ .ods-tooltip[data-balloon-blunt]::before, .ods-tooltip[data-balloon-blunt]::after {
2703
+ transition: none;
2530
2704
  }
2531
- .ods-badge--alert .ods-badge__text.ods-badge__content {
2532
- box-shadow: 0 4px 10px #ff8a143d;
2705
+
2706
+ .ods-tooltip[data-balloon-pos=up]:hover::after, .ods-tooltip[data-balloon-pos=up][data-balloon-visible]::after,
2707
+ .ods-tooltip[data-balloon-pos=down]:hover::after,
2708
+ .ods-tooltip[data-balloon-pos=down][data-balloon-visible]::after {
2709
+ transform: translate(-50%, 0);
2533
2710
  }
2534
- .ods-badge--neutral .ods-badge__content {
2535
- background-color: #b6b9cc;
2711
+ .ods-tooltip[data-balloon-pos=up]:hover::before, .ods-tooltip[data-balloon-pos=up][data-balloon-visible]::before,
2712
+ .ods-tooltip[data-balloon-pos=down]:hover::before,
2713
+ .ods-tooltip[data-balloon-pos=down][data-balloon-visible]::before {
2714
+ transform: translate(-50%, 0);
2536
2715
  }
2537
- .ods-badge--neutral .ods-badge__text.ods-badge__content {
2538
- box-shadow: 0 4px 10px #b6b9cc3d;
2716
+
2717
+ .ods-tooltip[data-balloon-pos*=-left]::after {
2718
+ left: 0;
2719
+ }
2720
+ .ods-tooltip[data-balloon-pos*=-left]::before {
2721
+ left: 5px;
2539
2722
  }
2540
2723
 
2541
- .ods-sub-header {
2542
- background-color: #f7f9ff;
2543
- box-sizing: border-box;
2544
- display: flex;
2545
- justify-content: space-between;
2546
- padding: 12px 16px 8px 16px;
2547
- width: 100%;
2724
+ .ods-tooltip[data-balloon-pos*=-right]::after {
2725
+ right: 0;
2726
+ }
2727
+ .ods-tooltip[data-balloon-pos*=-right]::before {
2728
+ right: 5px;
2548
2729
  }
2549
2730
 
2550
- .ods-sub-header__subtitle,
2551
- .ods-sub-header__title {
2552
- color: #67697a;
2553
- font-family: "Nunito Sans";
2554
- font-size: 12px;
2555
- font-weight: 400;
2556
- line-height: 150%;
2731
+ .ods-tooltip[data-balloon-pos*=-left]:hover::after, .ods-tooltip[data-balloon-pos*=-left][data-balloon-visible]::after,
2732
+ .ods-tooltip[data-balloon-pos*=-right]:hover::after,
2733
+ .ods-tooltip[data-balloon-pos*=-right][data-balloon-visible]::after {
2734
+ transform: translate(0, 0);
2557
2735
  }
2558
- .ods-sub-header__subtitle strong,
2559
- .ods-sub-header__title strong {
2560
- font-weight: 900;
2736
+ .ods-tooltip[data-balloon-pos*=-left]:hover::before, .ods-tooltip[data-balloon-pos*=-left][data-balloon-visible]::before,
2737
+ .ods-tooltip[data-balloon-pos*=-right]:hover::before,
2738
+ .ods-tooltip[data-balloon-pos*=-right][data-balloon-visible]::before {
2739
+ transform: translate(0, 0);
2561
2740
  }
2562
2741
 
2563
- .ods-search {
2564
- align-items: center;
2565
- background-color: white;
2566
- border: 1px solid #d8dae8;
2567
- border-radius: 4px;
2568
- display: flex;
2569
- height: 46px;
2570
- margin: 1px;
2571
- width: auto !important;
2742
+ .ods-tooltip[data-balloon-pos^=up]::before, .ods-tooltip[data-balloon-pos^=up]::after {
2743
+ bottom: 100%;
2744
+ transform: translate(0, var(--balloon-move));
2745
+ transform-origin: top;
2572
2746
  }
2573
- .ods-search input {
2574
- border: 0;
2575
- border-radius: 4px;
2576
- box-sizing: border-box;
2577
- color: #393b47;
2578
- font-size: 16px;
2579
- font-weight: 400;
2580
- height: 100%;
2581
- line-height: 1.1;
2582
- outline: none;
2583
- padding: 0 16px;
2584
- width: 100%;
2747
+ .ods-tooltip[data-balloon-pos^=up]::after {
2748
+ margin-bottom: 10px;
2585
2749
  }
2586
- .ods-search input::-moz-placeholder {
2587
- color: #d8dae8;
2750
+
2751
+ .ods-tooltip[data-balloon-pos=up]::before, .ods-tooltip[data-balloon-pos=up]::after {
2752
+ left: 50%;
2753
+ transform: translate(-50%, var(--balloon-move));
2588
2754
  }
2589
- .ods-search input:-ms-input-placeholder {
2590
- color: #d8dae8;
2755
+
2756
+ .ods-tooltip[data-balloon-pos^=down]::before, .ods-tooltip[data-balloon-pos^=down]::after {
2757
+ top: 100%;
2758
+ transform: translate(0, calc(var(--balloon-move) * -1));
2591
2759
  }
2592
- .ods-search input::placeholder {
2593
- color: #d8dae8;
2760
+ .ods-tooltip[data-balloon-pos^=down]::after {
2761
+ margin-top: 10px;
2594
2762
  }
2595
- .ods-search:hover, .ods-search:focus, .ods-search:active {
2596
- border-color: #5872f5;
2597
- border-width: 2px;
2598
- margin: 0;
2763
+ .ods-tooltip[data-balloon-pos^=down]::before {
2764
+ border: 5px solid transparent;
2765
+ height: 0;
2766
+ width: 0;
2767
+ border-bottom-color: var(--balloon-color);
2599
2768
  }
2600
- .ods-search svg {
2601
- color: #d8dae8;
2769
+
2770
+ .ods-tooltip[data-balloon-pos=down]::after, .ods-tooltip[data-balloon-pos=down]::before {
2771
+ left: 50%;
2772
+ transform: translate(-50%, calc(var(--balloon-move) * -1));
2602
2773
  }
2603
- .ods-search--filled {
2604
- border-color: #b8c3ff;
2774
+
2775
+ .ods-tooltip[data-balloon-pos=left]:hover::after, .ods-tooltip[data-balloon-pos=left][data-balloon-visible]::after,
2776
+ .ods-tooltip[data-balloon-pos=right]:hover::after,
2777
+ .ods-tooltip[data-balloon-pos=right][data-balloon-visible]::after {
2778
+ transform: translate(0, -50%);
2605
2779
  }
2606
- .ods-search--filled svg {
2607
- color: #0025e0;
2780
+ .ods-tooltip[data-balloon-pos=left]:hover::before, .ods-tooltip[data-balloon-pos=left][data-balloon-visible]::before,
2781
+ .ods-tooltip[data-balloon-pos=right]:hover::before,
2782
+ .ods-tooltip[data-balloon-pos=right][data-balloon-visible]::before {
2783
+ transform: translate(0, -50%);
2608
2784
  }
2609
- .ods-search--disabled {
2610
- background-color: #ebecf5;
2611
- border-color: #ebecf5;
2612
- cursor: not-allowed;
2785
+
2786
+ .ods-tooltip[data-balloon-pos=left]::after, .ods-tooltip[data-balloon-pos=left]::before {
2787
+ right: 100%;
2788
+ top: 50%;
2789
+ transform: translate(var(--balloon-move), -50%);
2613
2790
  }
2614
- .ods-search--disabled input {
2615
- color: #b6b9cc;
2616
- cursor: not-allowed;
2791
+ .ods-tooltip[data-balloon-pos=left]::after {
2792
+ margin-right: 10px;
2617
2793
  }
2618
- .ods-search--disabled:hover, .ods-search--disabled:focus, .ods-search--disabled:active {
2619
- border-color: #ebecf5;
2794
+ .ods-tooltip[data-balloon-pos=left]::before {
2795
+ border: 5px solid transparent;
2796
+ height: 0;
2797
+ width: 0;
2798
+ border-left-color: var(--balloon-color);
2620
2799
  }
2621
- .ods-search__adornment {
2622
- line-height: 0;
2623
- padding-left: 16px;
2624
- width: auto !important;
2800
+
2801
+ .ods-tooltip[data-balloon-pos=right]::after, .ods-tooltip[data-balloon-pos=right]::before {
2802
+ left: 100%;
2803
+ top: 50%;
2804
+ transform: translate(calc(var(--balloon-move) * -1), -50%);
2625
2805
  }
2626
- .ods-search__clean {
2627
- cursor: pointer;
2628
- line-height: 0;
2629
- padding-right: 16px;
2630
- width: 24px;
2806
+ .ods-tooltip[data-balloon-pos=right]::after {
2807
+ margin-left: 10px;
2631
2808
  }
2632
- .ods-search__clean svg {
2633
- color: #393b47;
2809
+ .ods-tooltip[data-balloon-pos=right]::before {
2810
+ border: 5px solid transparent;
2811
+ height: 0;
2812
+ width: 0;
2813
+ border-right-color: var(--balloon-color);
2814
+ }
2815
+
2816
+ .ods-tooltip[data-balloon-length]::after {
2817
+ white-space: normal;
2818
+ }
2819
+
2820
+ .ods-tooltip[data-balloon-length=small]::after {
2821
+ width: 80px;
2822
+ }
2823
+
2824
+ .ods-tooltip[data-balloon-length=medium]::after {
2825
+ width: 150px;
2826
+ }
2827
+
2828
+ .ods-tooltip[data-balloon-length=large]::after {
2829
+ width: 260px;
2830
+ }
2831
+
2832
+ .ods-tooltip[data-balloon-length=xlarge]::after {
2833
+ width: 380px;
2834
+ }
2835
+ @media screen and (max-width: 768px) {
2836
+ .ods-tooltip[data-balloon-length=xlarge]::after {
2837
+ width: 90vw;
2838
+ }
2839
+ }
2840
+
2841
+ .ods-tooltip[data-balloon-length=fit]::after {
2842
+ width: 100%;
2634
2843
  }
2635
2844
 
2636
2845
  .ods-topbar {