@utrecht/component-library-css 1.0.0-alpha.464 → 1.0.0-alpha.466
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 +8 -4
- package/dist/index.css +55 -22
- package/package.json +2 -2
package/dist/html.css
CHANGED
|
@@ -390,6 +390,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
390
390
|
* Copyright (c) 2021 Robbert Broersma
|
|
391
391
|
*/
|
|
392
392
|
/* stylelint-disable-next-line block-no-empty */
|
|
393
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
393
394
|
/* stylelint-disable selector-class-pattern */
|
|
394
395
|
/**
|
|
395
396
|
* @license EUPL-1.2
|
|
@@ -1237,15 +1238,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1237
1238
|
text-align: var(--utrecht-table-caption-text-align, center);
|
|
1238
1239
|
}
|
|
1239
1240
|
.utrecht-html thead {
|
|
1241
|
+
--_utrecht-table-header-cell-vertical-align: bottom;
|
|
1240
1242
|
background-color: var(--utrecht-table-header-background-color);
|
|
1241
1243
|
color: var(--utrecht-table-header-color);
|
|
1242
1244
|
font-weight: var(--utrecht-table-header-font-weight);
|
|
1243
1245
|
page-break-inside: avoid;
|
|
1244
1246
|
text-transform: var(--utrecht-table-header-text-transform);
|
|
1245
|
-
vertical-align: bottom;
|
|
1246
|
-
}
|
|
1247
|
-
.utrecht-html tbody {
|
|
1248
|
-
vertical-align: baseline;
|
|
1249
1247
|
}
|
|
1250
1248
|
.utrecht-html th {
|
|
1251
1249
|
color: var(--utrecht-table-header-cell-color);
|
|
@@ -1253,6 +1251,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1253
1251
|
font-weight: var(--utrecht-table-header-cell-font-weight);
|
|
1254
1252
|
text-align: start;
|
|
1255
1253
|
text-transform: var(--utrecht-table-header-cell-text-transform);
|
|
1254
|
+
vertical-align: var(--_utrecht-table-header-cell-vertical-align, top);
|
|
1256
1255
|
}
|
|
1257
1256
|
.utrecht-html th,
|
|
1258
1257
|
.utrecht-html td {
|
|
@@ -1265,6 +1264,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1265
1264
|
padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
|
|
1266
1265
|
padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
|
|
1267
1266
|
text-align: start;
|
|
1267
|
+
vertical-align: top;
|
|
1268
1268
|
}
|
|
1269
1269
|
.utrecht-html td:first-child,
|
|
1270
1270
|
.utrecht-html th:first-child {
|
|
@@ -1360,8 +1360,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1360
1360
|
background-color: var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-control-background-color))));
|
|
1361
1361
|
border-color: var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-control-border-color))));
|
|
1362
1362
|
border-width: var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-control-border-width))));
|
|
1363
|
+
color: var(--utrecht-textarea-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
1363
1364
|
}
|
|
1364
1365
|
.utrecht-html textarea:read-only {
|
|
1366
|
+
background-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textarea-border, var(--utrecht-form-control-background-color))));
|
|
1365
1367
|
border-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-control-border-color))));
|
|
1366
1368
|
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
1367
1369
|
}
|
|
@@ -1494,6 +1496,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1494
1496
|
background-color: var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
1495
1497
|
border-color: var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
1496
1498
|
border-width: var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-control-border-width))));
|
|
1499
|
+
color: var(--utrecht-textbox-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
1497
1500
|
}
|
|
1498
1501
|
.utrecht-html input:not([type]):read-only,
|
|
1499
1502
|
.utrecht-html input[type=date i]:read-only,
|
|
@@ -1508,6 +1511,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
1508
1511
|
.utrecht-html input[type=time i]:read-only,
|
|
1509
1512
|
.utrecht-html input[type=url i]:read-only,
|
|
1510
1513
|
.utrecht-html input[type=week i]:read-only {
|
|
1514
|
+
background-color: var(--utrecht-textbox-read-only-background-color, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
1511
1515
|
border-color: var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
1512
1516
|
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
1513
1517
|
}
|
package/dist/index.css
CHANGED
|
@@ -307,6 +307,11 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
307
307
|
max-inline-size: var(--utrecht-article-max-inline-size);
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
+
/**
|
|
311
|
+
* @license EUPL-1.2
|
|
312
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
313
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
314
|
+
*/
|
|
310
315
|
/**
|
|
311
316
|
* @license EUPL-1.2
|
|
312
317
|
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
@@ -337,7 +342,13 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
337
342
|
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
338
343
|
* Copyright (c) 2020-2022 Frameless B.V.
|
|
339
344
|
*/
|
|
345
|
+
/**
|
|
346
|
+
* @license EUPL-1.2
|
|
347
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
348
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
349
|
+
*/
|
|
340
350
|
.utrecht-badge-data {
|
|
351
|
+
/* `line-height` has a default value, so `line-height` can be used on a parent element to add vertical space between badges */
|
|
341
352
|
background-color: var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));
|
|
342
353
|
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
343
354
|
color: var(--utrecht-badge-color, hsl(0deg, 0%, 100%));
|
|
@@ -346,7 +357,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
346
357
|
font-size: var(--utrecht-badge-font-size, inherit);
|
|
347
358
|
font-style: var(--utrecht-badge-font-style, normal); /* no inheritance */
|
|
348
359
|
font-weight: var(--utrecht-badge-font-weight, bold); /* no inheritance */
|
|
349
|
-
line-height: var(--utrecht-badge-line-height);
|
|
360
|
+
line-height: var(--utrecht-badge-line-height, 1em);
|
|
350
361
|
padding-block-end: var(--utrecht-badge-padding-block, 0.5ex);
|
|
351
362
|
padding-block-start: var(--utrecht-badge-padding-block, 0.5ex);
|
|
352
363
|
padding-inline-end: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
@@ -356,6 +367,22 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
356
367
|
text-transform: var(--utrecht-badge-data-text-transform, inherit);
|
|
357
368
|
}
|
|
358
369
|
|
|
370
|
+
/**
|
|
371
|
+
* @license EUPL-1.2
|
|
372
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
373
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
374
|
+
*/
|
|
375
|
+
/**
|
|
376
|
+
* @license EUPL-1.2
|
|
377
|
+
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
378
|
+
* Copyright (c) 2020-2022 Frameless B.V.
|
|
379
|
+
*/
|
|
380
|
+
.utrecht-badge-list {
|
|
381
|
+
display: flex;
|
|
382
|
+
flex-wrap: wrap;
|
|
383
|
+
gap: var(--utrecht-badge-list-item-margin-block) var(--utrecht-badge-list-item-margin-inline);
|
|
384
|
+
}
|
|
385
|
+
|
|
359
386
|
/**
|
|
360
387
|
* @license EUPL-1.2
|
|
361
388
|
* Copyright (c) 2020-2022 Gemeente Utrecht
|
|
@@ -367,6 +394,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
367
394
|
* Copyright (c) 2020-2022 Frameless B.V.
|
|
368
395
|
*/
|
|
369
396
|
.utrecht-badge-status {
|
|
397
|
+
/* `line-height` has a default value, so `line-height` can be used on a parent element to add vertical space between badges */
|
|
370
398
|
background-color: var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));
|
|
371
399
|
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
372
400
|
color: var(--utrecht-badge-color, hsl(0deg, 0%, 100%));
|
|
@@ -375,7 +403,7 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
375
403
|
font-size: var(--utrecht-badge-font-size, inherit);
|
|
376
404
|
font-style: var(--utrecht-badge-font-style, normal); /* no inheritance */
|
|
377
405
|
font-weight: var(--utrecht-badge-font-weight, bold); /* no inheritance */
|
|
378
|
-
line-height: var(--utrecht-badge-line-height);
|
|
406
|
+
line-height: var(--utrecht-badge-line-height, 1em);
|
|
379
407
|
padding-block-end: var(--utrecht-badge-padding-block, 0.5ex);
|
|
380
408
|
padding-block-start: var(--utrecht-badge-padding-block, 0.5ex);
|
|
381
409
|
padding-inline-end: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
@@ -1788,18 +1816,18 @@ ol.utrecht-breadcrumb__list {
|
|
|
1788
1816
|
cursor: var(--utrecht-action-disabled-cursor);
|
|
1789
1817
|
}
|
|
1790
1818
|
|
|
1791
|
-
.utrecht-button-link--html-a:active {
|
|
1819
|
+
.utrecht-button-link--html-a:link:active {
|
|
1792
1820
|
background-color: var(--_utrecht-button-active-background-color);
|
|
1793
1821
|
border-color: var(--_utrecht-button-active-border-color);
|
|
1794
1822
|
color: var(--_utrecht-button-active-color);
|
|
1795
1823
|
}
|
|
1796
|
-
.utrecht-button-link--html-a:focus {
|
|
1824
|
+
.utrecht-button-link--html-a:link:focus {
|
|
1797
1825
|
background-color: var(--_utrecht-button-focus-background-color);
|
|
1798
1826
|
border-color: var(--_utrecht-button-focus-border-color);
|
|
1799
1827
|
color: var(--_utrecht-button-focus-color);
|
|
1800
1828
|
scale: var(--utrecht-button-focus-scale, 1);
|
|
1801
1829
|
}
|
|
1802
|
-
.utrecht-button-link--html-a:focus-visible {
|
|
1830
|
+
.utrecht-button-link--html-a:link:focus-visible {
|
|
1803
1831
|
/* the pseudo-class for `:focus-visible` is implemented via the mixin */
|
|
1804
1832
|
/* - The browser default focus ring should apply when these CSS custom properties are not set.
|
|
1805
1833
|
* - Make the `box-shadow` value available, so components that have their own `box-shadow`
|
|
@@ -3097,7 +3125,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3097
3125
|
user-select: none;
|
|
3098
3126
|
}
|
|
3099
3127
|
|
|
3100
|
-
.utrecht-link-button--hover, .utrecht-link-button--html-button:hover {
|
|
3128
|
+
.utrecht-link-button--hover, .utrecht-link-button--html-button:not(:disabled):hover {
|
|
3101
3129
|
color: var(--utrecht-link-hover-color, var(--utrecht-link-color));
|
|
3102
3130
|
text-decoration: var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
3103
3131
|
text-decoration-skip: none;
|
|
@@ -3105,7 +3133,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3105
3133
|
text-decoration-thickness: max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px);
|
|
3106
3134
|
}
|
|
3107
3135
|
|
|
3108
|
-
.utrecht-link-button--active, .utrecht-link-button--html-button:active {
|
|
3136
|
+
.utrecht-link-button--active, .utrecht-link-button--html-button:not(:disabled):active {
|
|
3109
3137
|
color: var(--utrecht-link-active-color, var(--utrecht-link-color));
|
|
3110
3138
|
}
|
|
3111
3139
|
|
|
@@ -3115,7 +3143,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3115
3143
|
text-decoration: none;
|
|
3116
3144
|
}
|
|
3117
3145
|
|
|
3118
|
-
.utrecht-link-button--focus, .utrecht-link-button--html-button:focus {
|
|
3146
|
+
.utrecht-link-button--focus, .utrecht-link-button--html-button:not(:disabled):focus {
|
|
3119
3147
|
background-color: var(--utrecht-link-focus-background-color, transparent);
|
|
3120
3148
|
color: var(--utrecht-link-focus-color, var(--utrecht-link-color));
|
|
3121
3149
|
text-decoration: var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));
|
|
@@ -3439,21 +3467,15 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
3439
3467
|
* Copyright (c) 2021 Robbert Broersma
|
|
3440
3468
|
*/
|
|
3441
3469
|
.utrecht-logo-button {
|
|
3470
|
+
--utrecht-icon-size: var(--utrecht-logo-button-icon, 50px);
|
|
3442
3471
|
--utrecht-button-min-block-size: var(--utrecht-logo-button-block-size, 50px);
|
|
3443
3472
|
--utrecht-logo-max-block-size: var(--utrecht-logo-button-block-size, 50px);
|
|
3444
3473
|
--utrecht-logo-max-inline-size: var(--utrecht-logo-button-block-size, 50px);
|
|
3474
|
+
align-items: flex-start;
|
|
3445
3475
|
display: inline-flex;
|
|
3446
3476
|
gap: var(--utrecht-space-inline-sm);
|
|
3447
3477
|
}
|
|
3448
3478
|
|
|
3449
|
-
.utrecht-logo-button__logo {
|
|
3450
|
-
order: 1;
|
|
3451
|
-
}
|
|
3452
|
-
|
|
3453
|
-
.utrecht-logo-button__button {
|
|
3454
|
-
order: 2;
|
|
3455
|
-
}
|
|
3456
|
-
|
|
3457
3479
|
/**
|
|
3458
3480
|
* @license EUPL-1.2
|
|
3459
3481
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
@@ -4261,6 +4283,11 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4261
4283
|
--utrecht-space-around: 1;
|
|
4262
4284
|
}
|
|
4263
4285
|
|
|
4286
|
+
/**
|
|
4287
|
+
* @license EUPL-1.2
|
|
4288
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
4289
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
4290
|
+
*/
|
|
4264
4291
|
/**
|
|
4265
4292
|
* @license EUPL-1.2
|
|
4266
4293
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
@@ -4767,6 +4794,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4767
4794
|
* Copyright (c) 2021 Robbert Broersma
|
|
4768
4795
|
*/
|
|
4769
4796
|
/* stylelint-disable-next-line block-no-empty */
|
|
4797
|
+
/* stylelint-disable-next-line block-no-empty */
|
|
4770
4798
|
.utrecht-table {
|
|
4771
4799
|
border-collapse: collapse;
|
|
4772
4800
|
border-color: var(--utrecht-table-border-color, 0);
|
|
@@ -4798,12 +4826,12 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4798
4826
|
|
|
4799
4827
|
.utrecht-table--html-table > thead,
|
|
4800
4828
|
.utrecht-table__header {
|
|
4829
|
+
--_utrecht-table-header-cell-vertical-align: bottom;
|
|
4801
4830
|
background-color: var(--utrecht-table-header-background-color);
|
|
4802
4831
|
color: var(--utrecht-table-header-color);
|
|
4803
4832
|
font-weight: var(--utrecht-table-header-font-weight);
|
|
4804
4833
|
page-break-inside: avoid;
|
|
4805
4834
|
text-transform: var(--utrecht-table-header-text-transform);
|
|
4806
|
-
vertical-align: bottom;
|
|
4807
4835
|
}
|
|
4808
4836
|
|
|
4809
4837
|
.utrecht-table--html-table > thead > tr:last-of-type,
|
|
@@ -4813,11 +4841,6 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4813
4841
|
border-block-end-width: var(--utrecht-table-header-border-block-end-width, 0);
|
|
4814
4842
|
}
|
|
4815
4843
|
|
|
4816
|
-
.utrecht-table--html-table > tbody,
|
|
4817
|
-
.utrecht-table__body {
|
|
4818
|
-
vertical-align: baseline;
|
|
4819
|
-
}
|
|
4820
|
-
|
|
4821
4844
|
/* `.utrecht-table--html-table` should not affect nested tables.
|
|
4822
4845
|
* We will use the `>` direct descendant selector so the styling doesn't affect nested tables. */
|
|
4823
4846
|
/* stylelint-disable no-descending-specificity */
|
|
@@ -4839,6 +4862,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4839
4862
|
font-weight: var(--utrecht-table-header-cell-font-weight);
|
|
4840
4863
|
text-align: start;
|
|
4841
4864
|
text-transform: var(--utrecht-table-header-cell-text-transform);
|
|
4865
|
+
vertical-align: var(--_utrecht-table-header-cell-vertical-align, top);
|
|
4842
4866
|
}
|
|
4843
4867
|
|
|
4844
4868
|
.utrecht-table--html-table > tr > td,
|
|
@@ -4855,6 +4879,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4855
4879
|
padding-inline-end: var(--utrecht-table-cell-padding-inline-end, 0);
|
|
4856
4880
|
padding-inline-start: var(--utrecht-table-cell-padding-inline-start, 0);
|
|
4857
4881
|
text-align: start;
|
|
4882
|
+
vertical-align: top;
|
|
4858
4883
|
}
|
|
4859
4884
|
|
|
4860
4885
|
.utrecht-table--html-table > tr > td:first-child,
|
|
@@ -4942,6 +4967,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4942
4967
|
background-color: var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-control-background-color))));
|
|
4943
4968
|
border-color: var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-control-border-color))));
|
|
4944
4969
|
border-width: var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-control-border-width))));
|
|
4970
|
+
color: var(--utrecht-textarea-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
4945
4971
|
}
|
|
4946
4972
|
|
|
4947
4973
|
.utrecht-textarea--disabled {
|
|
@@ -4972,6 +4998,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4972
4998
|
}
|
|
4973
4999
|
|
|
4974
5000
|
.utrecht-textarea--read-only {
|
|
5001
|
+
background-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textarea-border, var(--utrecht-form-control-background-color))));
|
|
4975
5002
|
border-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-control-border-color))));
|
|
4976
5003
|
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
4977
5004
|
}
|
|
@@ -5013,8 +5040,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5013
5040
|
background-color: var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-control-background-color))));
|
|
5014
5041
|
border-color: var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-control-border-color))));
|
|
5015
5042
|
border-width: var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-control-border-width))));
|
|
5043
|
+
color: var(--utrecht-textarea-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
5016
5044
|
}
|
|
5017
5045
|
.utrecht-textarea--html-textarea:read-only {
|
|
5046
|
+
background-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textarea-border, var(--utrecht-form-control-background-color))));
|
|
5018
5047
|
border-color: var(--utrecht-textarea-read-only-border, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-control-border-color))));
|
|
5019
5048
|
color: var(--utrecht-textarea-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-control-color))));
|
|
5020
5049
|
}
|
|
@@ -5070,6 +5099,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5070
5099
|
background-color: var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
5071
5100
|
border-color: var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
5072
5101
|
border-width: var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-control-border-width))));
|
|
5102
|
+
color: var(--utrecht-textbox-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
5073
5103
|
}
|
|
5074
5104
|
|
|
5075
5105
|
.utrecht-textbox--disabled {
|
|
@@ -5100,6 +5130,7 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5100
5130
|
}
|
|
5101
5131
|
|
|
5102
5132
|
.utrecht-textbox--read-only {
|
|
5133
|
+
background-color: var(--utrecht-textbox-read-only-background-color, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
5103
5134
|
border-color: var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
5104
5135
|
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
5105
5136
|
}
|
|
@@ -5155,8 +5186,10 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
5155
5186
|
background-color: var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-control-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
5156
5187
|
border-color: var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-control-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
5157
5188
|
border-width: var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-control-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-control-border-width))));
|
|
5189
|
+
color: var(--utrecht-textbox-invalid-color, var(--utrecht-form-control-invalid-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
5158
5190
|
}
|
|
5159
5191
|
.utrecht-textbox--html-input:read-only {
|
|
5192
|
+
background-color: var(--utrecht-textbox-read-only-background-color, var(--utrecht-form-control-read-only-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-control-background-color))));
|
|
5160
5193
|
border-color: var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-control-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-control-border-color))));
|
|
5161
5194
|
color: var(--utrecht-textbox-read-only-color, var(--utrecht-form-control-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-control-color))));
|
|
5162
5195
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.466",
|
|
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": "3ba7e6fe6858344645b7ffac37eb32b083575765"
|
|
30
30
|
}
|