@visma-swno/vsn-navigation 1.8.0-beta.6 → 1.8.0-beta.7
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.
|
@@ -2948,16 +2948,16 @@ var Y = class extends e {
|
|
|
2948
2948
|
vertical-align: bottom;
|
|
2949
2949
|
}
|
|
2950
2950
|
|
|
2951
|
-
.ga-breadcrumb--truncate-current .ga-breadcrumb-item.ga-breadcrumb-item--current-page {
|
|
2951
|
+
:is(.ga-breadcrumb--truncate-current, .ga-breadcrumb--mobile) .ga-breadcrumb-item.ga-breadcrumb-item--current-page {
|
|
2952
2952
|
min-width: 0;
|
|
2953
2953
|
}
|
|
2954
2954
|
|
|
2955
|
-
.ga-breadcrumb--truncate-current .ga-breadcrumb-item.ga-breadcrumb-item--current-page .ga-breadcrumb-item__trigger {
|
|
2955
|
+
:is(.ga-breadcrumb--truncate-current, .ga-breadcrumb--mobile) .ga-breadcrumb-item.ga-breadcrumb-item--current-page .ga-breadcrumb-item__trigger {
|
|
2956
2956
|
min-width: 0;
|
|
2957
2957
|
max-width: 100%;
|
|
2958
2958
|
}
|
|
2959
2959
|
|
|
2960
|
-
.ga-breadcrumb--truncate-current .ga-breadcrumb-item.ga-breadcrumb-item--current-page .ga-breadcrumb-item__trigger .ga-breadcrumb-item__label {
|
|
2960
|
+
:is(.ga-breadcrumb--truncate-current, .ga-breadcrumb--mobile) .ga-breadcrumb-item.ga-breadcrumb-item--current-page .ga-breadcrumb-item__trigger .ga-breadcrumb-item__label {
|
|
2961
2961
|
max-width: 100%;
|
|
2962
2962
|
}
|
|
2963
2963
|
|
|
@@ -3341,7 +3341,7 @@ var Y = class extends e {
|
|
|
3341
3341
|
render() {
|
|
3342
3342
|
return n`
|
|
3343
3343
|
<nav aria-label=${_("Breadcrumb")}>
|
|
3344
|
-
<div class="ga-breadcrumb ${this._truncateCurrent ? "ga-breadcrumb--truncate-current" : ""}">
|
|
3344
|
+
<div class="ga-breadcrumb ${this._truncateCurrent ? "ga-breadcrumb--truncate-current" : ""} ${this._displayMode === "mobile" ? "ga-breadcrumb--mobile" : ""}">
|
|
3345
3345
|
${this._displayMode === "overflow" ? this._renderOverflowBreadcrumbs() : this._renderMobileBreadcrumbs()}
|
|
3346
3346
|
</div>
|
|
3347
3347
|
<div id="vsn-breadcrumb-tooltip" role="tooltip" popover="manual"
|