@utrecht/component-library-css 1.0.0-alpha.573 → 1.0.0-alpha.575
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 +9 -2
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -743,9 +743,14 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
743
743
|
cursor: var(--utrecht-action-disabled-cursor, not-allowed);
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
.utrecht-breadcrumb__link--current
|
|
747
|
-
/*
|
|
746
|
+
.utrecht-breadcrumb__link--current {
|
|
747
|
+
/*
|
|
748
|
+
* `current` should apply to `disabled` links too, and it should override `disabled`.
|
|
749
|
+
* The override is the reason why this selector is not ordered alphabetically.
|
|
750
|
+
*/
|
|
751
|
+
--utrecht-link-current-font-weight: var(--utrecht-breadcrumb-nav-link-current-font-weight, inherit);
|
|
748
752
|
cursor: var(--utrecht-action-inert-cursor, default);
|
|
753
|
+
font-weight: var(--utrecht-breadcrumb-nav-link-current-font-weight, inherit);
|
|
749
754
|
}
|
|
750
755
|
|
|
751
756
|
/* stylelint-disable-next-line block-no-empty */
|
|
@@ -3340,6 +3345,8 @@ so do not apply these styles to an HTML `<dialog>` element without `open` attrib
|
|
|
3340
3345
|
*/
|
|
3341
3346
|
/* stylelint-disable-next-line property-disallowed-list */
|
|
3342
3347
|
height: 100%;
|
|
3348
|
+
/* Remove tooltip from SVG `<title>` element using `pointer-events: none` */
|
|
3349
|
+
pointer-events: none;
|
|
3343
3350
|
/* stylelint-disable-next-line property-disallowed-list */
|
|
3344
3351
|
width: 100%;
|
|
3345
3352
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.575",
|
|
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": "2b2107c947c96482ad07e384026411186e38102d"
|
|
30
30
|
}
|