@utrecht/component-library-css 1.0.0-alpha.444 → 1.0.0-alpha.446

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/html.css CHANGED
@@ -1048,6 +1048,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
1048
1048
  --utrecht-code-font-family: var(--utrecht-code-block-font-family, monospace);
1049
1049
  background-color: var(--utrecht-code-block-background-color);
1050
1050
  display: block;
1051
+ font-size: var(--utrecht-code-block-font-size, var(--utrecht-code-font-size));
1052
+ line-height: var(--utrecht-code-block-line-height, var(--utrecht-code-line-height));
1051
1053
  margin-block-end: var(--utrecht-code-block-margin-block-end);
1052
1054
  margin-block-start: var(--utrecht-code-block-margin-block-start);
1053
1055
  margin-inline-end: var(--utrecht-code-block-margin-inline-end);
package/dist/index.css CHANGED
@@ -1439,6 +1439,8 @@ ol.utrecht-breadcrumb__list {
1439
1439
  --utrecht-code-font-family: var(--utrecht-code-block-font-family, monospace);
1440
1440
  background-color: var(--utrecht-code-block-background-color);
1441
1441
  display: block;
1442
+ font-size: var(--utrecht-code-block-font-size, var(--utrecht-code-font-size));
1443
+ line-height: var(--utrecht-code-block-line-height, var(--utrecht-code-line-height));
1442
1444
  margin-block-end: var(--utrecht-code-block-margin-block-end);
1443
1445
  margin-block-start: var(--utrecht-code-block-margin-block-start);
1444
1446
  margin-inline-end: var(--utrecht-code-block-margin-inline-end);
@@ -4721,6 +4723,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
4721
4723
  --utrecht-space-around: 1;
4722
4724
  }
4723
4725
 
4726
+ .utrecht-table--html-table > caption,
4724
4727
  .utrecht-table__caption {
4725
4728
  color: var(--utrecht-table-caption-color);
4726
4729
  font-family: var(--utrecht-table-caption-font-family);
@@ -4732,6 +4735,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
4732
4735
  text-align: var(--utrecht-table-caption-text-align, center);
4733
4736
  }
4734
4737
 
4738
+ .utrecht-table--html-table > thead,
4735
4739
  .utrecht-table__header {
4736
4740
  background-color: var(--utrecht-table-header-background-color);
4737
4741
  color: var(--utrecht-table-header-color);
@@ -4741,16 +4745,33 @@ however browsers don't seem to have implemented great looking supixel tweening y
4741
4745
  vertical-align: bottom;
4742
4746
  }
4743
4747
 
4748
+ .utrecht-table--html-table > thead > tr:last-of-type,
4744
4749
  .utrecht-table__cell--last-header-row {
4745
4750
  border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
4746
4751
  border-block-end-style: solid;
4747
4752
  border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
4748
4753
  }
4749
4754
 
4755
+ .utrecht-table--html-table > tbody,
4750
4756
  .utrecht-table__body {
4751
4757
  vertical-align: baseline;
4752
4758
  }
4753
4759
 
4760
+ /* `.utrecht-table--html-table` should not affect nested tables.
4761
+ * We will use the `>` direct descendant selector so the styling doesn't affect nested tables. */
4762
+ /* stylelint-disable no-descending-specificity */
4763
+ .utrecht-table--html-table > tr,
4764
+ .utrecht-table--html-table > thead > tr,
4765
+ .utrecht-table--html-table > tbody > tr,
4766
+ .utrecht-table--html-table > tfoot > tr,
4767
+ .utrecht-table__row {
4768
+ page-break-inside: avoid;
4769
+ }
4770
+
4771
+ .utrecht-table--html-table > tr > th,
4772
+ .utrecht-table--html-table > thead > tr > th,
4773
+ .utrecht-table--html-table > tbody > tr > th,
4774
+ .utrecht-table--html-table > tfoot > tr > th,
4754
4775
  .utrecht-table__header-cell {
4755
4776
  color: var(--utrecht-table-header-cell-color);
4756
4777
  font-size: var(--utrecht-table-header-cell-font-size);
@@ -4759,6 +4780,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
4759
4780
  text-transform: var(--utrecht-table-header-cell-text-transform);
4760
4781
  }
4761
4782
 
4783
+ .utrecht-table--html-table > tr > td,
4784
+ .utrecht-table--html-table > thead > tr > td,
4785
+ .utrecht-table--html-table > tbody > tr > td,
4786
+ .utrecht-table--html-table > tfoot > tr > td,
4762
4787
  .utrecht-table__cell {
4763
4788
  border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
4764
4789
  border-block-end-style: solid;
@@ -4771,14 +4796,23 @@ however browsers don't seem to have implemented great looking supixel tweening y
4771
4796
  text-align: start;
4772
4797
  }
4773
4798
 
4799
+ .utrecht-table--html-table > tr > td:first-child,
4800
+ .utrecht-table--html-table > thead > tr > td:first-child,
4801
+ .utrecht-table--html-table > tbody > tr > td:first-child,
4802
+ .utrecht-table--html-table > tfoot > tr > td:first-child,
4774
4803
  .utrecht-table__cell--first {
4775
4804
  padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
4776
4805
  }
4777
4806
 
4807
+ .utrecht-table--html-table > tr > td:last-child,
4808
+ .utrecht-table--html-table > thead > tr > td:last-child,
4809
+ .utrecht-table--html-table > tbody > tr > td:last-child,
4810
+ .utrecht-table--html-table > tfoot > tr > td:last-child,
4778
4811
  .utrecht-table__cell--last {
4779
4812
  padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
4780
4813
  }
4781
4814
 
4815
+ /* stylelint-enable no-descending-specificity */
4782
4816
  .utrecht-table__header-cell--numeric-column,
4783
4817
  .utrecht-table__cell--numeric-column {
4784
4818
  /* stylelint-disable-next-line declaration-property-value-disallowed-list */
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.444",
2
+ "version": "1.0.0-alpha.446",
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",
@@ -26,5 +26,5 @@
26
26
  "clean": "rimraf dist/"
27
27
  },
28
28
  "main": "dist/index.css",
29
- "gitHead": "92f8841a11adbf66152a7bb7eeaffcf997f82788"
29
+ "gitHead": "e53de9b54d4e8a4ba04628a32dba9cb4e78644aa"
30
30
  }