@utrecht/component-library-css 1.0.0-alpha.534 → 1.0.0-alpha.536
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +85 -0
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2932,6 +2932,20 @@ ol.utrecht-breadcrumb__list {
|
|
|
2932
2932
|
color: var(--utrecht-form-toggle-disabled-color, black);
|
|
2933
2933
|
}
|
|
2934
2934
|
|
|
2935
|
+
.utrecht-form-toggle__track--focus-visible {
|
|
2936
|
+
/* - The browser default focus ring should apply when these CSS custom properties are not set.
|
|
2937
|
+
* - Make the `box-shadow` value available, so components that have their own `box-shadow`
|
|
2938
|
+
* can combine it with the focus ring box shadow.
|
|
2939
|
+
*/
|
|
2940
|
+
--_utrecht-focus-ring-box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0)
|
|
2941
|
+
var(--utrecht-focus-inverse-outline-color, transparent);
|
|
2942
|
+
box-shadow: var(--_utrecht-focus-ring-box-shadow);
|
|
2943
|
+
outline-color: var(--utrecht-focus-outline-color, revert);
|
|
2944
|
+
outline-offset: var(--utrecht-focus-outline-offset, revert);
|
|
2945
|
+
outline-style: var(--utrecht-focus-outline-style, revert);
|
|
2946
|
+
outline-width: var(--utrecht-focus-outline-width, revert);
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2935
2949
|
.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox {
|
|
2936
2950
|
/* Source: https://kittygiraudel.com/snippets/sr-only-class/ */
|
|
2937
2951
|
block-size: 1px !important;
|
|
@@ -2948,6 +2962,19 @@ ol.utrecht-breadcrumb__list {
|
|
|
2948
2962
|
position: absolute !important;
|
|
2949
2963
|
white-space: nowrap !important;
|
|
2950
2964
|
}
|
|
2965
|
+
.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:focus-visible ~ .utrecht-form-toggle__track {
|
|
2966
|
+
/* - The browser default focus ring should apply when these CSS custom properties are not set.
|
|
2967
|
+
* - Make the `box-shadow` value available, so components that have their own `box-shadow`
|
|
2968
|
+
* can combine it with the focus ring box shadow.
|
|
2969
|
+
*/
|
|
2970
|
+
--_utrecht-focus-ring-box-shadow: 0 0 0 var(--utrecht-focus-outline-width, 0)
|
|
2971
|
+
var(--utrecht-focus-inverse-outline-color, transparent);
|
|
2972
|
+
box-shadow: var(--_utrecht-focus-ring-box-shadow);
|
|
2973
|
+
outline-color: var(--utrecht-focus-outline-color, revert);
|
|
2974
|
+
outline-offset: var(--utrecht-focus-outline-offset, revert);
|
|
2975
|
+
outline-style: var(--utrecht-focus-outline-style, revert);
|
|
2976
|
+
outline-width: var(--utrecht-focus-outline-width, revert);
|
|
2977
|
+
}
|
|
2951
2978
|
/**
|
|
2952
2979
|
* @license EUPL-1.2
|
|
2953
2980
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
@@ -4562,6 +4589,64 @@ however browsers don't seem to have implemented great looking supixel tweening y
|
|
|
4562
4589
|
outline-style: revert;
|
|
4563
4590
|
}
|
|
4564
4591
|
|
|
4592
|
+
/**
|
|
4593
|
+
* @license EUPL-1.2
|
|
4594
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
4595
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
4596
|
+
*/
|
|
4597
|
+
/**
|
|
4598
|
+
* @license EUPL-1.2
|
|
4599
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
4600
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
4601
|
+
*/
|
|
4602
|
+
.utrecht-data-placeholder {
|
|
4603
|
+
background-color: var(--utrecht-data-placeholder-background-color, currentColor);
|
|
4604
|
+
block-size: 1em;
|
|
4605
|
+
display: inline-block;
|
|
4606
|
+
inline-size: min(100%, var(--utrecht-data-placeholder-max-inline-size));
|
|
4607
|
+
max-inline-size: var(--utrecht-data-placeholder-max-inline-size);
|
|
4608
|
+
min-inline-size: var(--utrecht-data-placeholder-min-inline-size, 10ch);
|
|
4609
|
+
vertical-align: -0.1em;
|
|
4610
|
+
}
|
|
4611
|
+
@media print {
|
|
4612
|
+
.utrecht-data-placeholder {
|
|
4613
|
+
outline-color: currentColor;
|
|
4614
|
+
outline-style: dashed;
|
|
4615
|
+
outline-width: 0.1em;
|
|
4616
|
+
}
|
|
4617
|
+
}
|
|
4618
|
+
@media screen and (prefers-contrast: more) {
|
|
4619
|
+
.utrecht-data-placeholder {
|
|
4620
|
+
background-color: var(--utrecht-data-placeholder-high-contrast-background-color, var(--utrecht-data-placeholder-background-color, currentColor));
|
|
4621
|
+
}
|
|
4622
|
+
}
|
|
4623
|
+
@media screen and (forced-colors: active) {
|
|
4624
|
+
.utrecht-data-placeholder {
|
|
4625
|
+
background-color: GrayText;
|
|
4626
|
+
}
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
.utrecht-data-placeholder--loading {
|
|
4630
|
+
cursor: var(--utrecht-action-busy-cursor, busy);
|
|
4631
|
+
}
|
|
4632
|
+
|
|
4633
|
+
/* class name available only for Storybook */
|
|
4634
|
+
.utrecht-data-placeholder--print {
|
|
4635
|
+
outline-color: currentColor;
|
|
4636
|
+
outline-style: dashed;
|
|
4637
|
+
outline-width: 0.1em;
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4640
|
+
/* class name available only for Storybook */
|
|
4641
|
+
.utrecht-data-placeholder--forced-colors {
|
|
4642
|
+
background-color: GrayText;
|
|
4643
|
+
}
|
|
4644
|
+
|
|
4645
|
+
/* class name available only for Storybook */
|
|
4646
|
+
.utrecht-data-placeholder--high-contrast {
|
|
4647
|
+
cursor: var(--utrecht-action-busy-cursor, busy);
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4565
4650
|
/**
|
|
4566
4651
|
* @license EUPL-1.2
|
|
4567
4652
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.536",
|
|
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": "adbf19be0b3de5a03decbfb977e9807fb3616d51"
|
|
30
30
|
}
|