@utrecht/component-library-css 1.0.0-alpha.165 → 1.0.0-alpha.169

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/bem.css CHANGED
@@ -1269,6 +1269,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
1269
1269
  text-underline-offset: var(--utrecht-link-text-underline-offset);
1270
1270
  }
1271
1271
 
1272
+ .utrecht-link-icon-left {
1273
+ background-image: var(--utrecht-link-icon-left-background-image, none);
1274
+ background-position: 0 0.25em;
1275
+ background-repeat: no-repeat;
1276
+ color: var(--utrecht-link-color, blue);
1277
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1278
+ padding-inline-start: var(--utrecht-space-block-md);
1279
+ text-decoration: none;
1280
+ }
1281
+
1272
1282
  .utrecht-link:visited,
1273
1283
  .utrecht-link--visited {
1274
1284
  color: var(--utrecht-link-visited-color, var(--utrecht-link-color));
@@ -1575,11 +1585,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
1575
1585
  * Copyright (c) 2021 Robbert Broersma
1576
1586
  */
1577
1587
  /* stylelint-disable-next-line block-no-empty */
1578
- .utrecht-navhtml {
1579
- font-family: var(--utrecht-font-family-sans-serif);
1580
- }
1581
-
1582
1588
  .utrecht-sidenav {
1589
+ --utrecht-sidenav-connection-color: var(--utrecht-sidenav-item-marker-color);
1590
+ --utrecht-sidenav-connection-inline-size: 2px;
1591
+ --utrecht-sidenav-marker-current-color: var(--utrecht-sidenav-link-hover-color);
1592
+ --utrecht-sidenav-marker-offset: 26px;
1593
+ --utrecht-sidenav-connection-block-size: 38px;
1583
1594
  border-block-end: 1px solid var(--utrecht-color-grey-80);
1584
1595
  border-block-start: 1px solid var(--utrecht-color-grey-80);
1585
1596
  margin-block-end: 0;
@@ -1597,212 +1608,152 @@ however browsers don't seem to have implemented great looking supixel tweening y
1597
1608
  padding-inline-start: 0;
1598
1609
  }
1599
1610
 
1600
- .utrecht-sidenav__list ul {
1601
- margin-block-end: 0;
1602
- padding-block-end: 0;
1603
- padding-block-start: 0;
1604
- padding-inline-start: 1.2rem;
1611
+ .utrecht-sidenav__list--child {
1612
+ margin-block-start: 0;
1613
+ padding-inline-end: 0;
1614
+ padding-inline-start: 1.4rem;
1605
1615
  }
1606
1616
 
1607
- .utrecht-sidenav__item,
1608
- .utrecht-sidenav__sibling__item {
1617
+ .utrecht-sidenav__item {
1609
1618
  list-style: none;
1610
1619
  margin-inline-start: 0;
1611
1620
  position: relative;
1612
1621
  }
1613
1622
 
1614
- .utrecht-sidenav__item:last-child {
1623
+ .utrecht-sidenav__item--current {
1624
+ color: var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red));
1625
+ }
1626
+
1627
+ .utrecht-sidenav__item--last {
1615
1628
  border-block-end: none;
1616
1629
  }
1617
1630
 
1618
1631
  /* draw the li item box bottom line */
1619
- .utrecht-sidenav__item span:not(.utrecht-sidenav__item:last-child span, .utrecht-sidenav__item--has-children span:first-of-type) {
1632
+ .utrecht-sidenav__item-separator:not(.utrecht-sidenav__item--last .utrecht-sidenav__item-separator,
1633
+ .utrecht-sidenav__item--has-children .utrecht-sidenav__item-separator:first-of-type) {
1634
+ /* .utrecht-sidenav__item--has-children span */
1620
1635
  border-block-end: 1px solid var(--utrecht-color-grey-80);
1621
1636
  display: block;
1622
- margin-inline-start: var(--utrecht-space-inline-lg);
1623
- }
1624
-
1625
- /* Remove bottom padding form first item in list with children */
1626
- .utrecht-sidenav__item .utrecht-sidenav__link--has-children {
1627
- padding-block-end: 0;
1637
+ margin-inline-start: var(--utrecht-space-inline-md);
1628
1638
  }
1629
1639
 
1630
- .utrecht-sidenav__child__item {
1631
- list-style: none;
1632
- }
1633
-
1634
- .utrecht-sidenav__link,
1635
- .utrecht-sidenav__link--sibling {
1640
+ .utrecht-sidenav__link {
1636
1641
  color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1637
1642
  display: block;
1638
1643
  margin-inline-start: 0;
1639
1644
  padding-block-end: var(--utrecht-space-block-xs);
1640
1645
  padding-block-start: var(--utrecht-space-block-xs);
1641
1646
  padding-inline-end: var(--utrecht-space-inline-3xs);
1642
- padding-inline-start: var(--utrecht-space-inline-xl);
1647
+ padding-inline-start: var(--utrecht-space-inline-lg);
1643
1648
  text-decoration: none;
1644
1649
  }
1645
1650
 
1646
- .utrecht-sidenav__link--child,
1647
- .utrecht-sidenav__link--child--current {
1648
- color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1649
- display: block;
1650
- margin-block-end: 0;
1651
- margin-block-start: 0;
1652
- padding-block-end: var(--utrecht-space-block-2xs);
1653
- padding-block-start: var(--utrecht-space-block-2xs);
1654
- padding-inline-end: var(--utrecht-space-inline-3xs);
1655
- padding-inline-start: var(--utrecht-space-inline-xl);
1656
- text-decoration: none;
1657
- }
1658
-
1659
- .utrecht-sidenav__link::before,
1660
- .utrecht-sidenav__link--sibling::before {
1661
- background-color: var(--utrecht-sidenav-item-marker-color);
1662
- left: 26px;
1663
- }
1664
-
1665
- /* Little fix to move the dot to the right */
1666
- .utrecht-sidenav__link--current::before {
1667
- background-color: var(--utrecht-sidenav-link-hover-color);
1668
- left: 27px;
1669
- }
1670
-
1671
- /* Dot for link with siblings */
1672
- .utrecht-sidenav__link::before,
1673
- .utrecht-sidenav__link--sibling::before,
1674
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link--current::before {
1675
- border-radius: 100%;
1676
- box-shadow: 0 0 2px 2px #fff;
1677
- /* Make var */
1678
- content: "";
1679
- height: 8px;
1680
- overflow: hidden;
1681
- position: absolute;
1682
- top: 20px;
1683
- /* Hard value? */
1684
- transform: translateY(-50%) translateX(-2.5ch);
1685
- width: 8px;
1686
- z-index: 10;
1687
- }
1688
-
1689
- /* Hover layout for mousover on sidenav__link */
1690
- .utrecht-sidenav__link:hover::before,
1691
- .utrecht-sidenav__link--sibling:hover::before {
1692
- background-color: var(--utrecht-sidenav-link-hover-color);
1693
- }
1694
-
1695
- .utrecht-sidenav__item a:hover {
1651
+ .utrecht-sidenav__link:hover {
1696
1652
  color: var(--utrecht-sidenav-link-hover-color, var(--utrecht-link-hover-color, red));
1697
1653
  text-decoration: underline;
1698
1654
  }
1699
1655
 
1700
- .utrecht-sidenav__item--current {
1701
- color: var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red));
1656
+ .utrecht-sidenav__link--focus-visible, .utrecht-sidenav__link:focus {
1657
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1658
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1659
+ outline-offset: 0;
1660
+ outline-style: var(--utrecht-focus-outline-style, solid);
1661
+ outline-width: var(--utrecht-focus-outline-width, 0);
1662
+ }
1663
+
1664
+ /* Remove bottom padding form first item in list with children */
1665
+ .utrecht-sidenav__link--has-children {
1666
+ padding-block-end: 0;
1702
1667
  }
1703
1668
 
1704
1669
  /* Draw metro connection lines on sidenav link items */
1705
- .utrecht-sidenav__link::after,
1706
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link::after {
1707
- background: var(--utrecht-sidenav-item-marker-color);
1708
- /* min-height: 100%;
1709
- height: calc(100% + 2px); */
1670
+ .utrecht-sidenav__connection, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:not(.utrecht-sidenav__link--sibling):not(.utrecht-sidenav__link--child)::after {
1671
+ background: var(--utrecht-sidenav-connection-color);
1710
1672
  bottom: 0;
1711
1673
  content: "";
1712
1674
  display: block;
1675
+ height: calc(var(--utrecht-sidenav-connection-block-size) + 2px);
1713
1676
  left: 3px;
1677
+ min-height: var(--utrecht-sidenav-connection-block-size);
1714
1678
  overflow: hidden;
1715
1679
  position: absolute;
1716
1680
  top: -22px;
1717
- width: 3px;
1681
+ width: var(--utrecht-sidenav-connection-inline-size);
1718
1682
  z-index: 5;
1719
1683
  }
1720
1684
 
1721
- /* Draw short metro connection lines on sidenav child link items */
1722
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link::after,
1723
- .utrecht-sidenav__link--current::after,
1724
- .utrecht-sidenav__item--has-children a::after {
1725
- height: 40px;
1726
- min-height: 38px;
1727
- }
1728
-
1729
- /* Remove first metro line in listing */
1730
- .utrecht-sidenav__item:first-child .utrecht-sidenav__link::after {
1731
- content: "";
1685
+ .utrecht-sidenav__connection--first, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__item:first-child .utrecht-sidenav__link::after {
1732
1686
  display: none;
1733
1687
  }
1734
1688
 
1735
- /* Make current link bold */
1736
- .utrecht-sidenav__link--current,
1737
- .utrecht-sidenav__link--child--current {
1738
- font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1739
- }
1740
-
1741
- .utrecht-sidenav__list--child {
1742
- margin-block-end: 0;
1743
- margin-block-start: 0;
1744
- padding-block-end: 0;
1745
- padding-block-start: 0;
1746
- padding-inline-end: 0;
1747
- padding-inline-start: 1.4rem;
1748
- }
1749
-
1750
- .utrecht-sidenav__item--child {
1751
- border: none;
1752
- list-style: none;
1753
- position: relative;
1754
- }
1755
-
1756
- /* No last border on child item */
1757
- .utrecht-sidenav__item--child:last-child {
1758
- border: none;
1689
+ /* Dot for link with siblings */
1690
+ /* Little fix to move the dot to the right */
1691
+ .utrecht-sidenav__marker, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before {
1692
+ background-color: var(--utrecht-sidenav-item-marker-color);
1693
+ border-radius: 100%;
1694
+ box-shadow: 0 0 2px 2px #fff;
1695
+ /* Make var */
1696
+ content: "";
1697
+ height: 8px;
1698
+ left: var(--utrecht-sidenav-marker-offset);
1699
+ overflow: hidden;
1700
+ position: absolute;
1701
+ top: 20px;
1702
+ /* Hard value? */
1703
+ transform: translateY(-50%) translateX(calc(-1 * var(--utrecht-sidenav-marker-offset)));
1704
+ width: 8px;
1705
+ z-index: 10;
1759
1706
  }
1760
1707
 
1761
1708
  /* Add dot bullets on child links */
1762
- .utrecht-sidenav__link--child::before,
1763
- .utrecht-sidenav__link--child--current::before {
1709
+ .utrecht-sidenav__marker--child, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::before {
1764
1710
  background-color: transparent;
1765
1711
  border: 2px solid var(--utrecht-sidenav-link-color);
1766
- border-radius: 100%;
1767
- content: "";
1768
1712
  height: 4px;
1769
1713
  left: 1.2rem;
1770
- overflow: hidden;
1771
- position: absolute;
1772
1714
  top: 16px;
1773
1715
  transform: translateY(-50%) translateX(-19.5px);
1774
1716
  width: 4px;
1775
- z-index: 10;
1776
1717
  }
1777
1718
 
1778
- /* Make current marker dots bold */
1779
- .utrecht-sidenav__link--child--current::before {
1719
+ /* selector must override .utrecht-sidenav__marker--child */
1720
+ .utrecht-sidenav__marker--current, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current::before,
1721
+ .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current-child::before {
1722
+ background-color: var(--utrecht-sidenav-marker-current-color);
1723
+ }
1724
+
1725
+ .utrecht-sidenav__link--child,
1726
+ .utrecht-sidenav__link--current-child {
1727
+ color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1728
+ margin-block-end: 0;
1729
+ margin-block-start: 0;
1730
+ padding-block-end: var(--utrecht-space-block-2xs);
1731
+ padding-block-start: var(--utrecht-space-block-2xs);
1732
+ padding-inline-end: var(--utrecht-space-inline-3xs);
1733
+ padding-inline-start: var(--utrecht-space-inline-lg);
1734
+ text-decoration: none;
1735
+ }
1736
+
1737
+ .utrecht-sidenav__link--current,
1738
+ .utrecht-sidenav__link--current-child {
1739
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1740
+ }
1741
+
1742
+ /* Hover layout for mousover on sidenav__link */
1743
+ .utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover::before {
1780
1744
  background-color: var(--utrecht-sidenav-link-hover-color);
1781
1745
  }
1782
1746
 
1783
1747
  /* Hover layout for mousover on child__link */
1784
- .utrecht-sidenav__link--child:hover::before {
1748
+ .utrecht-sidenav__marker--child.utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link:hover::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--hover.utrecht-sidenav__link--child::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child.utrecht-sidenav__link:hover::before {
1785
1749
  background-color: var(--utrecht-sidenav-link-hover-color);
1786
1750
  border: 2px solid var(--utrecht-sidenav-link-hover-color);
1787
1751
  }
1788
1752
 
1789
- /* remove :after lines in child and sibling links */
1790
- .utrecht-sidenav__item--child:first-child .utrecht-sidenav__link--child--current::after,
1791
- .utrecht-sidenav__link--child::after,
1792
- .utrecht-sidenav__item .utrecht-sidenav__item--child .utrecht-sidenav__link--child::after,
1793
- .utrecht-sidenav__item .utrecht-sidenav__link--sibling::after,
1794
- .utrecht-sidenav__item--sibling:last-child .utrecht-sidenav__link--sibling::after {
1753
+ .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::after {
1795
1754
  display: none;
1796
1755
  }
1797
1756
 
1798
- .utrecht-sidenav__link--focus-visible, .utrecht-sidenav__link:focus {
1799
- box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1800
- outline-color: var(--utrecht-focus-outline-color, transparent);
1801
- outline-offset: 0;
1802
- outline-style: var(--utrecht-focus-outline-style, solid);
1803
- outline-width: var(--utrecht-focus-outline-width, 0);
1804
- }
1805
-
1806
1757
  .utrecht-sidenav__link:focus:not(:focus-visible) {
1807
1758
  /* undo focus ring */
1808
1759
  box-shadow: none;
package/dist/html.css CHANGED
@@ -1076,6 +1076,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
1076
1076
  text-underline-offset: var(--utrecht-link-text-underline-offset);
1077
1077
  }
1078
1078
 
1079
+ .utrecht-link-icon-left {
1080
+ background-image: var(--utrecht-link-icon-left-background-image, none);
1081
+ background-position: 0 0.25em;
1082
+ background-repeat: no-repeat;
1083
+ color: var(--utrecht-link-color, blue);
1084
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1085
+ padding-inline-start: var(--utrecht-space-block-md);
1086
+ text-decoration: none;
1087
+ }
1088
+
1079
1089
  .utrecht-link:visited,
1080
1090
  .utrecht-link--visited,
1081
1091
  .utrecht-html a:visited {
@@ -1774,6 +1784,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
1774
1784
  text-underline-offset: var(--utrecht-link-text-underline-offset);
1775
1785
  }
1776
1786
 
1787
+ .utrecht-link-icon-left {
1788
+ background-image: var(--utrecht-link-icon-left-background-image, none);
1789
+ background-position: 0 0.25em;
1790
+ background-repeat: no-repeat;
1791
+ color: var(--utrecht-link-color, blue);
1792
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1793
+ padding-inline-start: var(--utrecht-space-block-md);
1794
+ text-decoration: none;
1795
+ }
1796
+
1777
1797
  .utrecht-link:visited,
1778
1798
  .utrecht-link--visited,
1779
1799
  .utrecht-html a:visited {
package/dist/index.css CHANGED
@@ -1306,6 +1306,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
1306
1306
  text-underline-offset: var(--utrecht-link-text-underline-offset);
1307
1307
  }
1308
1308
 
1309
+ .utrecht-link-icon-left {
1310
+ background-image: var(--utrecht-link-icon-left-background-image, none);
1311
+ background-position: 0 0.25em;
1312
+ background-repeat: no-repeat;
1313
+ color: var(--utrecht-link-color, blue);
1314
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1315
+ padding-inline-start: var(--utrecht-space-block-md);
1316
+ text-decoration: none;
1317
+ }
1318
+
1309
1319
  .utrecht-link:visited,
1310
1320
  .utrecht-link--visited,
1311
1321
  .utrecht-html a:visited {
@@ -1615,11 +1625,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
1615
1625
  * Copyright (c) 2021 Robbert Broersma
1616
1626
  */
1617
1627
  /* stylelint-disable-next-line block-no-empty */
1618
- .utrecht-navhtml {
1619
- font-family: var(--utrecht-font-family-sans-serif);
1620
- }
1621
-
1622
1628
  .utrecht-sidenav {
1629
+ --utrecht-sidenav-connection-color: var(--utrecht-sidenav-item-marker-color);
1630
+ --utrecht-sidenav-connection-inline-size: 2px;
1631
+ --utrecht-sidenav-marker-current-color: var(--utrecht-sidenav-link-hover-color);
1632
+ --utrecht-sidenav-marker-offset: 26px;
1633
+ --utrecht-sidenav-connection-block-size: 38px;
1623
1634
  border-block-end: 1px solid var(--utrecht-color-grey-80);
1624
1635
  border-block-start: 1px solid var(--utrecht-color-grey-80);
1625
1636
  margin-block-end: 0;
@@ -1637,212 +1648,152 @@ however browsers don't seem to have implemented great looking supixel tweening y
1637
1648
  padding-inline-start: 0;
1638
1649
  }
1639
1650
 
1640
- .utrecht-sidenav__list ul {
1641
- margin-block-end: 0;
1642
- padding-block-end: 0;
1643
- padding-block-start: 0;
1644
- padding-inline-start: 1.2rem;
1651
+ .utrecht-sidenav__list--child {
1652
+ margin-block-start: 0;
1653
+ padding-inline-end: 0;
1654
+ padding-inline-start: 1.4rem;
1645
1655
  }
1646
1656
 
1647
- .utrecht-sidenav__item,
1648
- .utrecht-sidenav__sibling__item {
1657
+ .utrecht-sidenav__item {
1649
1658
  list-style: none;
1650
1659
  margin-inline-start: 0;
1651
1660
  position: relative;
1652
1661
  }
1653
1662
 
1654
- .utrecht-sidenav__item:last-child {
1663
+ .utrecht-sidenav__item--current {
1664
+ color: var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red));
1665
+ }
1666
+
1667
+ .utrecht-sidenav__item--last {
1655
1668
  border-block-end: none;
1656
1669
  }
1657
1670
 
1658
1671
  /* draw the li item box bottom line */
1659
- .utrecht-sidenav__item span:not(.utrecht-sidenav__item:last-child span, .utrecht-sidenav__item--has-children span:first-of-type) {
1672
+ .utrecht-sidenav__item-separator:not(.utrecht-sidenav__item--last .utrecht-sidenav__item-separator,
1673
+ .utrecht-sidenav__item--has-children .utrecht-sidenav__item-separator:first-of-type) {
1674
+ /* .utrecht-sidenav__item--has-children span */
1660
1675
  border-block-end: 1px solid var(--utrecht-color-grey-80);
1661
1676
  display: block;
1662
- margin-inline-start: var(--utrecht-space-inline-lg);
1663
- }
1664
-
1665
- /* Remove bottom padding form first item in list with children */
1666
- .utrecht-sidenav__item .utrecht-sidenav__link--has-children {
1667
- padding-block-end: 0;
1668
- }
1669
-
1670
- .utrecht-sidenav__child__item {
1671
- list-style: none;
1677
+ margin-inline-start: var(--utrecht-space-inline-md);
1672
1678
  }
1673
1679
 
1674
- .utrecht-sidenav__link,
1675
- .utrecht-sidenav__link--sibling {
1680
+ .utrecht-sidenav__link {
1676
1681
  color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1677
1682
  display: block;
1678
1683
  margin-inline-start: 0;
1679
1684
  padding-block-end: var(--utrecht-space-block-xs);
1680
1685
  padding-block-start: var(--utrecht-space-block-xs);
1681
1686
  padding-inline-end: var(--utrecht-space-inline-3xs);
1682
- padding-inline-start: var(--utrecht-space-inline-xl);
1687
+ padding-inline-start: var(--utrecht-space-inline-lg);
1683
1688
  text-decoration: none;
1684
1689
  }
1685
1690
 
1686
- .utrecht-sidenav__link--child,
1687
- .utrecht-sidenav__link--child--current {
1688
- color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1689
- display: block;
1690
- margin-block-end: 0;
1691
- margin-block-start: 0;
1692
- padding-block-end: var(--utrecht-space-block-2xs);
1693
- padding-block-start: var(--utrecht-space-block-2xs);
1694
- padding-inline-end: var(--utrecht-space-inline-3xs);
1695
- padding-inline-start: var(--utrecht-space-inline-xl);
1696
- text-decoration: none;
1697
- }
1698
-
1699
- .utrecht-sidenav__link::before,
1700
- .utrecht-sidenav__link--sibling::before {
1701
- background-color: var(--utrecht-sidenav-item-marker-color);
1702
- left: 26px;
1703
- }
1704
-
1705
- /* Little fix to move the dot to the right */
1706
- .utrecht-sidenav__link--current::before {
1707
- background-color: var(--utrecht-sidenav-link-hover-color);
1708
- left: 27px;
1709
- }
1710
-
1711
- /* Dot for link with siblings */
1712
- .utrecht-sidenav__link::before,
1713
- .utrecht-sidenav__link--sibling::before,
1714
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link--current::before {
1715
- border-radius: 100%;
1716
- box-shadow: 0 0 2px 2px #fff;
1717
- /* Make var */
1718
- content: "";
1719
- height: 8px;
1720
- overflow: hidden;
1721
- position: absolute;
1722
- top: 20px;
1723
- /* Hard value? */
1724
- transform: translateY(-50%) translateX(-2.5ch);
1725
- width: 8px;
1726
- z-index: 10;
1727
- }
1728
-
1729
- /* Hover layout for mousover on sidenav__link */
1730
- .utrecht-sidenav__link:hover::before,
1731
- .utrecht-sidenav__link--sibling:hover::before {
1732
- background-color: var(--utrecht-sidenav-link-hover-color);
1733
- }
1734
-
1735
- .utrecht-sidenav__item a:hover {
1691
+ .utrecht-sidenav__link:hover {
1736
1692
  color: var(--utrecht-sidenav-link-hover-color, var(--utrecht-link-hover-color, red));
1737
1693
  text-decoration: underline;
1738
1694
  }
1739
1695
 
1740
- .utrecht-sidenav__item--current {
1741
- color: var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red));
1696
+ .utrecht-sidenav__link--focus-visible, .utrecht-sidenav__link:focus {
1697
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1698
+ outline-color: var(--utrecht-focus-outline-color, transparent);
1699
+ outline-offset: 0;
1700
+ outline-style: var(--utrecht-focus-outline-style, solid);
1701
+ outline-width: var(--utrecht-focus-outline-width, 0);
1702
+ }
1703
+
1704
+ /* Remove bottom padding form first item in list with children */
1705
+ .utrecht-sidenav__link--has-children {
1706
+ padding-block-end: 0;
1742
1707
  }
1743
1708
 
1744
1709
  /* Draw metro connection lines on sidenav link items */
1745
- .utrecht-sidenav__link::after,
1746
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link::after {
1747
- background: var(--utrecht-sidenav-item-marker-color);
1748
- /* min-height: 100%;
1749
- height: calc(100% + 2px); */
1710
+ .utrecht-sidenav__connection, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:not(.utrecht-sidenav__link--sibling):not(.utrecht-sidenav__link--child)::after {
1711
+ background: var(--utrecht-sidenav-connection-color);
1750
1712
  bottom: 0;
1751
1713
  content: "";
1752
1714
  display: block;
1715
+ height: calc(var(--utrecht-sidenav-connection-block-size) + 2px);
1753
1716
  left: 3px;
1717
+ min-height: var(--utrecht-sidenav-connection-block-size);
1754
1718
  overflow: hidden;
1755
1719
  position: absolute;
1756
1720
  top: -22px;
1757
- width: 3px;
1721
+ width: var(--utrecht-sidenav-connection-inline-size);
1758
1722
  z-index: 5;
1759
1723
  }
1760
1724
 
1761
- /* Draw short metro connection lines on sidenav child link items */
1762
- .utrecht-sidenav__item:last-child .utrecht-sidenav__link::after,
1763
- .utrecht-sidenav__link--current::after,
1764
- .utrecht-sidenav__item--has-children a::after {
1765
- height: 40px;
1766
- min-height: 38px;
1767
- }
1768
-
1769
- /* Remove first metro line in listing */
1770
- .utrecht-sidenav__item:first-child .utrecht-sidenav__link::after {
1771
- content: "";
1725
+ .utrecht-sidenav__connection--first, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__item:first-child .utrecht-sidenav__link::after {
1772
1726
  display: none;
1773
1727
  }
1774
1728
 
1775
- /* Make current link bold */
1776
- .utrecht-sidenav__link--current,
1777
- .utrecht-sidenav__link--child--current {
1778
- font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1779
- }
1780
-
1781
- .utrecht-sidenav__list--child {
1782
- margin-block-end: 0;
1783
- margin-block-start: 0;
1784
- padding-block-end: 0;
1785
- padding-block-start: 0;
1786
- padding-inline-end: 0;
1787
- padding-inline-start: 1.4rem;
1788
- }
1789
-
1790
- .utrecht-sidenav__item--child {
1791
- border: none;
1792
- list-style: none;
1793
- position: relative;
1794
- }
1795
-
1796
- /* No last border on child item */
1797
- .utrecht-sidenav__item--child:last-child {
1798
- border: none;
1729
+ /* Dot for link with siblings */
1730
+ /* Little fix to move the dot to the right */
1731
+ .utrecht-sidenav__marker, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before {
1732
+ background-color: var(--utrecht-sidenav-item-marker-color);
1733
+ border-radius: 100%;
1734
+ box-shadow: 0 0 2px 2px #fff;
1735
+ /* Make var */
1736
+ content: "";
1737
+ height: 8px;
1738
+ left: var(--utrecht-sidenav-marker-offset);
1739
+ overflow: hidden;
1740
+ position: absolute;
1741
+ top: 20px;
1742
+ /* Hard value? */
1743
+ transform: translateY(-50%) translateX(calc(-1 * var(--utrecht-sidenav-marker-offset)));
1744
+ width: 8px;
1745
+ z-index: 10;
1799
1746
  }
1800
1747
 
1801
1748
  /* Add dot bullets on child links */
1802
- .utrecht-sidenav__link--child::before,
1803
- .utrecht-sidenav__link--child--current::before {
1749
+ .utrecht-sidenav__marker--child, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::before {
1804
1750
  background-color: transparent;
1805
1751
  border: 2px solid var(--utrecht-sidenav-link-color);
1806
- border-radius: 100%;
1807
- content: "";
1808
1752
  height: 4px;
1809
1753
  left: 1.2rem;
1810
- overflow: hidden;
1811
- position: absolute;
1812
1754
  top: 16px;
1813
1755
  transform: translateY(-50%) translateX(-19.5px);
1814
1756
  width: 4px;
1815
- z-index: 10;
1816
1757
  }
1817
1758
 
1818
- /* Make current marker dots bold */
1819
- .utrecht-sidenav__link--child--current::before {
1759
+ /* selector must override .utrecht-sidenav__marker--child */
1760
+ .utrecht-sidenav__marker--current, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current::before,
1761
+ .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current-child::before {
1762
+ background-color: var(--utrecht-sidenav-marker-current-color);
1763
+ }
1764
+
1765
+ .utrecht-sidenav__link--child,
1766
+ .utrecht-sidenav__link--current-child {
1767
+ color: var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));
1768
+ margin-block-end: 0;
1769
+ margin-block-start: 0;
1770
+ padding-block-end: var(--utrecht-space-block-2xs);
1771
+ padding-block-start: var(--utrecht-space-block-2xs);
1772
+ padding-inline-end: var(--utrecht-space-inline-3xs);
1773
+ padding-inline-start: var(--utrecht-space-inline-lg);
1774
+ text-decoration: none;
1775
+ }
1776
+
1777
+ .utrecht-sidenav__link--current,
1778
+ .utrecht-sidenav__link--current-child {
1779
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
1780
+ }
1781
+
1782
+ /* Hover layout for mousover on sidenav__link */
1783
+ .utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover::before {
1820
1784
  background-color: var(--utrecht-sidenav-link-hover-color);
1821
1785
  }
1822
1786
 
1823
1787
  /* Hover layout for mousover on child__link */
1824
- .utrecht-sidenav__link--child:hover::before {
1788
+ .utrecht-sidenav__marker--child.utrecht-sidenav__marker--hover, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link:hover::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--hover.utrecht-sidenav__link--child::before, .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child.utrecht-sidenav__link:hover::before {
1825
1789
  background-color: var(--utrecht-sidenav-link-hover-color);
1826
1790
  border: 2px solid var(--utrecht-sidenav-link-hover-color);
1827
1791
  }
1828
1792
 
1829
- /* remove :after lines in child and sibling links */
1830
- .utrecht-sidenav__item--child:first-child .utrecht-sidenav__link--child--current::after,
1831
- .utrecht-sidenav__link--child::after,
1832
- .utrecht-sidenav__item .utrecht-sidenav__item--child .utrecht-sidenav__link--child::after,
1833
- .utrecht-sidenav__item .utrecht-sidenav__link--sibling::after,
1834
- .utrecht-sidenav__item--sibling:last-child .utrecht-sidenav__link--sibling::after {
1793
+ .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::after {
1835
1794
  display: none;
1836
1795
  }
1837
1796
 
1838
- .utrecht-sidenav__link--focus-visible, .utrecht-sidenav__link:focus {
1839
- box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
1840
- outline-color: var(--utrecht-focus-outline-color, transparent);
1841
- outline-offset: 0;
1842
- outline-style: var(--utrecht-focus-outline-style, solid);
1843
- outline-width: var(--utrecht-focus-outline-width, 0);
1844
- }
1845
-
1846
1797
  .utrecht-sidenav__link:focus:not(:focus-visible) {
1847
1798
  /* undo focus ring */
1848
1799
  box-shadow: none;
@@ -3892,6 +3843,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
3892
3843
  text-underline-offset: var(--utrecht-link-text-underline-offset);
3893
3844
  }
3894
3845
 
3846
+ .utrecht-link-icon-left {
3847
+ background-image: var(--utrecht-link-icon-left-background-image, none);
3848
+ background-position: 0 0.25em;
3849
+ background-repeat: no-repeat;
3850
+ color: var(--utrecht-link-color, blue);
3851
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
3852
+ padding-inline-start: var(--utrecht-space-block-md);
3853
+ text-decoration: none;
3854
+ }
3855
+
3895
3856
  .utrecht-link:visited,
3896
3857
  .utrecht-link--visited,
3897
3858
  .utrecht-html a:visited {
@@ -4590,6 +4551,16 @@ however browsers don't seem to have implemented great looking supixel tweening y
4590
4551
  text-underline-offset: var(--utrecht-link-text-underline-offset);
4591
4552
  }
4592
4553
 
4554
+ .utrecht-link-icon-left {
4555
+ background-image: var(--utrecht-link-icon-left-background-image, none);
4556
+ background-position: 0 0.25em;
4557
+ background-repeat: no-repeat;
4558
+ color: var(--utrecht-link-color, blue);
4559
+ font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
4560
+ padding-inline-start: var(--utrecht-space-block-md);
4561
+ text-decoration: none;
4562
+ }
4563
+
4593
4564
  .utrecht-link:visited,
4594
4565
  .utrecht-link--visited,
4595
4566
  .utrecht-html a:visited {
@@ -5293,7 +5264,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
5293
5264
  /* Collection of CSS variables for Utrecht theme applied to `:root` */
5294
5265
  /**
5295
5266
  * Do not edit directly
5296
- * Generated on Wed, 12 Jan 2022 09:31:42 GMT
5267
+ * Generated on Tue, 01 Feb 2022 12:34:39 GMT
5297
5268
  */
5298
5269
  :root {
5299
5270
  --utrecht-toptask-nav-link-grid-max-inline-size: 240px;
@@ -5344,7 +5315,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
5344
5315
  /* 12px */
5345
5316
  --utrecht-typography-scale-2xs-font-size: 0.5rem;
5346
5317
  /* 8px */
5347
- --utrecht-typography-sans-serif-font-family: "Arial", sans-serif;
5318
+ --utrecht-typography-sans-serif-fallback-font-family: "Arial", sans-serif;
5319
+ --utrecht-typography-sans-serif-font-family: "Lucida Grande";
5348
5320
  --utrecht-color-black: hsl(0 0% 0%);
5349
5321
  --utrecht-color-white: hsl(0 0% 100%);
5350
5322
  --utrecht-color-invalid: #990000;
@@ -5761,38 +5733,32 @@ however browsers don't seem to have implemented great looking supixel tweening y
5761
5733
  --utrecht-heading-6-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
5762
5734
  --utrecht-heading-6-font-size: var(--utrecht-typography-scale-sm-font-size);
5763
5735
  --utrecht-heading-6-font-family: var(--utrecht-typography-sans-serif-font-family);
5764
- --utrecht-heading-6-color: var(--utrecht-color-black);
5765
5736
  --utrecht-heading-5-text-transform: var(--utrecht-typography-text-transform-uppercase);
5766
5737
  --utrecht-heading-5-letter-spacing: var(--utrecht-typography-letter-spacing-sm);
5767
5738
  --utrecht-heading-5-line-height: var(--utrecht-typography-line-height-md);
5768
5739
  --utrecht-heading-5-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
5769
5740
  --utrecht-heading-5-font-size: var(--utrecht-typography-scale-sm-font-size);
5770
5741
  --utrecht-heading-5-font-family: var(--utrecht-typography-sans-serif-font-family);
5771
- --utrecht-heading-5-color: var(--utrecht-color-black);
5772
5742
  --utrecht-heading-4-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
5773
5743
  --utrecht-heading-4-line-height: var(--utrecht-typography-line-height-md);
5774
5744
  --utrecht-heading-4-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
5775
5745
  --utrecht-heading-4-font-size: var(--utrecht-typography-scale-lg-font-size);
5776
5746
  --utrecht-heading-4-font-family: var(--utrecht-typography-sans-serif-font-family);
5777
- --utrecht-heading-4-color: var(--utrecht-color-black);
5778
5747
  --utrecht-heading-3-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
5779
5748
  --utrecht-heading-3-line-height: var(--utrecht-typography-line-height-sm);
5780
5749
  --utrecht-heading-3-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
5781
5750
  --utrecht-heading-3-font-size: var(--utrecht-typography-scale-xl-font-size);
5782
5751
  --utrecht-heading-3-font-family: var(--utrecht-typography-sans-serif-font-family);
5783
- --utrecht-heading-3-color: var(--utrecht-color-black);
5784
5752
  --utrecht-heading-2-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
5785
5753
  --utrecht-heading-2-line-height: var(--utrecht-typography-line-height-sm);
5786
5754
  --utrecht-heading-2-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
5787
5755
  --utrecht-heading-2-font-size: var(--utrecht-typography-scale-xl-font-size);
5788
5756
  --utrecht-heading-2-font-family: var(--utrecht-typography-sans-serif-font-family);
5789
- --utrecht-heading-2-color: var(--utrecht-color-black);
5790
5757
  --utrecht-heading-1-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
5791
5758
  --utrecht-heading-1-line-height: var(--utrecht-typography-line-height-sm);
5792
5759
  --utrecht-heading-1-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
5793
5760
  --utrecht-heading-1-font-size: var(--utrecht-typography-scale-3xl-font-size);
5794
5761
  --utrecht-heading-1-font-family: var(--utrecht-typography-sans-serif-font-family);
5795
- --utrecht-heading-1-color: var(--utrecht-color-black);
5796
5762
  --utrecht-form-toggle-focus-border-color: var(--utrecht-color-black);
5797
5763
  --utrecht-form-toggle-checked-accent-color: var(--utrecht-color-blue-35);
5798
5764
  --utrecht-form-toggle-thumb-disabled-background-color: var(--utrecht-color-white);
@@ -5917,6 +5883,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
5917
5883
  --utrecht-link-visited-color: var(--utrecht-link-color);
5918
5884
  --utrecht-link-hover-color: var(--utrecht-link-focus-color);
5919
5885
  --utrecht-link-active-color: var(--utrecht-link-color);
5886
+ --utrecht-heading-6-color: var(--utrecht-document-color);
5887
+ --utrecht-heading-5-color: var(--utrecht-document-color);
5888
+ --utrecht-heading-4-color: var(--utrecht-document-color);
5889
+ --utrecht-heading-3-color: var(--utrecht-document-color);
5890
+ --utrecht-heading-2-color: var(--utrecht-document-color);
5891
+ --utrecht-heading-1-color: var(--utrecht-document-color);
5920
5892
  --utrecht-form-input-invalid-border-color: var(--utrecht-feedback-invalid-border-color);
5921
5893
  --utrecht-form-input-font-family: var(--utrecht-document-font-family);
5922
5894
  --utrecht-custom-checkbox-invalid-background-color: var(--utrecht-feedback-invalid-background-color);
@@ -5989,6 +5961,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
5989
5961
  }
5990
5962
  :root {
5991
5963
  --utrecht-menulijst-item-background-image: url("./pijltje.svg");
5964
+ --utrecht-link-icon-left-background-image: url("./pijltje.svg");
5992
5965
  --utrecht-search-bar-input-background-image: url("./icoon-zoek-rood.svg");
5993
5966
  --utrecht-select-background-image: url("./arrow-dropdown.svg");
5994
5967
  --utrecht-link-list-marker-background-image: url("./pijltje-zwart.svg");
@@ -5,7 +5,7 @@
5
5
  /* Collection of CSS variables for Utrecht theme applied to `:root` */
6
6
  /**
7
7
  * Do not edit directly
8
- * Generated on Wed, 12 Jan 2022 09:31:42 GMT
8
+ * Generated on Tue, 01 Feb 2022 12:34:39 GMT
9
9
  */
10
10
  :root {
11
11
  --utrecht-toptask-nav-link-grid-max-inline-size: 240px;
@@ -56,7 +56,8 @@
56
56
  /* 12px */
57
57
  --utrecht-typography-scale-2xs-font-size: 0.5rem;
58
58
  /* 8px */
59
- --utrecht-typography-sans-serif-font-family: "Arial", sans-serif;
59
+ --utrecht-typography-sans-serif-fallback-font-family: "Arial", sans-serif;
60
+ --utrecht-typography-sans-serif-font-family: "Lucida Grande";
60
61
  --utrecht-color-black: hsl(0 0% 0%);
61
62
  --utrecht-color-white: hsl(0 0% 100%);
62
63
  --utrecht-color-invalid: #990000;
@@ -473,38 +474,32 @@
473
474
  --utrecht-heading-6-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
474
475
  --utrecht-heading-6-font-size: var(--utrecht-typography-scale-sm-font-size);
475
476
  --utrecht-heading-6-font-family: var(--utrecht-typography-sans-serif-font-family);
476
- --utrecht-heading-6-color: var(--utrecht-color-black);
477
477
  --utrecht-heading-5-text-transform: var(--utrecht-typography-text-transform-uppercase);
478
478
  --utrecht-heading-5-letter-spacing: var(--utrecht-typography-letter-spacing-sm);
479
479
  --utrecht-heading-5-line-height: var(--utrecht-typography-line-height-md);
480
480
  --utrecht-heading-5-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
481
481
  --utrecht-heading-5-font-size: var(--utrecht-typography-scale-sm-font-size);
482
482
  --utrecht-heading-5-font-family: var(--utrecht-typography-sans-serif-font-family);
483
- --utrecht-heading-5-color: var(--utrecht-color-black);
484
483
  --utrecht-heading-4-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
485
484
  --utrecht-heading-4-line-height: var(--utrecht-typography-line-height-md);
486
485
  --utrecht-heading-4-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
487
486
  --utrecht-heading-4-font-size: var(--utrecht-typography-scale-lg-font-size);
488
487
  --utrecht-heading-4-font-family: var(--utrecht-typography-sans-serif-font-family);
489
- --utrecht-heading-4-color: var(--utrecht-color-black);
490
488
  --utrecht-heading-3-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
491
489
  --utrecht-heading-3-line-height: var(--utrecht-typography-line-height-sm);
492
490
  --utrecht-heading-3-font-weight: var(--utrecht-typography-weight-scale-normal-font-weight);
493
491
  --utrecht-heading-3-font-size: var(--utrecht-typography-scale-xl-font-size);
494
492
  --utrecht-heading-3-font-family: var(--utrecht-typography-sans-serif-font-family);
495
- --utrecht-heading-3-color: var(--utrecht-color-black);
496
493
  --utrecht-heading-2-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
497
494
  --utrecht-heading-2-line-height: var(--utrecht-typography-line-height-sm);
498
495
  --utrecht-heading-2-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
499
496
  --utrecht-heading-2-font-size: var(--utrecht-typography-scale-xl-font-size);
500
497
  --utrecht-heading-2-font-family: var(--utrecht-typography-sans-serif-font-family);
501
- --utrecht-heading-2-color: var(--utrecht-color-black);
502
498
  --utrecht-heading-1-letter-spacing: var(--utrecht-typography-letter-spacing-normal);
503
499
  --utrecht-heading-1-line-height: var(--utrecht-typography-line-height-sm);
504
500
  --utrecht-heading-1-font-weight: var(--utrecht-typography-weight-scale-bold-font-weight);
505
501
  --utrecht-heading-1-font-size: var(--utrecht-typography-scale-3xl-font-size);
506
502
  --utrecht-heading-1-font-family: var(--utrecht-typography-sans-serif-font-family);
507
- --utrecht-heading-1-color: var(--utrecht-color-black);
508
503
  --utrecht-form-toggle-focus-border-color: var(--utrecht-color-black);
509
504
  --utrecht-form-toggle-checked-accent-color: var(--utrecht-color-blue-35);
510
505
  --utrecht-form-toggle-thumb-disabled-background-color: var(--utrecht-color-white);
@@ -629,6 +624,12 @@
629
624
  --utrecht-link-visited-color: var(--utrecht-link-color);
630
625
  --utrecht-link-hover-color: var(--utrecht-link-focus-color);
631
626
  --utrecht-link-active-color: var(--utrecht-link-color);
627
+ --utrecht-heading-6-color: var(--utrecht-document-color);
628
+ --utrecht-heading-5-color: var(--utrecht-document-color);
629
+ --utrecht-heading-4-color: var(--utrecht-document-color);
630
+ --utrecht-heading-3-color: var(--utrecht-document-color);
631
+ --utrecht-heading-2-color: var(--utrecht-document-color);
632
+ --utrecht-heading-1-color: var(--utrecht-document-color);
632
633
  --utrecht-form-input-invalid-border-color: var(--utrecht-feedback-invalid-border-color);
633
634
  --utrecht-form-input-font-family: var(--utrecht-document-font-family);
634
635
  --utrecht-custom-checkbox-invalid-background-color: var(--utrecht-feedback-invalid-background-color);
@@ -701,6 +702,7 @@
701
702
  }
702
703
  :root {
703
704
  --utrecht-menulijst-item-background-image: url("./pijltje.svg");
705
+ --utrecht-link-icon-left-background-image: url("./pijltje.svg");
704
706
  --utrecht-search-bar-input-background-image: url("./icoon-zoek-rood.svg");
705
707
  --utrecht-select-background-image: url("./arrow-dropdown.svg");
706
708
  --utrecht-link-list-marker-background-image: url("./pijltje-zwart.svg");
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.165",
2
+ "version": "1.0.0-alpha.169",
3
3
  "author": "Community for NL Design System",
4
4
  "description": "Component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
5
5
  "license": "EUPL-1.2",
@@ -16,15 +16,15 @@
16
16
  "url": "git@github.com:nl-design-system/utrecht.git"
17
17
  },
18
18
  "devDependencies": {
19
- "@utrecht/design-tokens": "1.0.0-alpha.158",
19
+ "@utrecht/design-tokens": "1.0.0-alpha.162",
20
20
  "node-sass-package-importer": "5.3.2",
21
21
  "rimraf": "3.0.2",
22
- "sass": "1.45.2"
22
+ "sass": "1.49.0"
23
23
  },
24
24
  "scripts": {
25
25
  "prebuild": "npm run clean",
26
26
  "build": "sass src/:dist/ --load-path=../../node_modules/ --no-source-map",
27
27
  "clean": "rimraf dist/"
28
28
  },
29
- "gitHead": "c6b5799357f587f01014ea766580999e0af0f265"
29
+ "gitHead": "7f19eec777fd2beaea33c45f77232dd95735b17a"
30
30
  }