@companycam/slab-web 2.3.4 → 2.4.0
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/index.js +9 -0
- package/index.mjs +917 -908
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2266,6 +2266,15 @@
|
|
|
2266
2266
|
overflow-x: auto;
|
|
2267
2267
|
white-space: nowrap;
|
|
2268
2268
|
|
|
2269
|
+
/*
|
|
2270
|
+
Contain the table's internal z-indexes, e.g. the row-link overlay and the
|
|
2271
|
+
cell content that has to sit above it. Without this, those z-indexes
|
|
2272
|
+
participate in the root stacking context and can conflict with portaled
|
|
2273
|
+
overlays (e.g. a Popover) rendered elsewhere on the page. This can lead
|
|
2274
|
+
to those elements being painted underneath the table cell content.
|
|
2275
|
+
*/
|
|
2276
|
+
isolation: isolate;
|
|
2277
|
+
|
|
2269
2278
|
/* if ccMargin is specified in props, convert spacing tokens to CSS variables */
|
|
2270
2279
|
${e=>e.$ccMargin?R.css`
|
|
2271
2280
|
margin: ${lt(e.$ccMargin)};
|