@utrecht/component-library-css 8.2.1 → 9.0.1
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 +3 -0
- package/dist/index.css +256 -45
- package/dist/prince-xml.css +258 -44
- package/package.json +10 -10
package/dist/html.css
CHANGED
|
@@ -1102,6 +1102,7 @@
|
|
|
1102
1102
|
border-style: solid;
|
|
1103
1103
|
box-sizing: border-box;
|
|
1104
1104
|
color: var(--utrecht-textbox-color, var(--utrecht-form-control-color));
|
|
1105
|
+
display: block;
|
|
1105
1106
|
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-control-font-family));
|
|
1106
1107
|
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-control-font-size, inherit));
|
|
1107
1108
|
font-weight: var(--utrecht-textbox-font-weight, var(--utrecht-form-control-font-weight, initial));
|
|
@@ -1110,10 +1111,12 @@
|
|
|
1110
1111
|
min-block-size: var(--utrecht-pointer-target-min-size, 44px);
|
|
1111
1112
|
min-inline-size: var(--utrecht-pointer-target-min-size, 44px);
|
|
1112
1113
|
max-inline-size: min(var(--_utrecht-textbox-max-inline-size, 100%), var(--utrecht-textbox-max-inline-size, var(--utrecht-form-control-max-inline-size)));
|
|
1114
|
+
overflow: hidden;
|
|
1113
1115
|
padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-control-padding-block-end, 0));
|
|
1114
1116
|
padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-control-padding-block-start, 0));
|
|
1115
1117
|
padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-control-padding-inline-end, initial));
|
|
1116
1118
|
padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-control-padding-inline-start, initial));
|
|
1119
|
+
white-space: nowrap;
|
|
1117
1120
|
}
|
|
1118
1121
|
.utrecht-html input:not([type]):focus,
|
|
1119
1122
|
.utrecht-html input[type=date i]:focus,
|
package/dist/index.css
CHANGED
|
@@ -386,7 +386,7 @@
|
|
|
386
386
|
flex-wrap: wrap;
|
|
387
387
|
row-gap: var(--utrecht-badge-list-row-gap);
|
|
388
388
|
}
|
|
389
|
-
.utrecht-badge
|
|
389
|
+
.utrecht-status-badge {
|
|
390
390
|
background-color: var(--utrecht-badge-background-color, hsl(0, 0%, 0%));
|
|
391
391
|
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
392
392
|
color: var(--utrecht-badge-color, hsl(0, 0%, 100%));
|
|
@@ -405,65 +405,88 @@
|
|
|
405
405
|
padding-inline-end: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
406
406
|
padding-inline-start: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
407
407
|
text-decoration: none;
|
|
408
|
-
|
|
409
|
-
|
|
408
|
+
--utrecht-badge-background-color: var(--utrecht-status-badge-background-color);
|
|
409
|
+
--utrecht-badge-border-radius: var(--utrecht-status-badge-border-radius);
|
|
410
|
+
--utrecht-badge-color: var(--utrecht-status-badge-color);
|
|
411
|
+
--utrecht-badge-font-size: var(--utrecht-status-badge-font-size, inherit);
|
|
412
|
+
--utrecht-badge-font-style: var(--utrecht-status-badge-font-style);
|
|
413
|
+
--utrecht-badge-font-weight: var(--utrecht-status-badge-font-weight);
|
|
414
|
+
--utrecht-badge-line-height: var(--utrecht-status-badge-line-height);
|
|
415
|
+
--utrecht-badge-padding-block: var(--utrecht-status-badge-padding-block);
|
|
416
|
+
--utrecht-badge-padding-inline: var(--utrecht-status-badge-padding-inline);
|
|
417
|
+
border-color: var(--utrecht-status-badge-border-color, transparent);
|
|
418
|
+
border-width: var(--utrecht-status-badge-border-width);
|
|
419
|
+
font-family: var(--utrecht-status-badge-font-family, inherit);
|
|
420
|
+
letter-spacing: var(--utrecht-status-badge-letter-spacing, inherit);
|
|
421
|
+
min-block-size: var(--utrecht-status-badge-min-block-size, 1em);
|
|
422
|
+
min-inline-size: var(--utrecht-status-badge-min-inline-size, 1em);
|
|
423
|
+
text-transform: var(--utrecht-status-badge-text-transform, inherit);
|
|
410
424
|
}
|
|
411
425
|
@media screen and (-ms-high-contrast: active), screen and (forced-colors: active) {
|
|
412
|
-
.utrecht-badge
|
|
426
|
+
.utrecht-status-badge {
|
|
413
427
|
border-color: currentColor;
|
|
414
428
|
border-style: solid;
|
|
415
429
|
border-width: 1px;
|
|
416
430
|
}
|
|
417
431
|
}
|
|
418
432
|
|
|
419
|
-
.utrecht-badge
|
|
420
|
-
background-color: var(--utrecht-
|
|
421
|
-
color: var(--utrecht-
|
|
433
|
+
.utrecht-status-badge--danger {
|
|
434
|
+
background-color: var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 40%));
|
|
435
|
+
border-color: var(--utrecht-status-badge-danger-border-color);
|
|
436
|
+
color: var(--utrecht-status-badge-danger-color, white);
|
|
422
437
|
}
|
|
423
438
|
|
|
424
|
-
.utrecht-badge
|
|
425
|
-
background-color: var(--utrecht-
|
|
426
|
-
color: var(--utrecht-
|
|
439
|
+
.utrecht-status-badge--warning {
|
|
440
|
+
background-color: var(--utrecht-status-badge-warning-background-color, hsl(48, 100%, 50%));
|
|
441
|
+
border-color: var(--utrecht-status-badge-warning-border-color);
|
|
442
|
+
color: var(--utrecht-status-badge-warning-color, white);
|
|
427
443
|
}
|
|
428
444
|
|
|
429
|
-
.utrecht-badge
|
|
430
|
-
background-color: var(--utrecht-
|
|
431
|
-
color: var(--utrecht-
|
|
445
|
+
.utrecht-status-badge--safe {
|
|
446
|
+
background-color: var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%));
|
|
447
|
+
border-color: var(--utrecht-status-badge-safe-border-color);
|
|
448
|
+
color: var(--utrecht-status-badge-safe-color, white);
|
|
432
449
|
}
|
|
433
450
|
|
|
434
|
-
.utrecht-badge
|
|
435
|
-
background-color: var(--utrecht-
|
|
436
|
-
color: var(--utrecht-
|
|
451
|
+
.utrecht-status-badge--neutral {
|
|
452
|
+
background-color: var(--utrecht-status-badge-neutral-background-color, black);
|
|
453
|
+
border-color: var(--utrecht-status-badge-neutral-border-color);
|
|
454
|
+
color: var(--utrecht-status-badge-neutral-color, white);
|
|
437
455
|
}
|
|
438
456
|
|
|
439
|
-
.utrecht-badge
|
|
440
|
-
background-color: var(--utrecht-
|
|
441
|
-
color: var(--utrecht-
|
|
457
|
+
.utrecht-status-badge--valid {
|
|
458
|
+
background-color: var(--utrecht-status-badge-valid-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
459
|
+
border-color: var(--utrecht-status-badge-valid-border-color);
|
|
460
|
+
color: var(--utrecht-status-badge-valid-color, var(--utrecht-status-badge-safe-color, white));
|
|
442
461
|
}
|
|
443
462
|
|
|
444
|
-
.utrecht-badge
|
|
445
|
-
background-color: var(--utrecht-
|
|
446
|
-
color: var(--utrecht-
|
|
463
|
+
.utrecht-status-badge--invalid {
|
|
464
|
+
background-color: var(--utrecht-status-badge-invalid-background-color, var(--utrecht-status-badge-danger-background-color, hsl(39, 100%, 50%)));
|
|
465
|
+
border-color: var(--utrecht-status-badge-invalid-border-color);
|
|
466
|
+
color: var(--utrecht-status-badge-invalid-color, var(--utrecht-status-badge-danger-color, white));
|
|
447
467
|
}
|
|
448
468
|
|
|
449
|
-
.utrecht-badge
|
|
450
|
-
background-color: var(--utrecht-
|
|
451
|
-
color: var(--utrecht-
|
|
469
|
+
.utrecht-status-badge--error {
|
|
470
|
+
background-color: var(--utrecht-status-badge-error-background-color, var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 30%)));
|
|
471
|
+
color: var(--utrecht-status-badge-error-color, var(--utrecht-status-badge-danger-color, white));
|
|
452
472
|
}
|
|
453
473
|
|
|
454
|
-
.utrecht-badge
|
|
455
|
-
background-color: var(--utrecht-
|
|
456
|
-
color: var(--utrecht-
|
|
474
|
+
.utrecht-status-badge--success {
|
|
475
|
+
background-color: var(--utrecht-status-badge-success-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
476
|
+
border-color: var(--utrecht-status-badge-success-border-color);
|
|
477
|
+
color: var(--utrecht-status-badge-success-color, var(--utrecht-status-badge-safe-color, white));
|
|
457
478
|
}
|
|
458
479
|
|
|
459
|
-
.utrecht-badge
|
|
460
|
-
background-color: var(--utrecht-
|
|
461
|
-
color: var(--utrecht-
|
|
480
|
+
.utrecht-status-badge--active {
|
|
481
|
+
background-color: var(--utrecht-status-badge-active-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
482
|
+
border-color: var(--utrecht-status-badge-active-border-color);
|
|
483
|
+
color: var(--utrecht-status-badge-active-color, var(--utrecht-status-badge-safe-color, white));
|
|
462
484
|
}
|
|
463
485
|
|
|
464
|
-
.utrecht-badge
|
|
465
|
-
background-color: var(--utrecht-
|
|
466
|
-
color: var(--utrecht-
|
|
486
|
+
.utrecht-status-badge--inactive {
|
|
487
|
+
background-color: var(--utrecht-status-badge-inactive-background-color, var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 40%)));
|
|
488
|
+
border-color: var(--utrecht-status-badge-inactive-border-color);
|
|
489
|
+
color: var(--utrecht-status-badge-inactive-color, var(--utrecht-status-badge-danger-color, white));
|
|
467
490
|
}
|
|
468
491
|
.utrecht-blockquote {
|
|
469
492
|
background-color: var(--utrecht-blockquote-background-color);
|
|
@@ -4064,10 +4087,6 @@
|
|
|
4064
4087
|
}
|
|
4065
4088
|
|
|
4066
4089
|
.utrecht-listbox__option--selected {
|
|
4067
|
-
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-selected-disabled-background-color);
|
|
4068
|
-
--_utrecht-listbox-option-disabled-color: var(--utrecht-listbox-option-selected-disabled-color);
|
|
4069
|
-
--_utrecht-listbox-option-interactive-background-color: var(--utrecht-listbox-option-selected-hover-background-color);
|
|
4070
|
-
--_utrecht-listbox-option-interactive-color: var(--utrecht-listbox-option-selected-hover-color);
|
|
4071
4090
|
--_utrecht-listbox-option-state-background-color: var(--utrecht-listbox-option-selected-background-color);
|
|
4072
4091
|
--_utrecht-listbox-option-state-color: var(--utrecht-listbox-option-selected-color);
|
|
4073
4092
|
}
|
|
@@ -4090,6 +4109,10 @@
|
|
|
4090
4109
|
--_utrecht-listbox-option-interactive-color: var(--utrecht-listbox-option-disabled-color);
|
|
4091
4110
|
cursor: var(--utrecht-action-disabled-cursor, not-allowed);
|
|
4092
4111
|
}
|
|
4112
|
+
.utrecht-listbox__option--disabled.utrecht-listbox__option--selected {
|
|
4113
|
+
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-selected-disabled-background-color);
|
|
4114
|
+
--_utrecht-listbox-option-disabled-color: var(--utrecht-listbox-option-selected-disabled-color);
|
|
4115
|
+
}
|
|
4093
4116
|
|
|
4094
4117
|
.utrecht-listbox--disabled {
|
|
4095
4118
|
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-disabled-background-color);
|
|
@@ -4245,6 +4268,10 @@
|
|
|
4245
4268
|
}
|
|
4246
4269
|
}
|
|
4247
4270
|
|
|
4271
|
+
.utrecht-nav-bar__heading {
|
|
4272
|
+
display: none;
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4248
4275
|
.utrecht-nav-bar__content {
|
|
4249
4276
|
align-items: stretch;
|
|
4250
4277
|
background-color: var(--utrecht-nav-bar-content-background-color);
|
|
@@ -4263,7 +4290,7 @@
|
|
|
4263
4290
|
margin-inline-end: 0;
|
|
4264
4291
|
margin-inline-start: 0;
|
|
4265
4292
|
padding-inline-start: 0;
|
|
4266
|
-
align-items:
|
|
4293
|
+
align-items: baseline;
|
|
4267
4294
|
display: flex;
|
|
4268
4295
|
flex-direction: row;
|
|
4269
4296
|
flex-wrap: wrap;
|
|
@@ -4271,6 +4298,16 @@
|
|
|
4271
4298
|
justify-content: start;
|
|
4272
4299
|
}
|
|
4273
4300
|
|
|
4301
|
+
.utrecht-nav-list--inline-size-auto {
|
|
4302
|
+
inline-size: auto;
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4305
|
+
.utrecht-nav-list__link[aria-current=page],
|
|
4306
|
+
.utrecht-nav-list__link[aria-current=true] {
|
|
4307
|
+
background-color: var(--utrecht-navigation-link-current-background-color, transparent);
|
|
4308
|
+
font-weight: var(--utrecht-navigation-link-current-font-weight);
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4274
4311
|
.utrecht-nav-list--center > * {
|
|
4275
4312
|
flex: 1 1 0;
|
|
4276
4313
|
justify-content: center;
|
|
@@ -4352,8 +4389,6 @@
|
|
|
4352
4389
|
}
|
|
4353
4390
|
|
|
4354
4391
|
.utrecht-navigation__link {
|
|
4355
|
-
--utrecht-link-focus-text-decoration: underline;
|
|
4356
|
-
--utrecht-link-focus-text-decoration-thickness: var(--utrecht-navigation-link-focus-text-decoration-thickness);
|
|
4357
4392
|
--utrecht-link-text-decoration: none;
|
|
4358
4393
|
--utrecht-link-active-color: var(--utrecht-navigation-link-active-color);
|
|
4359
4394
|
--utrecht-link-hover-text-decoration-thickness: var(--utrecht-navigation-link-hover-decoration-thickness);
|
|
@@ -4382,18 +4417,37 @@
|
|
|
4382
4417
|
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4383
4418
|
}
|
|
4384
4419
|
|
|
4385
|
-
.utrecht-navigation__link:focus {
|
|
4420
|
+
.utrecht-link.utrecht-link--html-a.utrecht-navigation__link:focus-visible {
|
|
4421
|
+
--utrecht-navigation-link-active-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4422
|
+
--utrecht-link-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4423
|
+
--utrecht-link-focus-background-color: var(--utrecht-navigation-link-focus-visible-background-color);
|
|
4424
|
+
--utrecht-navigation-link-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4425
|
+
--utrecht-navigation-link-focus-background-color: var(--utrecht-navigation-link-focus-visible-background-color);
|
|
4426
|
+
--utrecht-link-focus-visible-text-decoration-thickness: var(
|
|
4427
|
+
--utrecht-navigation-link-focus-visible-text-decoration-thickness
|
|
4428
|
+
);
|
|
4429
|
+
--utrecht-link-focus-visible-text-decoration: underline;
|
|
4430
|
+
--utrecht-navigation-marker-color: currentColor;
|
|
4431
|
+
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
.utrecht-link.utrecht-link--html-a.utrecht-navigation__link:focus {
|
|
4386
4435
|
--utrecht-link-focus-color: var(--utrecht-navigation-link-focus-color);
|
|
4387
|
-
--utrecht-link-focus-background-color: var(--utrecht-
|
|
4436
|
+
--utrecht-link-focus-background-color: var(--utrecht-navigation-link-focus-background-color);
|
|
4388
4437
|
--utrecht-navigation-marker-color: currentColor;
|
|
4389
4438
|
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4439
|
+
--utrecht-link-text-decoration-thickness: var(--utrecht-navigation-link-focus-text-decoration-thickness);
|
|
4440
|
+
--utrecht-link-text-decoration: underline;
|
|
4390
4441
|
}
|
|
4391
4442
|
|
|
4392
|
-
.utrecht-navigation__link:active
|
|
4393
|
-
--utrecht-link-
|
|
4443
|
+
.utrecht-navigation__link:active {
|
|
4444
|
+
--utrecht-link-active-color: var(--utrecht-navigation-link-active-focus-color);
|
|
4394
4445
|
}
|
|
4395
4446
|
|
|
4396
4447
|
.utrecht-navigation__link--mobile {
|
|
4448
|
+
--utrecht-navigation-link-focus-color: var(--utrecht-navigation-link-mobile-focus-color);
|
|
4449
|
+
--utrecht-navigation-link-focus-background-color: var(--utrecht-navigation-link-mobile-focus-background-color);
|
|
4450
|
+
--utrecht-link-active-color: var(--utrecht-navigation-link-mobile-active-color);
|
|
4397
4451
|
--_utrecht-navigation-link-align-items: center;
|
|
4398
4452
|
--_utrecht-navigation-link-justify-content: normal;
|
|
4399
4453
|
--utrecht-navigation-link-padding-inline-start: var(--utrecht-navigation-link-mobile-padding-inline-start);
|
|
@@ -4419,6 +4473,7 @@
|
|
|
4419
4473
|
}
|
|
4420
4474
|
|
|
4421
4475
|
.utrecht-navigation__link--is-current {
|
|
4476
|
+
--utrecht-navigation-link-mobile-hover-font-weight: var(--utrecht-navigation-link-is-current-font-weight);
|
|
4422
4477
|
--utrecht-navigation-link-font-weight: var(--utrecht-navigation-link-is-current-font-weight);
|
|
4423
4478
|
}
|
|
4424
4479
|
|
|
@@ -5252,6 +5307,9 @@
|
|
|
5252
5307
|
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-paragraph) {
|
|
5253
5308
|
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5254
5309
|
}
|
|
5310
|
+
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-spotlight-section) {
|
|
5311
|
+
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5312
|
+
}
|
|
5255
5313
|
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-separator) {
|
|
5256
5314
|
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5257
5315
|
}
|
|
@@ -5315,6 +5373,9 @@
|
|
|
5315
5373
|
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-paragraph) {
|
|
5316
5374
|
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5317
5375
|
}
|
|
5376
|
+
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-spotlight-section) {
|
|
5377
|
+
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5378
|
+
}
|
|
5318
5379
|
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-separator) {
|
|
5319
5380
|
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5320
5381
|
}
|
|
@@ -5381,6 +5442,9 @@
|
|
|
5381
5442
|
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-paragraph) {
|
|
5382
5443
|
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5383
5444
|
}
|
|
5445
|
+
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-spotlight-section) {
|
|
5446
|
+
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5447
|
+
}
|
|
5384
5448
|
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-separator) {
|
|
5385
5449
|
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5386
5450
|
}
|
|
@@ -5447,6 +5511,9 @@
|
|
|
5447
5511
|
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-paragraph) {
|
|
5448
5512
|
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5449
5513
|
}
|
|
5514
|
+
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-spotlight-section) {
|
|
5515
|
+
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5516
|
+
}
|
|
5450
5517
|
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-separator) {
|
|
5451
5518
|
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5452
5519
|
}
|
|
@@ -5513,6 +5580,9 @@
|
|
|
5513
5580
|
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-paragraph) {
|
|
5514
5581
|
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5515
5582
|
}
|
|
5583
|
+
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-spotlight-section) {
|
|
5584
|
+
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5585
|
+
}
|
|
5516
5586
|
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-separator) {
|
|
5517
5587
|
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5518
5588
|
}
|
|
@@ -5576,6 +5646,9 @@
|
|
|
5576
5646
|
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-paragraph) {
|
|
5577
5647
|
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5578
5648
|
}
|
|
5649
|
+
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-spotlight-section) {
|
|
5650
|
+
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5651
|
+
}
|
|
5579
5652
|
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-separator) {
|
|
5580
5653
|
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5581
5654
|
}
|
|
@@ -5651,6 +5724,9 @@
|
|
|
5651
5724
|
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-paragraph) {
|
|
5652
5725
|
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5653
5726
|
}
|
|
5727
|
+
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-spotlight-section) {
|
|
5728
|
+
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5729
|
+
}
|
|
5654
5730
|
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-separator) {
|
|
5655
5731
|
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5656
5732
|
}
|
|
@@ -5801,6 +5877,9 @@
|
|
|
5801
5877
|
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-paragraph) {
|
|
5802
5878
|
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5803
5879
|
}
|
|
5880
|
+
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-spotlight-section) {
|
|
5881
|
+
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5882
|
+
}
|
|
5804
5883
|
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-separator) {
|
|
5805
5884
|
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5806
5885
|
}
|
|
@@ -5873,6 +5952,9 @@
|
|
|
5873
5952
|
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-paragraph) {
|
|
5874
5953
|
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5875
5954
|
}
|
|
5955
|
+
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-spotlight-section) {
|
|
5956
|
+
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5957
|
+
}
|
|
5876
5958
|
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-separator) {
|
|
5877
5959
|
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5878
5960
|
}
|
|
@@ -5948,6 +6030,9 @@
|
|
|
5948
6030
|
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-paragraph) {
|
|
5949
6031
|
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5950
6032
|
}
|
|
6033
|
+
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-spotlight-section) {
|
|
6034
|
+
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6035
|
+
}
|
|
5951
6036
|
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-separator) {
|
|
5952
6037
|
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5953
6038
|
}
|
|
@@ -6020,6 +6105,9 @@
|
|
|
6020
6105
|
.utrecht-rich-text .utrecht-button:has(+ .utrecht-paragraph) {
|
|
6021
6106
|
--utrecht-button-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6022
6107
|
}
|
|
6108
|
+
.utrecht-rich-text .utrecht-button:has(+ .utrecht-spotlight-section) {
|
|
6109
|
+
--utrecht-button-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6110
|
+
}
|
|
6023
6111
|
.utrecht-rich-text .utrecht-button:has(+ .utrecht-separator) {
|
|
6024
6112
|
--utrecht-button-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6025
6113
|
}
|
|
@@ -6089,6 +6177,9 @@
|
|
|
6089
6177
|
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-paragraph) {
|
|
6090
6178
|
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6091
6179
|
}
|
|
6180
|
+
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-spotlight-section) {
|
|
6181
|
+
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6182
|
+
}
|
|
6092
6183
|
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-separator) {
|
|
6093
6184
|
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6094
6185
|
}
|
|
@@ -6158,6 +6249,9 @@
|
|
|
6158
6249
|
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-paragraph) {
|
|
6159
6250
|
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6160
6251
|
}
|
|
6252
|
+
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-spotlight-section) {
|
|
6253
|
+
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6254
|
+
}
|
|
6161
6255
|
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-separator) {
|
|
6162
6256
|
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6163
6257
|
}
|
|
@@ -6233,6 +6327,9 @@
|
|
|
6233
6327
|
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-paragraph) {
|
|
6234
6328
|
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6235
6329
|
}
|
|
6330
|
+
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-spotlight-section) {
|
|
6331
|
+
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6332
|
+
}
|
|
6236
6333
|
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-separator) {
|
|
6237
6334
|
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6238
6335
|
}
|
|
@@ -6371,6 +6468,9 @@
|
|
|
6371
6468
|
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-paragraph) {
|
|
6372
6469
|
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6373
6470
|
}
|
|
6471
|
+
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-spotlight-section) {
|
|
6472
|
+
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6473
|
+
}
|
|
6374
6474
|
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-separator) {
|
|
6375
6475
|
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6376
6476
|
}
|
|
@@ -6491,6 +6591,9 @@
|
|
|
6491
6591
|
.utrecht-rich-text .utrecht-img:has(+ .utrecht-paragraph) {
|
|
6492
6592
|
--utrecht-img-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6493
6593
|
}
|
|
6594
|
+
.utrecht-rich-text .utrecht-img:has(+ .utrecht-spotlight-section) {
|
|
6595
|
+
--utrecht-img-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6596
|
+
}
|
|
6494
6597
|
.utrecht-rich-text .utrecht-img:has(+ .utrecht-separator) {
|
|
6495
6598
|
--utrecht-img-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6496
6599
|
}
|
|
@@ -6557,6 +6660,9 @@
|
|
|
6557
6660
|
.utrecht-rich-text .utrecht-link:has(+ .utrecht-paragraph) {
|
|
6558
6661
|
--utrecht-link-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6559
6662
|
}
|
|
6663
|
+
.utrecht-rich-text .utrecht-link:has(+ .utrecht-spotlight-section) {
|
|
6664
|
+
--utrecht-link-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6665
|
+
}
|
|
6560
6666
|
.utrecht-rich-text .utrecht-link:has(+ .utrecht-separator) {
|
|
6561
6667
|
--utrecht-link-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6562
6668
|
}
|
|
@@ -6629,6 +6735,9 @@
|
|
|
6629
6735
|
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-paragraph) {
|
|
6630
6736
|
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6631
6737
|
}
|
|
6738
|
+
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-spotlight-section) {
|
|
6739
|
+
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6740
|
+
}
|
|
6632
6741
|
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-separator) {
|
|
6633
6742
|
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6634
6743
|
}
|
|
@@ -6695,6 +6804,9 @@
|
|
|
6695
6804
|
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-paragraph) {
|
|
6696
6805
|
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6697
6806
|
}
|
|
6807
|
+
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-spotlight-section) {
|
|
6808
|
+
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6809
|
+
}
|
|
6698
6810
|
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-separator) {
|
|
6699
6811
|
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6700
6812
|
}
|
|
@@ -6764,6 +6876,9 @@
|
|
|
6764
6876
|
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-paragraph) {
|
|
6765
6877
|
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6766
6878
|
}
|
|
6879
|
+
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-spotlight-section) {
|
|
6880
|
+
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6881
|
+
}
|
|
6767
6882
|
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-separator) {
|
|
6768
6883
|
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6769
6884
|
}
|
|
@@ -6845,6 +6960,9 @@
|
|
|
6845
6960
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-paragraph) {
|
|
6846
6961
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6847
6962
|
}
|
|
6963
|
+
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-spotlight-section) {
|
|
6964
|
+
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6965
|
+
}
|
|
6848
6966
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-separator) {
|
|
6849
6967
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6850
6968
|
}
|
|
@@ -6857,6 +6975,87 @@
|
|
|
6857
6975
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-unordered-list) {
|
|
6858
6976
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6859
6977
|
}
|
|
6978
|
+
.utrecht-rich-text .utrecht-spotlight-section:first-child {
|
|
6979
|
+
--utrecht-spotlight-section-margin-block-start: 0;
|
|
6980
|
+
}
|
|
6981
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-1) {
|
|
6982
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6983
|
+
}
|
|
6984
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-2) {
|
|
6985
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6986
|
+
}
|
|
6987
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-3) {
|
|
6988
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6989
|
+
}
|
|
6990
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-4) {
|
|
6991
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6992
|
+
}
|
|
6993
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-5) {
|
|
6994
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6995
|
+
}
|
|
6996
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-6) {
|
|
6997
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6998
|
+
}
|
|
6999
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-accordion) {
|
|
7000
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7001
|
+
}
|
|
7002
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-list) {
|
|
7003
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7004
|
+
}
|
|
7005
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-blockquote) {
|
|
7006
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7007
|
+
}
|
|
7008
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-button) {
|
|
7009
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7010
|
+
}
|
|
7011
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-button-group) {
|
|
7012
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7013
|
+
}
|
|
7014
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-action-group) {
|
|
7015
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7016
|
+
}
|
|
7017
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-counter) {
|
|
7018
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7019
|
+
}
|
|
7020
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-data-list) {
|
|
7021
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7022
|
+
}
|
|
7023
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-figure) {
|
|
7024
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7025
|
+
}
|
|
7026
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-form-field) {
|
|
7027
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7028
|
+
}
|
|
7029
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-img) {
|
|
7030
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7031
|
+
}
|
|
7032
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-link) {
|
|
7033
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7034
|
+
}
|
|
7035
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-ordered-list) {
|
|
7036
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7037
|
+
}
|
|
7038
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-pagination) {
|
|
7039
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7040
|
+
}
|
|
7041
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-paragraph) {
|
|
7042
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7043
|
+
}
|
|
7044
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-spotlight-section) {
|
|
7045
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7046
|
+
}
|
|
7047
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-separator) {
|
|
7048
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7049
|
+
}
|
|
7050
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-status) {
|
|
7051
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7052
|
+
}
|
|
7053
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-table) {
|
|
7054
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7055
|
+
}
|
|
7056
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-unordered-list) {
|
|
7057
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7058
|
+
}
|
|
6860
7059
|
.utrecht-rich-text .utrecht-sidenav:first-child {
|
|
6861
7060
|
--utrecht-sidenav-margin-block-start: 0;
|
|
6862
7061
|
}
|
|
@@ -6917,6 +7116,9 @@
|
|
|
6917
7116
|
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-pagination) {
|
|
6918
7117
|
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6919
7118
|
}
|
|
7119
|
+
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-spotlight-section) {
|
|
7120
|
+
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7121
|
+
}
|
|
6920
7122
|
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-separator) {
|
|
6921
7123
|
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6922
7124
|
}
|
|
@@ -7007,6 +7209,9 @@
|
|
|
7007
7209
|
.utrecht-rich-text .utrecht-table:has(+ .utrecht-paragraph) {
|
|
7008
7210
|
--utrecht-table-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
7009
7211
|
}
|
|
7212
|
+
.utrecht-rich-text .utrecht-table:has(+ .utrecht-spotlight-section) {
|
|
7213
|
+
--utrecht-table-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7214
|
+
}
|
|
7010
7215
|
.utrecht-rich-text .utrecht-table:has(+ .utrecht-separator) {
|
|
7011
7216
|
--utrecht-table-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7012
7217
|
}
|
|
@@ -7094,6 +7299,9 @@
|
|
|
7094
7299
|
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-paragraph) {
|
|
7095
7300
|
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
7096
7301
|
}
|
|
7302
|
+
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-spotlight-section) {
|
|
7303
|
+
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7304
|
+
}
|
|
7097
7305
|
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-separator) {
|
|
7098
7306
|
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
7099
7307
|
}
|
|
@@ -7899,6 +8107,7 @@
|
|
|
7899
8107
|
border-style: solid;
|
|
7900
8108
|
box-sizing: border-box;
|
|
7901
8109
|
color: var(--utrecht-textbox-color, var(--utrecht-form-control-color));
|
|
8110
|
+
display: block;
|
|
7902
8111
|
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-control-font-family));
|
|
7903
8112
|
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-control-font-size, inherit));
|
|
7904
8113
|
font-weight: var(--utrecht-textbox-font-weight, var(--utrecht-form-control-font-weight, initial));
|
|
@@ -7907,10 +8116,12 @@
|
|
|
7907
8116
|
min-block-size: var(--utrecht-pointer-target-min-size, 44px);
|
|
7908
8117
|
min-inline-size: var(--utrecht-pointer-target-min-size, 44px);
|
|
7909
8118
|
max-inline-size: min(var(--_utrecht-textbox-max-inline-size, 100%), var(--utrecht-textbox-max-inline-size, var(--utrecht-form-control-max-inline-size)));
|
|
8119
|
+
overflow: hidden;
|
|
7910
8120
|
padding-block-end: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-control-padding-block-end, 0));
|
|
7911
8121
|
padding-block-start: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-control-padding-block-start, 0));
|
|
7912
8122
|
padding-inline-end: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-control-padding-inline-end, initial));
|
|
7913
8123
|
padding-inline-start: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-control-padding-inline-start, initial));
|
|
8124
|
+
white-space: nowrap;
|
|
7914
8125
|
}
|
|
7915
8126
|
|
|
7916
8127
|
.utrecht-textbox--invalid {
|
package/dist/prince-xml.css
CHANGED
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
flex-wrap: wrap;
|
|
359
359
|
row-gap: var(--utrecht-badge-list-row-gap);
|
|
360
360
|
}
|
|
361
|
-
.utrecht-badge
|
|
361
|
+
.utrecht-status-badge {
|
|
362
362
|
background-color: var(--utrecht-badge-background-color, hsl(0, 0%, 0%));
|
|
363
363
|
border-radius: var(--utrecht-badge-border-radius, 0.5ch);
|
|
364
364
|
color: var(--utrecht-badge-color, hsl(0, 0%, 100%));
|
|
@@ -377,58 +377,81 @@
|
|
|
377
377
|
padding-right: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
378
378
|
padding-left: var(--utrecht-badge-padding-inline, 0.5ch);
|
|
379
379
|
text-decoration: none;
|
|
380
|
-
|
|
381
|
-
|
|
380
|
+
--utrecht-badge-background-color: var(--utrecht-status-badge-background-color);
|
|
381
|
+
--utrecht-badge-border-radius: var(--utrecht-status-badge-border-radius);
|
|
382
|
+
--utrecht-badge-color: var(--utrecht-status-badge-color);
|
|
383
|
+
--utrecht-badge-font-size: var(--utrecht-status-badge-font-size, inherit);
|
|
384
|
+
--utrecht-badge-font-style: var(--utrecht-status-badge-font-style);
|
|
385
|
+
--utrecht-badge-font-weight: var(--utrecht-status-badge-font-weight);
|
|
386
|
+
--utrecht-badge-line-height: var(--utrecht-status-badge-line-height);
|
|
387
|
+
--utrecht-badge-padding-block: var(--utrecht-status-badge-padding-block);
|
|
388
|
+
--utrecht-badge-padding-inline: var(--utrecht-status-badge-padding-inline);
|
|
389
|
+
border-color: var(--utrecht-status-badge-border-color, transparent);
|
|
390
|
+
border-width: var(--utrecht-status-badge-border-width);
|
|
391
|
+
font-family: var(--utrecht-status-badge-font-family, inherit);
|
|
392
|
+
letter-spacing: var(--utrecht-status-badge-letter-spacing, inherit);
|
|
393
|
+
min-height: var(--utrecht-status-badge-min-block-size, 1em);
|
|
394
|
+
min-width: var(--utrecht-status-badge-min-inline-size, 1em);
|
|
395
|
+
text-transform: var(--utrecht-status-badge-text-transform, inherit);
|
|
382
396
|
}
|
|
383
397
|
|
|
384
|
-
.utrecht-badge
|
|
385
|
-
background-color: var(--utrecht-
|
|
386
|
-
color: var(--utrecht-
|
|
398
|
+
.utrecht-status-badge--danger {
|
|
399
|
+
background-color: var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 40%));
|
|
400
|
+
border-color: var(--utrecht-status-badge-danger-border-color);
|
|
401
|
+
color: var(--utrecht-status-badge-danger-color, white);
|
|
387
402
|
}
|
|
388
403
|
|
|
389
|
-
.utrecht-badge
|
|
390
|
-
background-color: var(--utrecht-
|
|
391
|
-
color: var(--utrecht-
|
|
404
|
+
.utrecht-status-badge--warning {
|
|
405
|
+
background-color: var(--utrecht-status-badge-warning-background-color, hsl(48, 100%, 50%));
|
|
406
|
+
border-color: var(--utrecht-status-badge-warning-border-color);
|
|
407
|
+
color: var(--utrecht-status-badge-warning-color, white);
|
|
392
408
|
}
|
|
393
409
|
|
|
394
|
-
.utrecht-badge
|
|
395
|
-
background-color: var(--utrecht-
|
|
396
|
-
color: var(--utrecht-
|
|
410
|
+
.utrecht-status-badge--safe {
|
|
411
|
+
background-color: var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%));
|
|
412
|
+
border-color: var(--utrecht-status-badge-safe-border-color);
|
|
413
|
+
color: var(--utrecht-status-badge-safe-color, white);
|
|
397
414
|
}
|
|
398
415
|
|
|
399
|
-
.utrecht-badge
|
|
400
|
-
background-color: var(--utrecht-
|
|
401
|
-
color: var(--utrecht-
|
|
416
|
+
.utrecht-status-badge--neutral {
|
|
417
|
+
background-color: var(--utrecht-status-badge-neutral-background-color, black);
|
|
418
|
+
border-color: var(--utrecht-status-badge-neutral-border-color);
|
|
419
|
+
color: var(--utrecht-status-badge-neutral-color, white);
|
|
402
420
|
}
|
|
403
421
|
|
|
404
|
-
.utrecht-badge
|
|
405
|
-
background-color: var(--utrecht-
|
|
406
|
-
color: var(--utrecht-
|
|
422
|
+
.utrecht-status-badge--valid {
|
|
423
|
+
background-color: var(--utrecht-status-badge-valid-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
424
|
+
border-color: var(--utrecht-status-badge-valid-border-color);
|
|
425
|
+
color: var(--utrecht-status-badge-valid-color, var(--utrecht-status-badge-safe-color, white));
|
|
407
426
|
}
|
|
408
427
|
|
|
409
|
-
.utrecht-badge
|
|
410
|
-
background-color: var(--utrecht-
|
|
411
|
-
color: var(--utrecht-
|
|
428
|
+
.utrecht-status-badge--invalid {
|
|
429
|
+
background-color: var(--utrecht-status-badge-invalid-background-color, var(--utrecht-status-badge-danger-background-color, hsl(39, 100%, 50%)));
|
|
430
|
+
border-color: var(--utrecht-status-badge-invalid-border-color);
|
|
431
|
+
color: var(--utrecht-status-badge-invalid-color, var(--utrecht-status-badge-danger-color, white));
|
|
412
432
|
}
|
|
413
433
|
|
|
414
|
-
.utrecht-badge
|
|
415
|
-
background-color: var(--utrecht-
|
|
416
|
-
color: var(--utrecht-
|
|
434
|
+
.utrecht-status-badge--error {
|
|
435
|
+
background-color: var(--utrecht-status-badge-error-background-color, var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 30%)));
|
|
436
|
+
color: var(--utrecht-status-badge-error-color, var(--utrecht-status-badge-danger-color, white));
|
|
417
437
|
}
|
|
418
438
|
|
|
419
|
-
.utrecht-badge
|
|
420
|
-
background-color: var(--utrecht-
|
|
421
|
-
color: var(--utrecht-
|
|
439
|
+
.utrecht-status-badge--success {
|
|
440
|
+
background-color: var(--utrecht-status-badge-success-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
441
|
+
border-color: var(--utrecht-status-badge-success-border-color);
|
|
442
|
+
color: var(--utrecht-status-badge-success-color, var(--utrecht-status-badge-safe-color, white));
|
|
422
443
|
}
|
|
423
444
|
|
|
424
|
-
.utrecht-badge
|
|
425
|
-
background-color: var(--utrecht-
|
|
426
|
-
color: var(--utrecht-
|
|
445
|
+
.utrecht-status-badge--active {
|
|
446
|
+
background-color: var(--utrecht-status-badge-active-background-color, var(--utrecht-status-badge-safe-background-color, hsl(90, 30%, 50%)));
|
|
447
|
+
border-color: var(--utrecht-status-badge-active-border-color);
|
|
448
|
+
color: var(--utrecht-status-badge-active-color, var(--utrecht-status-badge-safe-color, white));
|
|
427
449
|
}
|
|
428
450
|
|
|
429
|
-
.utrecht-badge
|
|
430
|
-
background-color: var(--utrecht-
|
|
431
|
-
color: var(--utrecht-
|
|
451
|
+
.utrecht-status-badge--inactive {
|
|
452
|
+
background-color: var(--utrecht-status-badge-inactive-background-color, var(--utrecht-status-badge-danger-background-color, hsl(0, 100%, 40%)));
|
|
453
|
+
border-color: var(--utrecht-status-badge-inactive-border-color);
|
|
454
|
+
color: var(--utrecht-status-badge-inactive-color, var(--utrecht-status-badge-danger-color, white));
|
|
432
455
|
}
|
|
433
456
|
.utrecht-blockquote {
|
|
434
457
|
background-color: var(--utrecht-blockquote-background-color);
|
|
@@ -3939,10 +3962,6 @@
|
|
|
3939
3962
|
}
|
|
3940
3963
|
|
|
3941
3964
|
.utrecht-listbox__option--selected {
|
|
3942
|
-
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-selected-disabled-background-color);
|
|
3943
|
-
--_utrecht-listbox-option-disabled-color: var(--utrecht-listbox-option-selected-disabled-color);
|
|
3944
|
-
--_utrecht-listbox-option-interactive-background-color: var(--utrecht-listbox-option-selected-hover-background-color);
|
|
3945
|
-
--_utrecht-listbox-option-interactive-color: var(--utrecht-listbox-option-selected-hover-color);
|
|
3946
3965
|
--_utrecht-listbox-option-state-background-color: var(--utrecht-listbox-option-selected-background-color);
|
|
3947
3966
|
--_utrecht-listbox-option-state-color: var(--utrecht-listbox-option-selected-color);
|
|
3948
3967
|
}
|
|
@@ -3965,6 +3984,10 @@
|
|
|
3965
3984
|
--_utrecht-listbox-option-interactive-color: var(--utrecht-listbox-option-disabled-color);
|
|
3966
3985
|
cursor: var(--utrecht-action-disabled-cursor, not-allowed);
|
|
3967
3986
|
}
|
|
3987
|
+
.utrecht-listbox__option--disabled.utrecht-listbox__option--selected {
|
|
3988
|
+
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-selected-disabled-background-color);
|
|
3989
|
+
--_utrecht-listbox-option-disabled-color: var(--utrecht-listbox-option-selected-disabled-color);
|
|
3990
|
+
}
|
|
3968
3991
|
|
|
3969
3992
|
.utrecht-listbox--disabled {
|
|
3970
3993
|
--_utrecht-listbox-option-disabled-background-color: var(--utrecht-listbox-option-disabled-background-color);
|
|
@@ -4107,6 +4130,10 @@
|
|
|
4107
4130
|
width: 100%;
|
|
4108
4131
|
}
|
|
4109
4132
|
|
|
4133
|
+
.utrecht-nav-bar__heading {
|
|
4134
|
+
display: none;
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4110
4137
|
.utrecht-nav-bar__content {
|
|
4111
4138
|
align-items: stretch;
|
|
4112
4139
|
background-color: var(--utrecht-nav-bar-content-background-color);
|
|
@@ -4125,7 +4152,7 @@
|
|
|
4125
4152
|
margin-right: 0;
|
|
4126
4153
|
margin-left: 0;
|
|
4127
4154
|
padding-left: 0;
|
|
4128
|
-
align-items:
|
|
4155
|
+
align-items: baseline;
|
|
4129
4156
|
display: flex;
|
|
4130
4157
|
flex-direction: row;
|
|
4131
4158
|
flex-wrap: wrap;
|
|
@@ -4133,6 +4160,16 @@
|
|
|
4133
4160
|
justify-content: start;
|
|
4134
4161
|
}
|
|
4135
4162
|
|
|
4163
|
+
.utrecht-nav-list--inline-size-auto {
|
|
4164
|
+
width: auto;
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4167
|
+
.utrecht-nav-list__link[aria-current=page],
|
|
4168
|
+
.utrecht-nav-list__link[aria-current=true] {
|
|
4169
|
+
background-color: var(--utrecht-navigation-link-current-background-color, transparent);
|
|
4170
|
+
font-weight: var(--utrecht-navigation-link-current-font-weight);
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4136
4173
|
.utrecht-nav-list--center > * {
|
|
4137
4174
|
flex: 1 1 0;
|
|
4138
4175
|
justify-content: center;
|
|
@@ -4214,8 +4251,6 @@
|
|
|
4214
4251
|
}
|
|
4215
4252
|
|
|
4216
4253
|
.utrecht-navigation__link {
|
|
4217
|
-
--utrecht-link-focus-text-decoration: underline;
|
|
4218
|
-
--utrecht-link-focus-text-decoration-thickness: var(--utrecht-navigation-link-focus-text-decoration-thickness);
|
|
4219
4254
|
--utrecht-link-text-decoration: none;
|
|
4220
4255
|
--utrecht-link-active-color: var(--utrecht-navigation-link-active-color);
|
|
4221
4256
|
--utrecht-link-hover-text-decoration-thickness: var(--utrecht-navigation-link-hover-decoration-thickness);
|
|
@@ -4244,18 +4279,37 @@
|
|
|
4244
4279
|
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4245
4280
|
}
|
|
4246
4281
|
|
|
4247
|
-
.utrecht-navigation__link
|
|
4282
|
+
.utrecht-link.utrecht-link--html-a.utrecht-navigation__link[prince-xml-ignore-pseudo-class-focus-visible] {
|
|
4283
|
+
--utrecht-navigation-link-active-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4284
|
+
--utrecht-link-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4285
|
+
--utrecht-link-focus-background-color: var(--utrecht-navigation-link-focus-visible-background-color);
|
|
4286
|
+
--utrecht-navigation-link-focus-color: var(--utrecht-navigation-link-focus-visible-color);
|
|
4287
|
+
--utrecht-navigation-link-focus-background-color: var(--utrecht-navigation-link-focus-visible-background-color);
|
|
4288
|
+
--utrecht-link-focus-visible-text-decoration-thickness: var(
|
|
4289
|
+
--utrecht-navigation-link-focus-visible-text-decoration-thickness
|
|
4290
|
+
);
|
|
4291
|
+
--utrecht-link-focus-visible-text-decoration: underline;
|
|
4292
|
+
--utrecht-navigation-marker-color: currentColor;
|
|
4293
|
+
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
.utrecht-link.utrecht-link--html-a.utrecht-navigation__link:focus {
|
|
4248
4297
|
--utrecht-link-focus-color: var(--utrecht-navigation-link-focus-color);
|
|
4249
|
-
--utrecht-link-focus-background-color: var(--utrecht-
|
|
4298
|
+
--utrecht-link-focus-background-color: var(--utrecht-navigation-link-focus-background-color);
|
|
4250
4299
|
--utrecht-navigation-marker-color: currentColor;
|
|
4251
4300
|
--utrecht-navigation-marker-outline-hover-fill: currentColor;
|
|
4301
|
+
--utrecht-link-text-decoration-thickness: var(--utrecht-navigation-link-focus-text-decoration-thickness);
|
|
4302
|
+
--utrecht-link-text-decoration: underline;
|
|
4252
4303
|
}
|
|
4253
4304
|
|
|
4254
|
-
.utrecht-navigation__link:active
|
|
4255
|
-
--utrecht-link-
|
|
4305
|
+
.utrecht-navigation__link:active {
|
|
4306
|
+
--utrecht-link-active-color: var(--utrecht-navigation-link-active-focus-color);
|
|
4256
4307
|
}
|
|
4257
4308
|
|
|
4258
4309
|
.utrecht-navigation__link--mobile {
|
|
4310
|
+
--utrecht-navigation-link-focus-color: var(--utrecht-navigation-link-mobile-focus-color);
|
|
4311
|
+
--utrecht-navigation-link-focus-background-color: var(--utrecht-navigation-link-mobile-focus-background-color);
|
|
4312
|
+
--utrecht-link-active-color: var(--utrecht-navigation-link-mobile-active-color);
|
|
4259
4313
|
--_utrecht-navigation-link-align-items: center;
|
|
4260
4314
|
--_utrecht-navigation-link-justify-content: normal;
|
|
4261
4315
|
--utrecht-navigation-link-padding-inline-start: var(--utrecht-navigation-link-mobile-padding-inline-start);
|
|
@@ -4281,6 +4335,7 @@
|
|
|
4281
4335
|
}
|
|
4282
4336
|
|
|
4283
4337
|
.utrecht-navigation__link--is-current {
|
|
4338
|
+
--utrecht-navigation-link-mobile-hover-font-weight: var(--utrecht-navigation-link-is-current-font-weight);
|
|
4284
4339
|
--utrecht-navigation-link-font-weight: var(--utrecht-navigation-link-is-current-font-weight);
|
|
4285
4340
|
}
|
|
4286
4341
|
|
|
@@ -5108,6 +5163,9 @@
|
|
|
5108
5163
|
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-paragraph) {
|
|
5109
5164
|
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5110
5165
|
}
|
|
5166
|
+
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-spotlight-section) {
|
|
5167
|
+
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5168
|
+
}
|
|
5111
5169
|
.utrecht-rich-text .utrecht-heading-1:has(+ .utrecht-separator) {
|
|
5112
5170
|
--utrecht-heading-1-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5113
5171
|
}
|
|
@@ -5171,6 +5229,9 @@
|
|
|
5171
5229
|
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-paragraph) {
|
|
5172
5230
|
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5173
5231
|
}
|
|
5232
|
+
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-spotlight-section) {
|
|
5233
|
+
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5234
|
+
}
|
|
5174
5235
|
.utrecht-rich-text .utrecht-heading-2:has(+ .utrecht-separator) {
|
|
5175
5236
|
--utrecht-heading-2-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5176
5237
|
}
|
|
@@ -5237,6 +5298,9 @@
|
|
|
5237
5298
|
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-paragraph) {
|
|
5238
5299
|
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5239
5300
|
}
|
|
5301
|
+
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-spotlight-section) {
|
|
5302
|
+
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5303
|
+
}
|
|
5240
5304
|
.utrecht-rich-text .utrecht-heading-3:has(+ .utrecht-separator) {
|
|
5241
5305
|
--utrecht-heading-3-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5242
5306
|
}
|
|
@@ -5303,6 +5367,9 @@
|
|
|
5303
5367
|
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-paragraph) {
|
|
5304
5368
|
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5305
5369
|
}
|
|
5370
|
+
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-spotlight-section) {
|
|
5371
|
+
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5372
|
+
}
|
|
5306
5373
|
.utrecht-rich-text .utrecht-heading-4:has(+ .utrecht-separator) {
|
|
5307
5374
|
--utrecht-heading-4-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5308
5375
|
}
|
|
@@ -5369,6 +5436,9 @@
|
|
|
5369
5436
|
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-paragraph) {
|
|
5370
5437
|
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5371
5438
|
}
|
|
5439
|
+
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-spotlight-section) {
|
|
5440
|
+
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5441
|
+
}
|
|
5372
5442
|
.utrecht-rich-text .utrecht-heading-5:has(+ .utrecht-separator) {
|
|
5373
5443
|
--utrecht-heading-5-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5374
5444
|
}
|
|
@@ -5432,6 +5502,9 @@
|
|
|
5432
5502
|
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-paragraph) {
|
|
5433
5503
|
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5434
5504
|
}
|
|
5505
|
+
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-spotlight-section) {
|
|
5506
|
+
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5507
|
+
}
|
|
5435
5508
|
.utrecht-rich-text .utrecht-heading-6:has(+ .utrecht-separator) {
|
|
5436
5509
|
--utrecht-heading-6-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5437
5510
|
}
|
|
@@ -5507,6 +5580,9 @@
|
|
|
5507
5580
|
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-paragraph) {
|
|
5508
5581
|
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5509
5582
|
}
|
|
5583
|
+
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-spotlight-section) {
|
|
5584
|
+
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5585
|
+
}
|
|
5510
5586
|
.utrecht-rich-text .utrecht-accordion:has(+ .utrecht-separator) {
|
|
5511
5587
|
--utrecht-accordion-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5512
5588
|
}
|
|
@@ -5657,6 +5733,9 @@
|
|
|
5657
5733
|
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-paragraph) {
|
|
5658
5734
|
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5659
5735
|
}
|
|
5736
|
+
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-spotlight-section) {
|
|
5737
|
+
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5738
|
+
}
|
|
5660
5739
|
.utrecht-rich-text .utrecht-badge-list:has(+ .utrecht-separator) {
|
|
5661
5740
|
--utrecht-badge-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5662
5741
|
}
|
|
@@ -5729,6 +5808,9 @@
|
|
|
5729
5808
|
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-paragraph) {
|
|
5730
5809
|
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5731
5810
|
}
|
|
5811
|
+
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-spotlight-section) {
|
|
5812
|
+
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
5813
|
+
}
|
|
5732
5814
|
.utrecht-rich-text .utrecht-blockquote:has(+ .utrecht-separator) {
|
|
5733
5815
|
--utrecht-blockquote-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5734
5816
|
}
|
|
@@ -5804,6 +5886,9 @@
|
|
|
5804
5886
|
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-paragraph) {
|
|
5805
5887
|
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5806
5888
|
}
|
|
5889
|
+
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-spotlight-section) {
|
|
5890
|
+
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5891
|
+
}
|
|
5807
5892
|
.utrecht-rich-text .utrecht-breadcrumb-nav:has(+ .utrecht-separator) {
|
|
5808
5893
|
--utrecht-breadcrumb-nav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5809
5894
|
}
|
|
@@ -5876,6 +5961,9 @@
|
|
|
5876
5961
|
.utrecht-rich-text .utrecht-button:has(+ .utrecht-paragraph) {
|
|
5877
5962
|
--utrecht-button-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5878
5963
|
}
|
|
5964
|
+
.utrecht-rich-text .utrecht-button:has(+ .utrecht-spotlight-section) {
|
|
5965
|
+
--utrecht-button-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5966
|
+
}
|
|
5879
5967
|
.utrecht-rich-text .utrecht-button:has(+ .utrecht-separator) {
|
|
5880
5968
|
--utrecht-button-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5881
5969
|
}
|
|
@@ -5945,6 +6033,9 @@
|
|
|
5945
6033
|
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-paragraph) {
|
|
5946
6034
|
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
5947
6035
|
}
|
|
6036
|
+
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-spotlight-section) {
|
|
6037
|
+
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6038
|
+
}
|
|
5948
6039
|
.utrecht-rich-text .utrecht-button-group:has(+ .utrecht-separator) {
|
|
5949
6040
|
--utrecht-button-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
5950
6041
|
}
|
|
@@ -6014,6 +6105,9 @@
|
|
|
6014
6105
|
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-paragraph) {
|
|
6015
6106
|
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6016
6107
|
}
|
|
6108
|
+
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-spotlight-section) {
|
|
6109
|
+
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6110
|
+
}
|
|
6017
6111
|
.utrecht-rich-text .utrecht-action-group:has(+ .utrecht-separator) {
|
|
6018
6112
|
--utrecht-action-group-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6019
6113
|
}
|
|
@@ -6089,6 +6183,9 @@
|
|
|
6089
6183
|
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-paragraph) {
|
|
6090
6184
|
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6091
6185
|
}
|
|
6186
|
+
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-spotlight-section) {
|
|
6187
|
+
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6188
|
+
}
|
|
6092
6189
|
.utrecht-rich-text .utrecht-data-list:has(+ .utrecht-separator) {
|
|
6093
6190
|
--utrecht-data-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6094
6191
|
}
|
|
@@ -6227,6 +6324,9 @@
|
|
|
6227
6324
|
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-paragraph) {
|
|
6228
6325
|
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6229
6326
|
}
|
|
6327
|
+
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-spotlight-section) {
|
|
6328
|
+
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6329
|
+
}
|
|
6230
6330
|
.utrecht-rich-text .utrecht-form-field:has(+ .utrecht-separator) {
|
|
6231
6331
|
--utrecht-form-field-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6232
6332
|
}
|
|
@@ -6347,6 +6447,9 @@
|
|
|
6347
6447
|
.utrecht-rich-text .utrecht-img:has(+ .utrecht-paragraph) {
|
|
6348
6448
|
--utrecht-img-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6349
6449
|
}
|
|
6450
|
+
.utrecht-rich-text .utrecht-img:has(+ .utrecht-spotlight-section) {
|
|
6451
|
+
--utrecht-img-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6452
|
+
}
|
|
6350
6453
|
.utrecht-rich-text .utrecht-img:has(+ .utrecht-separator) {
|
|
6351
6454
|
--utrecht-img-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6352
6455
|
}
|
|
@@ -6413,6 +6516,9 @@
|
|
|
6413
6516
|
.utrecht-rich-text .utrecht-link:has(+ .utrecht-paragraph) {
|
|
6414
6517
|
--utrecht-link-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6415
6518
|
}
|
|
6519
|
+
.utrecht-rich-text .utrecht-link:has(+ .utrecht-spotlight-section) {
|
|
6520
|
+
--utrecht-link-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6521
|
+
}
|
|
6416
6522
|
.utrecht-rich-text .utrecht-link:has(+ .utrecht-separator) {
|
|
6417
6523
|
--utrecht-link-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6418
6524
|
}
|
|
@@ -6485,6 +6591,9 @@
|
|
|
6485
6591
|
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-paragraph) {
|
|
6486
6592
|
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6487
6593
|
}
|
|
6594
|
+
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-spotlight-section) {
|
|
6595
|
+
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6596
|
+
}
|
|
6488
6597
|
.utrecht-rich-text .utrecht-ordered-list:has(+ .utrecht-separator) {
|
|
6489
6598
|
--utrecht-ordered-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6490
6599
|
}
|
|
@@ -6551,6 +6660,9 @@
|
|
|
6551
6660
|
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-paragraph) {
|
|
6552
6661
|
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6553
6662
|
}
|
|
6663
|
+
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-spotlight-section) {
|
|
6664
|
+
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6665
|
+
}
|
|
6554
6666
|
.utrecht-rich-text .utrecht-pagination:has(+ .utrecht-separator) {
|
|
6555
6667
|
--utrecht-pagination-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6556
6668
|
}
|
|
@@ -6620,6 +6732,9 @@
|
|
|
6620
6732
|
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-paragraph) {
|
|
6621
6733
|
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6622
6734
|
}
|
|
6735
|
+
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-spotlight-section) {
|
|
6736
|
+
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6737
|
+
}
|
|
6623
6738
|
.utrecht-rich-text .utrecht-paragraph:has(+ .utrecht-separator) {
|
|
6624
6739
|
--utrecht-paragraph-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6625
6740
|
}
|
|
@@ -6701,6 +6816,9 @@
|
|
|
6701
6816
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-paragraph) {
|
|
6702
6817
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6703
6818
|
}
|
|
6819
|
+
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-spotlight-section) {
|
|
6820
|
+
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6821
|
+
}
|
|
6704
6822
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-separator) {
|
|
6705
6823
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6706
6824
|
}
|
|
@@ -6713,6 +6831,87 @@
|
|
|
6713
6831
|
.utrecht-rich-text .utrecht-separator:has(+ .utrecht-unordered-list) {
|
|
6714
6832
|
--utrecht-separator-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6715
6833
|
}
|
|
6834
|
+
.utrecht-rich-text .utrecht-spotlight-section:first-child {
|
|
6835
|
+
--utrecht-spotlight-section-margin-block-start: 0;
|
|
6836
|
+
}
|
|
6837
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-1) {
|
|
6838
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6839
|
+
}
|
|
6840
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-2) {
|
|
6841
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6842
|
+
}
|
|
6843
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-3) {
|
|
6844
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6845
|
+
}
|
|
6846
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-4) {
|
|
6847
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6848
|
+
}
|
|
6849
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-5) {
|
|
6850
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6851
|
+
}
|
|
6852
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-heading-6) {
|
|
6853
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6854
|
+
}
|
|
6855
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-accordion) {
|
|
6856
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6857
|
+
}
|
|
6858
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-list) {
|
|
6859
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6860
|
+
}
|
|
6861
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-blockquote) {
|
|
6862
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6863
|
+
}
|
|
6864
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-button) {
|
|
6865
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6866
|
+
}
|
|
6867
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-button-group) {
|
|
6868
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6869
|
+
}
|
|
6870
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-action-group) {
|
|
6871
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6872
|
+
}
|
|
6873
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-counter) {
|
|
6874
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6875
|
+
}
|
|
6876
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-data-list) {
|
|
6877
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6878
|
+
}
|
|
6879
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-figure) {
|
|
6880
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6881
|
+
}
|
|
6882
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-form-field) {
|
|
6883
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6884
|
+
}
|
|
6885
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-img) {
|
|
6886
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6887
|
+
}
|
|
6888
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-link) {
|
|
6889
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6890
|
+
}
|
|
6891
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-ordered-list) {
|
|
6892
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6893
|
+
}
|
|
6894
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-pagination) {
|
|
6895
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6896
|
+
}
|
|
6897
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-paragraph) {
|
|
6898
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6899
|
+
}
|
|
6900
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-spotlight-section) {
|
|
6901
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6902
|
+
}
|
|
6903
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-separator) {
|
|
6904
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6905
|
+
}
|
|
6906
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-badge-status) {
|
|
6907
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6908
|
+
}
|
|
6909
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-table) {
|
|
6910
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6911
|
+
}
|
|
6912
|
+
.utrecht-rich-text .utrecht-spotlight-section:has(+ .utrecht-unordered-list) {
|
|
6913
|
+
--utrecht-spotlight-section-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
6914
|
+
}
|
|
6716
6915
|
.utrecht-rich-text .utrecht-sidenav:first-child {
|
|
6717
6916
|
--utrecht-sidenav-margin-block-start: 0;
|
|
6718
6917
|
}
|
|
@@ -6773,6 +6972,9 @@
|
|
|
6773
6972
|
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-pagination) {
|
|
6774
6973
|
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6775
6974
|
}
|
|
6975
|
+
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-spotlight-section) {
|
|
6976
|
+
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6977
|
+
}
|
|
6776
6978
|
.utrecht-rich-text .utrecht-sidenav:has(+ .utrecht-separator) {
|
|
6777
6979
|
--utrecht-sidenav-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6778
6980
|
}
|
|
@@ -6863,6 +7065,9 @@
|
|
|
6863
7065
|
.utrecht-rich-text .utrecht-table:has(+ .utrecht-paragraph) {
|
|
6864
7066
|
--utrecht-table-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6865
7067
|
}
|
|
7068
|
+
.utrecht-rich-text .utrecht-table:has(+ .utrecht-spotlight-section) {
|
|
7069
|
+
--utrecht-table-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7070
|
+
}
|
|
6866
7071
|
.utrecht-rich-text .utrecht-table:has(+ .utrecht-separator) {
|
|
6867
7072
|
--utrecht-table-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6868
7073
|
}
|
|
@@ -6950,6 +7155,9 @@
|
|
|
6950
7155
|
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-paragraph) {
|
|
6951
7156
|
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-friend-margin-block-end);
|
|
6952
7157
|
}
|
|
7158
|
+
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-spotlight-section) {
|
|
7159
|
+
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-acquaintance-margin-block-end);
|
|
7160
|
+
}
|
|
6953
7161
|
.utrecht-rich-text .utrecht-unordered-list:has(+ .utrecht-separator) {
|
|
6954
7162
|
--utrecht-unordered-list-margin-block-end: var(--utrecht-rich-text-stranger-margin-block-end);
|
|
6955
7163
|
}
|
|
@@ -7755,6 +7963,7 @@
|
|
|
7755
7963
|
border-style: solid;
|
|
7756
7964
|
box-sizing: border-box;
|
|
7757
7965
|
color: var(--utrecht-textbox-color, var(--utrecht-form-control-color));
|
|
7966
|
+
display: block;
|
|
7758
7967
|
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-control-font-family));
|
|
7759
7968
|
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-control-font-size, inherit));
|
|
7760
7969
|
font-weight: var(--utrecht-textbox-font-weight, var(--utrecht-form-control-font-weight, initial));
|
|
@@ -7763,10 +7972,12 @@
|
|
|
7763
7972
|
min-height: var(--utrecht-pointer-target-min-size, 44px);
|
|
7764
7973
|
min-width: var(--utrecht-pointer-target-min-size, 44px);
|
|
7765
7974
|
max-width: min(var(--_utrecht-textbox-max-inline-size, 100%), var(--utrecht-textbox-max-inline-size, var(--utrecht-form-control-max-inline-size)));
|
|
7975
|
+
overflow: hidden;
|
|
7766
7976
|
padding-bottom: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-control-padding-block-end, 0));
|
|
7767
7977
|
padding-top: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-control-padding-block-start, 0));
|
|
7768
7978
|
padding-right: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-control-padding-inline-end, initial));
|
|
7769
7979
|
padding-left: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-control-padding-inline-start, initial));
|
|
7980
|
+
white-space: nowrap;
|
|
7770
7981
|
}
|
|
7771
7982
|
|
|
7772
7983
|
.utrecht-textbox--invalid {
|
|
@@ -9333,6 +9544,7 @@
|
|
|
9333
9544
|
border-style: solid;
|
|
9334
9545
|
box-sizing: border-box;
|
|
9335
9546
|
color: var(--utrecht-textbox-color, var(--utrecht-form-control-color));
|
|
9547
|
+
display: block;
|
|
9336
9548
|
font-family: var(--utrecht-textbox-font-family, var(--utrecht-form-control-font-family));
|
|
9337
9549
|
font-size: var(--utrecht-textbox-font-size, var(--utrecht-form-control-font-size, inherit));
|
|
9338
9550
|
font-weight: var(--utrecht-textbox-font-weight, var(--utrecht-form-control-font-weight, initial));
|
|
@@ -9341,10 +9553,12 @@
|
|
|
9341
9553
|
min-height: var(--utrecht-pointer-target-min-size, 44px);
|
|
9342
9554
|
min-width: var(--utrecht-pointer-target-min-size, 44px);
|
|
9343
9555
|
max-width: min(var(--_utrecht-textbox-max-inline-size, 100%), var(--utrecht-textbox-max-inline-size, var(--utrecht-form-control-max-inline-size)));
|
|
9556
|
+
overflow: hidden;
|
|
9344
9557
|
padding-bottom: var(--utrecht-textbox-padding-block-end, var(--utrecht-form-control-padding-block-end, 0));
|
|
9345
9558
|
padding-top: var(--utrecht-textbox-padding-block-start, var(--utrecht-form-control-padding-block-start, 0));
|
|
9346
9559
|
padding-right: var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-control-padding-inline-end, initial));
|
|
9347
9560
|
padding-left: var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-control-padding-inline-start, initial));
|
|
9561
|
+
white-space: nowrap;
|
|
9348
9562
|
}
|
|
9349
9563
|
.utrecht-html input:not([type]):focus,
|
|
9350
9564
|
.utrecht-html input[type=date i]:focus,
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "9.0.1",
|
|
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",
|
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
"@utrecht/backdrop-css": "2.0.1",
|
|
30
30
|
"@utrecht/badge-counter-css": "2.0.1",
|
|
31
31
|
"@utrecht/badge-list-css": "3.0.1",
|
|
32
|
-
"@utrecht/badge-status-css": "2.0.1",
|
|
33
32
|
"@utrecht/blockquote-css": "2.0.1",
|
|
34
33
|
"@utrecht/body-css": "2.0.1",
|
|
35
34
|
"@utrecht/breadcrumb-nav-css": "2.1.0",
|
|
@@ -78,7 +77,7 @@
|
|
|
78
77
|
"@utrecht/link-list-css": "3.0.1",
|
|
79
78
|
"@utrecht/link-social-css": "2.0.1",
|
|
80
79
|
"@utrecht/list-social-css": "2.0.1",
|
|
81
|
-
"@utrecht/listbox-css": "2.0
|
|
80
|
+
"@utrecht/listbox-css": "2.1.0",
|
|
82
81
|
"@utrecht/logo-button-css": "1.4.2",
|
|
83
82
|
"@utrecht/logo-css": "2.0.1",
|
|
84
83
|
"@utrecht/logo-image-css": "1.4.2",
|
|
@@ -87,7 +86,7 @@
|
|
|
87
86
|
"@utrecht/multiline-data-css": "2.0.1",
|
|
88
87
|
"@utrecht/nav-bar-css": "2.0.1",
|
|
89
88
|
"@utrecht/nav-list-css": "1.3.2",
|
|
90
|
-
"@utrecht/navigation-css": "1.1.
|
|
89
|
+
"@utrecht/navigation-css": "1.1.1",
|
|
91
90
|
"@utrecht/number-badge-css": "3.0.1",
|
|
92
91
|
"@utrecht/number-data-css": "2.0.1",
|
|
93
92
|
"@utrecht/ordered-list-css": "3.0.1",
|
|
@@ -102,18 +101,19 @@
|
|
|
102
101
|
"@utrecht/pre-heading-css": "2.0.1",
|
|
103
102
|
"@utrecht/preserve-data-css": "2.0.1",
|
|
104
103
|
"@utrecht/radio-button-css": "2.0.1",
|
|
105
|
-
"@utrecht/rich-text-css": "2.0
|
|
104
|
+
"@utrecht/rich-text-css": "2.1.0",
|
|
106
105
|
"@utrecht/root-css": "2.0.1",
|
|
107
106
|
"@utrecht/search-bar-css": "3.0.1",
|
|
108
107
|
"@utrecht/select-css": "2.0.1",
|
|
109
108
|
"@utrecht/separator-css": "2.0.1",
|
|
110
109
|
"@utrecht/skip-link-css": "2.0.1",
|
|
111
110
|
"@utrecht/spotlight-section-css": "2.0.1",
|
|
111
|
+
"@utrecht/status-badge-css": "1.0.0",
|
|
112
112
|
"@utrecht/surface-css": "2.0.1",
|
|
113
113
|
"@utrecht/table-css": "2.0.1",
|
|
114
114
|
"@utrecht/table-of-contents-css": "1.0.1",
|
|
115
115
|
"@utrecht/textarea-css": "3.0.1",
|
|
116
|
-
"@utrecht/textbox-css": "3.0
|
|
116
|
+
"@utrecht/textbox-css": "3.1.0",
|
|
117
117
|
"@utrecht/tooltip-css": "2.0.1",
|
|
118
118
|
"@utrecht/top-task-link-css": "2.0.1",
|
|
119
119
|
"@utrecht/top-task-nav-css": "1.3.2",
|
|
@@ -122,11 +122,11 @@
|
|
|
122
122
|
"@utrecht/youtube-video-css": "2.0.1"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
|
-
"postcss": "8.4.
|
|
126
|
-
"postcss-discard-duplicates": "7.0.
|
|
125
|
+
"postcss": "8.4.49",
|
|
126
|
+
"postcss-discard-duplicates": "7.0.2",
|
|
127
127
|
"postcss-logical": "7.0.1",
|
|
128
|
-
"rimraf": "5.0.
|
|
129
|
-
"rollup": "4.18.
|
|
128
|
+
"rimraf": "5.0.10",
|
|
129
|
+
"rollup": "4.18.1",
|
|
130
130
|
"rollup-plugin-postcss": "4.0.2",
|
|
131
131
|
"@utrecht/build-utils-css": "0.0.4"
|
|
132
132
|
},
|