@flytedan/flytebot-design-system 0.12.2 → 0.12.3
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.cjs +29 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +49 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/styles/components.css +7 -3
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -2328,6 +2328,8 @@
|
|
|
2328
2328
|
border-top: 1px solid var(--border);
|
|
2329
2329
|
background: var(--surface-2);
|
|
2330
2330
|
}
|
|
2331
|
+
/* z-index below is a resting default only — Drawer.tsx sets it (and its scrim's) inline
|
|
2332
|
+
via useOverlayLayer(DRAWER_BASE), which wins over this rule (see Popover.tsx). */
|
|
2331
2333
|
.fd-drawer {
|
|
2332
2334
|
position: fixed;
|
|
2333
2335
|
top: 0;
|
|
@@ -2351,9 +2353,11 @@
|
|
|
2351
2353
|
min-width: 0;
|
|
2352
2354
|
}
|
|
2353
2355
|
/* Portaled to document.body and placed by Tooltip.tsx (fixed, anchored geometry), so no
|
|
2354
|
-
overflow: hidden ancestor of the trigger can clip it.
|
|
2355
|
-
|
|
2356
|
-
|
|
2356
|
+
overflow: hidden ancestor of the trigger can clip it. Short labels stay on one line
|
|
2357
|
+
(max-content); a sentence wraps at a readable measure instead of running off-screen.
|
|
2358
|
+
The z-index below is a resting default only — Tooltip.tsx always sets it inline via
|
|
2359
|
+
useOverlayLayer(TOOLTIP_BASE), which wins over this rule and is what actually keeps a
|
|
2360
|
+
tip above whatever popover its trigger happens to be nested inside (see Popover.tsx). */
|
|
2357
2361
|
.fd-tooltip {
|
|
2358
2362
|
position: fixed;
|
|
2359
2363
|
z-index: 150;
|