@utrecht/component-library-css 1.0.0-alpha.591 → 1.0.0-alpha.593
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 +13 -0
- package/dist/index.css +6 -5
- package/package.json +2 -2
package/dist/html.css
CHANGED
|
@@ -708,6 +708,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
708
708
|
margin-inline-end: var(--utrecht-button-margin-inline-end);
|
|
709
709
|
margin-inline-start: var(--utrecht-button-margin-inline-start);
|
|
710
710
|
}
|
|
711
|
+
.utrecht-html button[hidden] {
|
|
712
|
+
display: none;
|
|
713
|
+
}
|
|
711
714
|
.utrecht-html button[type=submit i],
|
|
712
715
|
.utrecht-html input[type=submit i] {
|
|
713
716
|
cursor: var(--utrecht-action-submit-cursor, revert);
|
|
@@ -820,6 +823,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
820
823
|
.utrecht-html fieldset {
|
|
821
824
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-fieldset-margin-block-end, 0));
|
|
822
825
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-fieldset-margin-block-start, 0));
|
|
826
|
+
/* `all: revert` unfortunately has as side-effect that the `hidde` attribute has no effect */
|
|
823
827
|
all: revert;
|
|
824
828
|
border: 0;
|
|
825
829
|
margin-inline-end: 0;
|
|
@@ -831,6 +835,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
831
835
|
padding-inline-start: 0;
|
|
832
836
|
--utrecht-space-around: 1;
|
|
833
837
|
}
|
|
838
|
+
.utrecht-html fieldset[hidden] {
|
|
839
|
+
display: none;
|
|
840
|
+
}
|
|
834
841
|
.utrecht-html figure {
|
|
835
842
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-figure-margin-block-end, 0));
|
|
836
843
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-figure-margin-block-start, 0));
|
|
@@ -860,6 +867,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
860
867
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-fieldset-legend-margin-block-end, 0));
|
|
861
868
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-fieldset-legend-margin-block-start, 0));
|
|
862
869
|
}
|
|
870
|
+
.utrecht-html legend[hidden] {
|
|
871
|
+
display: none;
|
|
872
|
+
}
|
|
863
873
|
.utrecht-html fieldset:disabled > legend {
|
|
864
874
|
color: var(--utrecht-form-fieldset-legend-disabled-color, var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit)));
|
|
865
875
|
}
|
|
@@ -1116,6 +1126,9 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1116
1126
|
padding-inline-start: var(--utrecht-code-block-padding-inline-start);
|
|
1117
1127
|
white-space: pre;
|
|
1118
1128
|
}
|
|
1129
|
+
.utrecht-html pre[hidden]:has(> code:only-child) {
|
|
1130
|
+
display: none;
|
|
1131
|
+
}
|
|
1119
1132
|
.utrecht-html pre:has(> code:only-child) > code {
|
|
1120
1133
|
display: contents;
|
|
1121
1134
|
}
|
package/dist/index.css
CHANGED
|
@@ -2751,7 +2751,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2751
2751
|
*/
|
|
2752
2752
|
.utrecht-form-field-error-message {
|
|
2753
2753
|
--utrecht-document-color: currentColor;
|
|
2754
|
-
background-color: var(--utrecht-error-message-background-color);
|
|
2754
|
+
background-color: var(--utrecht-form-field-error-message-background-color);
|
|
2755
2755
|
color: var(--utrecht-form-field-error-message-color);
|
|
2756
2756
|
display: block;
|
|
2757
2757
|
font-family: var(--utrecht-document-font-family, inherit);
|
|
@@ -2759,10 +2759,10 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2759
2759
|
font-style: var(--utrecht-form-field-error-message-font-style);
|
|
2760
2760
|
margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-field-error-message-margin-block-end, var(--utrecht-paragraph-margin-block-end, 0)));
|
|
2761
2761
|
margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-form-field-error-message-margin-block-start, var(--utrecht-paragraph-margin-block-start, 0)));
|
|
2762
|
-
padding-block-end: var(--utrecht-error-message-padding-block-end);
|
|
2763
|
-
padding-block-start: var(--utrecht-error-message-padding-block-start);
|
|
2764
|
-
padding-inline-end: var(--utrecht-error-message-padding-inline-end);
|
|
2765
|
-
padding-inline-start: var(--utrecht-error-message-padding-inline-start);
|
|
2762
|
+
padding-block-end: var(--utrecht-form-field-error-message-padding-block-end);
|
|
2763
|
+
padding-block-start: var(--utrecht-form-field-error-message-padding-block-start);
|
|
2764
|
+
padding-inline-end: var(--utrecht-form-field-error-message-padding-inline-end);
|
|
2765
|
+
padding-inline-start: var(--utrecht-form-field-error-message-padding-inline-start);
|
|
2766
2766
|
}
|
|
2767
2767
|
.utrecht-form-field-error-message > * {
|
|
2768
2768
|
--utrecht-space-around: 1;
|
|
@@ -2897,6 +2897,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
2897
2897
|
|
|
2898
2898
|
.utrecht-form-fieldset--html-fieldset,
|
|
2899
2899
|
.utrecht-form-fieldset__fieldset--html-fieldset {
|
|
2900
|
+
/* `all: revert` unfortunately has as side-effect that the `hidde` attribute has no effect */
|
|
2900
2901
|
all: revert;
|
|
2901
2902
|
border: 0;
|
|
2902
2903
|
margin-inline-end: 0;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.593",
|
|
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": "9a4b71bb0249a70412ffd23b78a8234a9e6d66a7"
|
|
30
30
|
}
|