@utrecht/component-library-css 1.0.0-alpha.443 → 1.0.0-alpha.445
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/index.css +32 -0
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -4721,6 +4721,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4721
4721
|
--utrecht-space-around: 1;
|
|
4722
4722
|
}
|
|
4723
4723
|
|
|
4724
|
+
.utrecht-table--html-table > caption,
|
|
4724
4725
|
.utrecht-table__caption {
|
|
4725
4726
|
color: var(--utrecht-table-caption-color);
|
|
4726
4727
|
font-family: var(--utrecht-table-caption-font-family);
|
|
@@ -4732,6 +4733,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4732
4733
|
text-align: var(--utrecht-table-caption-text-align, center);
|
|
4733
4734
|
}
|
|
4734
4735
|
|
|
4736
|
+
.utrecht-table--html-table > thead,
|
|
4735
4737
|
.utrecht-table__header {
|
|
4736
4738
|
background-color: var(--utrecht-table-header-background-color);
|
|
4737
4739
|
color: var(--utrecht-table-header-color);
|
|
@@ -4741,16 +4743,33 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4741
4743
|
vertical-align: bottom;
|
|
4742
4744
|
}
|
|
4743
4745
|
|
|
4746
|
+
.utrecht-table--html-table > thead > tr:last-of-type,
|
|
4744
4747
|
.utrecht-table__cell--last-header-row {
|
|
4745
4748
|
border-block-end-color: var(--utrecht-table-header-border-block-end-color, transparent);
|
|
4746
4749
|
border-block-end-style: solid;
|
|
4747
4750
|
border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
|
|
4748
4751
|
}
|
|
4749
4752
|
|
|
4753
|
+
.utrecht-table--html-table > tbody,
|
|
4750
4754
|
.utrecht-table__body {
|
|
4751
4755
|
vertical-align: baseline;
|
|
4752
4756
|
}
|
|
4753
4757
|
|
|
4758
|
+
/* `.utrecht-table--html-table` should not affect nested tables.
|
|
4759
|
+
* We will use the `>` direct descendant selector so the styling doesn't affect nested tables. */
|
|
4760
|
+
/* stylelint-disable no-descending-specificity */
|
|
4761
|
+
.utrecht-table--html-table > tr,
|
|
4762
|
+
.utrecht-table--html-table > thead > tr,
|
|
4763
|
+
.utrecht-table--html-table > tbody > tr,
|
|
4764
|
+
.utrecht-table--html-table > tfoot > tr,
|
|
4765
|
+
.utrecht-table__row {
|
|
4766
|
+
page-break-inside: avoid;
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4769
|
+
.utrecht-table--html-table > tr > th,
|
|
4770
|
+
.utrecht-table--html-table > thead > tr > th,
|
|
4771
|
+
.utrecht-table--html-table > tbody > tr > th,
|
|
4772
|
+
.utrecht-table--html-table > tfoot > tr > th,
|
|
4754
4773
|
.utrecht-table__header-cell {
|
|
4755
4774
|
color: var(--utrecht-table-header-cell-color);
|
|
4756
4775
|
font-size: var(--utrecht-table-header-cell-font-size);
|
|
@@ -4759,6 +4778,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4759
4778
|
text-transform: var(--utrecht-table-header-cell-text-transform);
|
|
4760
4779
|
}
|
|
4761
4780
|
|
|
4781
|
+
.utrecht-table--html-table > tr > td,
|
|
4782
|
+
.utrecht-table--html-table > thead > tr > td,
|
|
4783
|
+
.utrecht-table--html-table > tbody > tr > td,
|
|
4784
|
+
.utrecht-table--html-table > tfoot > tr > td,
|
|
4762
4785
|
.utrecht-table__cell {
|
|
4763
4786
|
border-block-end-color: var(--utrecht-table-row-border-block-end-color, transparent);
|
|
4764
4787
|
border-block-end-style: solid;
|
|
@@ -4771,14 +4794,23 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4771
4794
|
text-align: start;
|
|
4772
4795
|
}
|
|
4773
4796
|
|
|
4797
|
+
.utrecht-table--html-table > tr > td:first-child,
|
|
4798
|
+
.utrecht-table--html-table > thead > tr > td:first-child,
|
|
4799
|
+
.utrecht-table--html-table > tbody > tr > td:first-child,
|
|
4800
|
+
.utrecht-table--html-table > tfoot > tr > td:first-child,
|
|
4774
4801
|
.utrecht-table__cell--first {
|
|
4775
4802
|
padding-inline-start: var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0));
|
|
4776
4803
|
}
|
|
4777
4804
|
|
|
4805
|
+
.utrecht-table--html-table > tr > td:last-child,
|
|
4806
|
+
.utrecht-table--html-table > thead > tr > td:last-child,
|
|
4807
|
+
.utrecht-table--html-table > tbody > tr > td:last-child,
|
|
4808
|
+
.utrecht-table--html-table > tfoot > tr > td:last-child,
|
|
4778
4809
|
.utrecht-table__cell--last {
|
|
4779
4810
|
padding-inline-end: var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0));
|
|
4780
4811
|
}
|
|
4781
4812
|
|
|
4813
|
+
/* stylelint-enable no-descending-specificity */
|
|
4782
4814
|
.utrecht-table__header-cell--numeric-column,
|
|
4783
4815
|
.utrecht-table__cell--numeric-column {
|
|
4784
4816
|
/* 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.
|
|
2
|
+
"version": "1.0.0-alpha.445",
|
|
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": "
|
|
29
|
+
"gitHead": "a36614d73d9a9f4c55ba7a5ad3d9453231ee4552"
|
|
30
30
|
}
|