@seed-design/css 1.2.12 → 1.2.14
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/all.css +3 -0
- package/all.layered.css +3 -0
- package/all.layered.min.css +1 -1
- package/all.min.css +1 -1
- package/package.json +1 -1
- package/recipes/help-bubble.css +3 -0
- package/recipes/help-bubble.layered.css +3 -0
- package/vars/component/menu-sheet.d.ts +2 -2
- package/vars/component/menu-sheet.mjs +2 -2
- package/vars/component/top-navigation.d.ts +0 -9
- package/vars/component/top-navigation.mjs +0 -9
package/all.css
CHANGED
|
@@ -4420,6 +4420,7 @@
|
|
|
4420
4420
|
.seed-help-bubble__positioner {
|
|
4421
4421
|
--popover-z-index: 99;
|
|
4422
4422
|
z-index: calc(var(--popover-z-index) + var(--z-index-offset, 0));
|
|
4423
|
+
max-width: var(--seed-popover-available-width, none);
|
|
4423
4424
|
}
|
|
4424
4425
|
|
|
4425
4426
|
.seed-help-bubble__content {
|
|
@@ -4475,7 +4476,9 @@
|
|
|
4475
4476
|
.seed-help-bubble__body {
|
|
4476
4477
|
gap: var(--seed-dimension-x0_5);
|
|
4477
4478
|
word-break: keep-all;
|
|
4479
|
+
overflow-wrap: break-word;
|
|
4478
4480
|
flex-direction: column;
|
|
4481
|
+
min-width: 0;
|
|
4479
4482
|
display: flex;
|
|
4480
4483
|
}
|
|
4481
4484
|
|
package/all.layered.css
CHANGED
|
@@ -4521,6 +4521,7 @@
|
|
|
4521
4521
|
.seed-help-bubble__positioner {
|
|
4522
4522
|
--popover-z-index: 99;
|
|
4523
4523
|
z-index: calc(var(--popover-z-index) + var(--z-index-offset, 0));
|
|
4524
|
+
max-width: var(--seed-popover-available-width, none);
|
|
4524
4525
|
}
|
|
4525
4526
|
|
|
4526
4527
|
.seed-help-bubble__content {
|
|
@@ -4576,7 +4577,9 @@
|
|
|
4576
4577
|
.seed-help-bubble__body {
|
|
4577
4578
|
gap: var(--seed-dimension-x0_5);
|
|
4578
4579
|
word-break: keep-all;
|
|
4580
|
+
overflow-wrap: break-word;
|
|
4579
4581
|
flex-direction: column;
|
|
4582
|
+
min-width: 0;
|
|
4580
4583
|
display: flex;
|
|
4581
4584
|
}
|
|
4582
4585
|
|