@utrecht/component-library-css 1.0.0-alpha.192 → 1.0.0-alpha.195
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/bem.css +5 -0
- package/dist/html.css +10 -0
- package/dist/index.css +19 -4
- package/dist/root-theme.css +4 -4
- package/package.json +4 -4
package/dist/bem.css
CHANGED
|
@@ -328,6 +328,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
328
328
|
/* stylelint-disable-next-line block-no-empty */
|
|
329
329
|
.utrecht-button {
|
|
330
330
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
331
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
331
332
|
border-radius: var(--utrecht-button-border-radius);
|
|
332
333
|
border-style: solid;
|
|
333
334
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -366,6 +367,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
366
367
|
.utrecht-button:disabled,
|
|
367
368
|
.utrecht-button--disabled {
|
|
368
369
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
370
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
369
371
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
370
372
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
371
373
|
}
|
|
@@ -373,6 +375,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
373
375
|
.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
374
376
|
.utrecht-button--active {
|
|
375
377
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
378
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
376
379
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
377
380
|
}
|
|
378
381
|
|
|
@@ -387,6 +390,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
387
390
|
|
|
388
391
|
.utrecht-button--focus, .utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
389
392
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
393
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
390
394
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
391
395
|
}
|
|
392
396
|
|
|
@@ -401,6 +405,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
401
405
|
.utrecht-button--hover:not(:disabled),
|
|
402
406
|
.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
403
407
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
408
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
404
409
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
405
410
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
406
411
|
}
|
package/dist/html.css
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
.utrecht-html input[type=submit i],
|
|
79
79
|
.utrecht-html button {
|
|
80
80
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
81
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
81
82
|
border-radius: var(--utrecht-button-border-radius);
|
|
82
83
|
border-style: solid;
|
|
83
84
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -126,6 +127,7 @@
|
|
|
126
127
|
.utrecht-button--disabled,
|
|
127
128
|
.utrecht-html button[aria-disabled=true] {
|
|
128
129
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
130
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
129
131
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
130
132
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
131
133
|
}
|
|
@@ -136,6 +138,7 @@
|
|
|
136
138
|
.utrecht-button--active,
|
|
137
139
|
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
138
140
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
141
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
139
142
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
140
143
|
}
|
|
141
144
|
|
|
@@ -156,6 +159,7 @@
|
|
|
156
159
|
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
157
160
|
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
158
161
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
162
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
159
163
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
160
164
|
}
|
|
161
165
|
|
|
@@ -176,6 +180,7 @@
|
|
|
176
180
|
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
177
181
|
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
178
182
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
183
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
179
184
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
180
185
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
181
186
|
}
|
|
@@ -590,6 +595,7 @@
|
|
|
590
595
|
.utrecht-html input[type=submit i],
|
|
591
596
|
.utrecht-html button {
|
|
592
597
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
598
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
593
599
|
border-radius: var(--utrecht-button-border-radius);
|
|
594
600
|
border-style: solid;
|
|
595
601
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -638,6 +644,7 @@
|
|
|
638
644
|
.utrecht-button--disabled,
|
|
639
645
|
.utrecht-html button[aria-disabled=true] {
|
|
640
646
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
647
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
641
648
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
642
649
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
643
650
|
}
|
|
@@ -648,6 +655,7 @@
|
|
|
648
655
|
.utrecht-button--active,
|
|
649
656
|
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
650
657
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
658
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
651
659
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
652
660
|
}
|
|
653
661
|
|
|
@@ -668,6 +676,7 @@
|
|
|
668
676
|
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
669
677
|
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html button:focus:not([aria-disabled=true]):not(:disabled) {
|
|
670
678
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
679
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
671
680
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
672
681
|
}
|
|
673
682
|
|
|
@@ -688,6 +697,7 @@
|
|
|
688
697
|
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
689
698
|
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
690
699
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
700
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
691
701
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
692
702
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
693
703
|
}
|
package/dist/index.css
CHANGED
|
@@ -340,6 +340,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
340
340
|
.utrecht-html input[type=submit i],
|
|
341
341
|
.utrecht-html button {
|
|
342
342
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
343
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
343
344
|
border-radius: var(--utrecht-button-border-radius);
|
|
344
345
|
border-style: solid;
|
|
345
346
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -388,6 +389,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
388
389
|
.utrecht-button--disabled,
|
|
389
390
|
.utrecht-html button[aria-disabled=true] {
|
|
390
391
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
392
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
391
393
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
392
394
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
393
395
|
}
|
|
@@ -398,6 +400,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
398
400
|
.utrecht-button--active,
|
|
399
401
|
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
400
402
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
403
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
401
404
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
402
405
|
}
|
|
403
406
|
|
|
@@ -418,6 +421,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
418
421
|
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
419
422
|
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
420
423
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
424
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
421
425
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
422
426
|
}
|
|
423
427
|
|
|
@@ -438,6 +442,7 @@ ol.utrecht-breadcrumb__list {
|
|
|
438
442
|
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
439
443
|
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
440
444
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
445
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
441
446
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
442
447
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
443
448
|
}
|
|
@@ -2845,6 +2850,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2845
2850
|
.utrecht-html input[type=submit i],
|
|
2846
2851
|
.utrecht-html button {
|
|
2847
2852
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
2853
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
2848
2854
|
border-radius: var(--utrecht-button-border-radius);
|
|
2849
2855
|
border-style: solid;
|
|
2850
2856
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -2893,6 +2899,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2893
2899
|
.utrecht-button--disabled,
|
|
2894
2900
|
.utrecht-html button[aria-disabled=true] {
|
|
2895
2901
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
2902
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
2896
2903
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
2897
2904
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
2898
2905
|
}
|
|
@@ -2903,6 +2910,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2903
2910
|
.utrecht-button--active,
|
|
2904
2911
|
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
2905
2912
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
2913
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
2906
2914
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
2907
2915
|
}
|
|
2908
2916
|
|
|
@@ -2923,6 +2931,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2923
2931
|
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
2924
2932
|
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
2925
2933
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
2934
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
2926
2935
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
2927
2936
|
}
|
|
2928
2937
|
|
|
@@ -2943,6 +2952,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
2943
2952
|
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
2944
2953
|
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
2945
2954
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
2955
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
2946
2956
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
2947
2957
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
2948
2958
|
}
|
|
@@ -3357,6 +3367,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3357
3367
|
.utrecht-html input[type=submit i],
|
|
3358
3368
|
.utrecht-html button {
|
|
3359
3369
|
background-color: var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));
|
|
3370
|
+
border-color: var(--utrecht-button-border-color, transparent);
|
|
3360
3371
|
border-radius: var(--utrecht-button-border-radius);
|
|
3361
3372
|
border-style: solid;
|
|
3362
3373
|
border-width: var(--utrecht-button-border-width, 0);
|
|
@@ -3405,6 +3416,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3405
3416
|
.utrecht-button--disabled,
|
|
3406
3417
|
.utrecht-html button[aria-disabled=true] {
|
|
3407
3418
|
background-color: var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));
|
|
3419
|
+
border-color: var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));
|
|
3408
3420
|
color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));
|
|
3409
3421
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
3410
3422
|
}
|
|
@@ -3415,6 +3427,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3415
3427
|
.utrecht-button--active,
|
|
3416
3428
|
.utrecht-html button:active:not([aria-disabled=true]):not(:disabled) {
|
|
3417
3429
|
background-color: var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));
|
|
3430
|
+
border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));
|
|
3418
3431
|
color: var(--utrecht-button-active-color, var(--utrecht-button-color));
|
|
3419
3432
|
}
|
|
3420
3433
|
|
|
@@ -3435,6 +3448,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3435
3448
|
.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
3436
3449
|
.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled), .utrecht-html button:focus:not([aria-disabled=true]):not(:disabled) {
|
|
3437
3450
|
background-color: var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));
|
|
3451
|
+
border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));
|
|
3438
3452
|
color: var(--utrecht-button-focus-color, var(--utrecht-button-color));
|
|
3439
3453
|
}
|
|
3440
3454
|
|
|
@@ -3455,6 +3469,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3455
3469
|
.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),
|
|
3456
3470
|
.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled) {
|
|
3457
3471
|
background-color: var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));
|
|
3472
|
+
border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));
|
|
3458
3473
|
color: var(--utrecht-button-hover-color, var(--utrecht-button-color));
|
|
3459
3474
|
transform: scale(var(--utrecht-button-focus-transform-scale, 1));
|
|
3460
3475
|
}
|
|
@@ -5264,7 +5279,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5264
5279
|
/* Collection of CSS variables for Utrecht theme applied to `:root` */
|
|
5265
5280
|
/**
|
|
5266
5281
|
* Do not edit directly
|
|
5267
|
-
* Generated on
|
|
5282
|
+
* Generated on Fri, 22 Apr 2022 16:15:23 GMT
|
|
5268
5283
|
*/
|
|
5269
5284
|
:root {
|
|
5270
5285
|
--utrecht-toptask-nav-link-grid-max-inline-size: 240px;
|
|
@@ -5607,11 +5622,11 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5607
5622
|
--utrecht-action-submit-cursor: pointer;
|
|
5608
5623
|
--utrecht-action-disabled-cursor: not-allowed;
|
|
5609
5624
|
--utrecht-action-busy-cursor: wait;
|
|
5610
|
-
--utrecht-button-border-radius: 0;
|
|
5611
5625
|
--utrecht-button-focus-transform-scale: 1.02;
|
|
5612
5626
|
--utrecht-button-margin-inline-end: 0;
|
|
5613
5627
|
--utrecht-button-margin-inline-start: 0;
|
|
5614
5628
|
--utrecht-button-border-width: 0;
|
|
5629
|
+
--utrecht-button-border-radius: 0;
|
|
5615
5630
|
--utrecht-breadcrumb-divider-inline-size: 1px;
|
|
5616
5631
|
--utrecht-breadcrumb-block-size: 34px;
|
|
5617
5632
|
--utrecht-blockquote-content-font-size: 1.125rem;
|
|
@@ -5829,15 +5844,14 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5829
5844
|
--utrecht-button-secondary-action-border-color: var(--utrecht-color-blue-35);
|
|
5830
5845
|
--utrecht-button-secondary-action-color: var(--utrecht-color-blue-35);
|
|
5831
5846
|
--utrecht-button-secondary-action-background-color: var(--utrecht-color-white);
|
|
5832
|
-
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
5833
5847
|
--utrecht-button-primary-action-hover-color: var(--utrecht-color-white);
|
|
5834
5848
|
--utrecht-button-primary-action-hover-background-color: var(--utrecht-color-blue-40);
|
|
5835
5849
|
--utrecht-button-primary-action-color: var(--utrecht-color-white);
|
|
5836
5850
|
--utrecht-button-primary-action-background-color: var(--utrecht-color-blue-35);
|
|
5837
5851
|
--utrecht-button-focus-border-width: var(--utrecht-border-width-md);
|
|
5838
5852
|
--utrecht-button-focus-border-color: var(--utrecht-color-blue-40);
|
|
5839
|
-
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
5840
5853
|
--utrecht-button-disabled-color: var(--utrecht-color-white);
|
|
5854
|
+
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
5841
5855
|
--utrecht-button-padding-inline-end: var(--utrecht-space-inline-md);
|
|
5842
5856
|
--utrecht-button-padding-inline-start: var(--utrecht-space-inline-md);
|
|
5843
5857
|
--utrecht-button-padding-block-end: var(--utrecht-space-block-sm);
|
|
@@ -5845,6 +5859,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5845
5859
|
--utrecht-button-margin-block-end: var(--utrecht-space-row-xs);
|
|
5846
5860
|
--utrecht-button-margin-block-start: var(--utrecht-space-row-xs);
|
|
5847
5861
|
--utrecht-button-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
5862
|
+
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
5848
5863
|
--utrecht-button-color: var(--utrecht-color-white);
|
|
5849
5864
|
--utrecht-button-background-color: var(--utrecht-color-blue-35);
|
|
5850
5865
|
--utrecht-breadcrumb-link-focus-color: var(--utrecht-color-black);
|
package/dist/root-theme.css
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/* Collection of CSS variables for Utrecht theme applied to `:root` */
|
|
6
6
|
/**
|
|
7
7
|
* Do not edit directly
|
|
8
|
-
* Generated on
|
|
8
|
+
* Generated on Fri, 22 Apr 2022 16:15:23 GMT
|
|
9
9
|
*/
|
|
10
10
|
:root {
|
|
11
11
|
--utrecht-toptask-nav-link-grid-max-inline-size: 240px;
|
|
@@ -348,11 +348,11 @@
|
|
|
348
348
|
--utrecht-action-submit-cursor: pointer;
|
|
349
349
|
--utrecht-action-disabled-cursor: not-allowed;
|
|
350
350
|
--utrecht-action-busy-cursor: wait;
|
|
351
|
-
--utrecht-button-border-radius: 0;
|
|
352
351
|
--utrecht-button-focus-transform-scale: 1.02;
|
|
353
352
|
--utrecht-button-margin-inline-end: 0;
|
|
354
353
|
--utrecht-button-margin-inline-start: 0;
|
|
355
354
|
--utrecht-button-border-width: 0;
|
|
355
|
+
--utrecht-button-border-radius: 0;
|
|
356
356
|
--utrecht-breadcrumb-divider-inline-size: 1px;
|
|
357
357
|
--utrecht-breadcrumb-block-size: 34px;
|
|
358
358
|
--utrecht-blockquote-content-font-size: 1.125rem;
|
|
@@ -570,15 +570,14 @@
|
|
|
570
570
|
--utrecht-button-secondary-action-border-color: var(--utrecht-color-blue-35);
|
|
571
571
|
--utrecht-button-secondary-action-color: var(--utrecht-color-blue-35);
|
|
572
572
|
--utrecht-button-secondary-action-background-color: var(--utrecht-color-white);
|
|
573
|
-
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
574
573
|
--utrecht-button-primary-action-hover-color: var(--utrecht-color-white);
|
|
575
574
|
--utrecht-button-primary-action-hover-background-color: var(--utrecht-color-blue-40);
|
|
576
575
|
--utrecht-button-primary-action-color: var(--utrecht-color-white);
|
|
577
576
|
--utrecht-button-primary-action-background-color: var(--utrecht-color-blue-35);
|
|
578
577
|
--utrecht-button-focus-border-width: var(--utrecht-border-width-md);
|
|
579
578
|
--utrecht-button-focus-border-color: var(--utrecht-color-blue-40);
|
|
580
|
-
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
581
579
|
--utrecht-button-disabled-color: var(--utrecht-color-white);
|
|
580
|
+
--utrecht-button-disabled-background-color: var(--utrecht-color-grey-90);
|
|
582
581
|
--utrecht-button-padding-inline-end: var(--utrecht-space-inline-md);
|
|
583
582
|
--utrecht-button-padding-inline-start: var(--utrecht-space-inline-md);
|
|
584
583
|
--utrecht-button-padding-block-end: var(--utrecht-space-block-sm);
|
|
@@ -586,6 +585,7 @@
|
|
|
586
585
|
--utrecht-button-margin-block-end: var(--utrecht-space-row-xs);
|
|
587
586
|
--utrecht-button-margin-block-start: var(--utrecht-space-row-xs);
|
|
588
587
|
--utrecht-button-font-size: var(--utrecht-typography-scale-md-font-size);
|
|
588
|
+
--utrecht-button-font-family: var(--utrecht-typography-sans-serif-font-family);
|
|
589
589
|
--utrecht-button-color: var(--utrecht-color-white);
|
|
590
590
|
--utrecht-button-background-color: var(--utrecht-color-blue-35);
|
|
591
591
|
--utrecht-breadcrumb-link-focus-color: var(--utrecht-color-black);
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.195",
|
|
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",
|
|
@@ -16,15 +16,15 @@
|
|
|
16
16
|
"url": "git@github.com:nl-design-system/utrecht.git"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@utrecht/design-tokens": "1.0.0-alpha.
|
|
19
|
+
"@utrecht/design-tokens": "1.0.0-alpha.188",
|
|
20
20
|
"node-sass-package-importer": "5.3.2",
|
|
21
21
|
"rimraf": "3.0.2",
|
|
22
|
-
"sass": "1.50.
|
|
22
|
+
"sass": "1.50.1"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"prebuild": "npm run clean",
|
|
26
26
|
"build": "sass src/:dist/ --load-path=../../node_modules/ --no-source-map",
|
|
27
27
|
"clean": "rimraf dist/"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "7e7bbdee2da3d64d8b86d08ab00aa4d165ba4c5f"
|
|
30
30
|
}
|