@utrecht/component-library-css 1.0.0-alpha.377 → 1.0.0-alpha.379
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 +52 -3
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -3849,7 +3849,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3849
3849
|
* Copyright (c) 2021 Robbert Broersma
|
|
3850
3850
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
3851
3851
|
*/
|
|
3852
|
-
.utrecht-ordered-list
|
|
3852
|
+
.utrecht-ordered-list,
|
|
3853
|
+
.utrecht-ordered-list--html-content ol {
|
|
3853
3854
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
3854
3855
|
font-size: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-font-size, var(--utrecht-document-font-size, inherit)));
|
|
3855
3856
|
line-height: var(--utrecht-ordered-list-font-size, var(--utrecht-unordered-list-line-height, var(--utrecht-document-line-height, inherit)));
|
|
@@ -3866,6 +3867,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3866
3867
|
list-style: arabic-indic;
|
|
3867
3868
|
}
|
|
3868
3869
|
|
|
3870
|
+
.utrecht-ordered-list--html-content > li,
|
|
3871
|
+
.utrecht-ordered-list--html-content ol > li,
|
|
3869
3872
|
.utrecht-ordered-list__item {
|
|
3870
3873
|
margin-block-end: var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));
|
|
3871
3874
|
margin-block-start: var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));
|
|
@@ -4471,6 +4474,46 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4471
4474
|
text-decoration: var(--utrecht-skip-link-focus-text-decoration);
|
|
4472
4475
|
}
|
|
4473
4476
|
|
|
4477
|
+
/**
|
|
4478
|
+
* @license EUPL-1.2
|
|
4479
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
4480
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
4481
|
+
*/
|
|
4482
|
+
/**
|
|
4483
|
+
* @license EUPL-1.2
|
|
4484
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
4485
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
4486
|
+
*/
|
|
4487
|
+
.utrecht-spotlight-section {
|
|
4488
|
+
background-color: var(--_utrecht-spotlight-section-background-color, var(--utrecht-spotlight-section-background-color));
|
|
4489
|
+
border-color: var(--_utrecht-spotlight-section-border-color, var(--utrecht-spotlight-section-border-color));
|
|
4490
|
+
border-style: solid;
|
|
4491
|
+
border-width: var(--_utrecht-spotlight-section-border-width, var(--utrecht-spotlight-section-border-width, 0));
|
|
4492
|
+
color: var(--_utrecht-spotlight-section-color, var(--utrecht-spotlight-section-color));
|
|
4493
|
+
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-spotlight-section-margin-block-end, 0));
|
|
4494
|
+
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-spotlight-section-margin-block-start, 0));
|
|
4495
|
+
padding-block-end: var(--utrecht-spotlight-section-padding-block-end);
|
|
4496
|
+
padding-block-start: var(--utrecht-spotlight-section-padding-block-start);
|
|
4497
|
+
padding-inline-end: var(--utrecht-spotlight-section-padding-inline-end);
|
|
4498
|
+
padding-inline-start: var(--utrecht-spotlight-section-padding-inline-start);
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
.utrecht-spotlight-section--info {
|
|
4502
|
+
--_utrecht-spotlight-section-icon-color: var(--utrecht-spotlight-section-icon-info-color);
|
|
4503
|
+
--_utrecht-spotlight-section-background-color: var(--utrecht-spotlight-section-info-background-color);
|
|
4504
|
+
--_utrecht-spotlight-section-border-color: var(--utrecht-spotlight-section-info-border-color);
|
|
4505
|
+
--_utrecht-spotlight-section-border-width: var(--utrecht-spotlight-section-info-border-width);
|
|
4506
|
+
--_utrecht-spotlight-section-color: var(--utrecht-spotlight-section-info-color);
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
.utrecht-spotlight-section--warning {
|
|
4510
|
+
--_utrecht-spotlight-section-icon-color: var(--utrecht-spotlight-section-icon-warning-color);
|
|
4511
|
+
--_utrecht-spotlight-section-background-color: var(--utrecht-spotlight-section-warning-background-color);
|
|
4512
|
+
--_utrecht-spotlight-section-border-color: var(--utrecht-spotlight-section-warning-border-color);
|
|
4513
|
+
--_utrecht-spotlight-section-border-width: var(--utrecht-spotlight-section-warning-border-width);
|
|
4514
|
+
--_utrecht-spotlight-section-color: var(--utrecht-spotlight-section-warning-color);
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4474
4517
|
/**
|
|
4475
4518
|
* @license EUPL-1.2
|
|
4476
4519
|
* Copyright (c) 2021 Robbert Broersma
|
|
@@ -4864,7 +4907,8 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4864
4907
|
* Copyright (c) 2021 Robbert Broersma
|
|
4865
4908
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
4866
4909
|
*/
|
|
4867
|
-
.utrecht-unordered-list
|
|
4910
|
+
.utrecht-unordered-list,
|
|
4911
|
+
.utrecht-unordered-list--html-content ul {
|
|
4868
4912
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
4869
4913
|
font-size: var(--utrecht-unordered-list-font-size, var(--utrecht-document-font-size, inherit));
|
|
4870
4914
|
line-height: var(--utrecht-unordered-list-line-height, var(--utrecht-document-line-height, inherit));
|
|
@@ -4877,17 +4921,22 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4877
4921
|
--utrecht-space-around: 1;
|
|
4878
4922
|
}
|
|
4879
4923
|
|
|
4880
|
-
.utrecht-unordered-list--nested
|
|
4924
|
+
.utrecht-unordered-list--nested,
|
|
4925
|
+
.utrecht-unordered-list--html-content ul {
|
|
4881
4926
|
margin-block-end: 0;
|
|
4882
4927
|
margin-inline-start: 2ch;
|
|
4883
4928
|
}
|
|
4884
4929
|
|
|
4930
|
+
.utrecht-unordered-list--html-content > li,
|
|
4931
|
+
.utrecht-unordered-list--html-content ul > li,
|
|
4885
4932
|
.utrecht-unordered-list__item {
|
|
4886
4933
|
margin-block-end: var(--utrecht-unordered-list-item-margin-block-end);
|
|
4887
4934
|
margin-block-start: var(--utrecht-unordered-list-item-margin-block-start);
|
|
4888
4935
|
padding-inline-start: var(--utrecht-unordered-list-item-padding-inline-start, 1ch);
|
|
4889
4936
|
}
|
|
4890
4937
|
|
|
4938
|
+
.utrecht-unordered-list--html-content > li::marker,
|
|
4939
|
+
.utrecht-unordered-list--html-content ul > li::marker,
|
|
4891
4940
|
.utrecht-unordered-list__item::marker,
|
|
4892
4941
|
.utrecht-unordered-list__marker {
|
|
4893
4942
|
color: var(--utrecht-unordered-list-marker-color);
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.379",
|
|
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": "70c085346246d53dcfc83671bad921b3ed9c61d3"
|
|
30
30
|
}
|