@utrecht/component-library-css 1.0.0-alpha.466 → 1.0.0-alpha.467
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 +5 -0
- package/dist/index.css +15 -0
- package/package.json +2 -2
package/dist/html.css
CHANGED
|
@@ -992,12 +992,15 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
992
992
|
white-space: nowrap;
|
|
993
993
|
}
|
|
994
994
|
.utrecht-html ol {
|
|
995
|
+
/* Configure `width` and `text-align` for `--center` */
|
|
995
996
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
996
997
|
font-size: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-font-size, var(--utrecht-document-font-size, inherit)));
|
|
997
998
|
line-height: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-line-height, var(--utrecht-document-line-height, inherit)));
|
|
998
999
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end, 0)));
|
|
999
1000
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start, 0)));
|
|
1000
1001
|
padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
|
|
1002
|
+
text-align: start;
|
|
1003
|
+
width: max-content;
|
|
1001
1004
|
--utrecht-space-around: 1;
|
|
1002
1005
|
}
|
|
1003
1006
|
.utrecht-html ol > li {
|
|
@@ -1577,6 +1580,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1577
1580
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end, 0)));
|
|
1578
1581
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start, 0)));
|
|
1579
1582
|
padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
|
|
1583
|
+
text-align: start;
|
|
1584
|
+
width: max-content;
|
|
1580
1585
|
--utrecht-space-around: 1;
|
|
1581
1586
|
}
|
|
1582
1587
|
.utrecht-html ul > li {
|
package/dist/index.css
CHANGED
|
@@ -3963,12 +3963,20 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3963
3963
|
*/
|
|
3964
3964
|
.utrecht-ordered-list,
|
|
3965
3965
|
.utrecht-ordered-list--html-content ol {
|
|
3966
|
+
/* Configure `width` and `text-align` for `--center` */
|
|
3966
3967
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
3967
3968
|
font-size: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-font-size, var(--utrecht-document-font-size, inherit)));
|
|
3968
3969
|
line-height: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-line-height, var(--utrecht-document-line-height, inherit)));
|
|
3969
3970
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end, 0)));
|
|
3970
3971
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start, 0)));
|
|
3971
3972
|
padding-inline-start: var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch));
|
|
3973
|
+
text-align: start;
|
|
3974
|
+
width: max-content;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.utrecht-ordered-list--center {
|
|
3978
|
+
margin-inline-end: auto;
|
|
3979
|
+
margin-inline-start: auto;
|
|
3972
3980
|
}
|
|
3973
3981
|
|
|
3974
3982
|
.utrecht-ordered-list--distanced {
|
|
@@ -5228,6 +5236,13 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5228
5236
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end, 0)));
|
|
5229
5237
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start, 0)));
|
|
5230
5238
|
padding-inline-start: var(--utrecht-unordered-list-padding-inline-start, 2ch);
|
|
5239
|
+
text-align: start;
|
|
5240
|
+
width: max-content;
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5243
|
+
.utrecht-unordered-list--center {
|
|
5244
|
+
margin-inline-end: auto;
|
|
5245
|
+
margin-inline-start: auto;
|
|
5231
5246
|
}
|
|
5232
5247
|
|
|
5233
5248
|
.utrecht-unordered-list--distanced {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.467",
|
|
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": "9a3400530b243db0503af267dbdaac5c496a2cb2"
|
|
30
30
|
}
|