dsh-pocket 1.11.2 → 1.11.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/client/client.js +10 -2
- package/client/mobile/mobile.css.ts +10 -2
- package/package.json +1 -1
package/client/client.js
CHANGED
|
@@ -458,13 +458,21 @@ var MOBILE_CSS = `
|
|
|
458
458
|
the viewport. A mere -100% leaves a sliver on screen; -105% (as used
|
|
459
459
|
before) left 14px of the drawer plus a long 32px-blur shadow gradient
|
|
460
460
|
visible along the left edge of the main UI. No box-shadow at all: the
|
|
461
|
-
dimmed backdrop already separates drawer from content.
|
|
461
|
+
dimmed backdrop already separates drawer from content.
|
|
462
|
+
Z-index note: the backdrop renders inside the shell's overlay layer
|
|
463
|
+
([data-shell-overlay]), which forms its own stacking context. Third-party
|
|
464
|
+
plugins can force that layer up with !important (dsh-update-checker sets
|
|
465
|
+
it to 500), and when the layer outranks the drawer, the backdrop paints
|
|
466
|
+
ABOVE the drawer and swallows every tap \u2014 the drawer opens but no row
|
|
467
|
+
can be pressed (every tap just closes it). The drawer must therefore
|
|
468
|
+
outrank any such raise: 600 clears the known 500 while staying under the
|
|
469
|
+
fixed-position banners/toasts (z 9999) that float at the viewport level. */
|
|
462
470
|
[data-mobile-nav="frame"] > :first-child {
|
|
463
471
|
position: absolute !important;
|
|
464
472
|
inset: 0 auto 0 0 !important;
|
|
465
473
|
width: max-content !important;
|
|
466
474
|
max-width: 92vw !important;
|
|
467
|
-
z-index:
|
|
475
|
+
z-index: 600 !important;
|
|
468
476
|
transform: translateX(-110%);
|
|
469
477
|
transition: transform .28s var(--ds-ease-in-out, ease-in-out);
|
|
470
478
|
background: var(--dsw-alias-bg-base, #ffffff);
|
|
@@ -197,13 +197,21 @@ export const MOBILE_CSS = `
|
|
|
197
197
|
the viewport. A mere -100% leaves a sliver on screen; -105% (as used
|
|
198
198
|
before) left 14px of the drawer plus a long 32px-blur shadow gradient
|
|
199
199
|
visible along the left edge of the main UI. No box-shadow at all: the
|
|
200
|
-
dimmed backdrop already separates drawer from content.
|
|
200
|
+
dimmed backdrop already separates drawer from content.
|
|
201
|
+
Z-index note: the backdrop renders inside the shell's overlay layer
|
|
202
|
+
([data-shell-overlay]), which forms its own stacking context. Third-party
|
|
203
|
+
plugins can force that layer up with !important (dsh-update-checker sets
|
|
204
|
+
it to 500), and when the layer outranks the drawer, the backdrop paints
|
|
205
|
+
ABOVE the drawer and swallows every tap — the drawer opens but no row
|
|
206
|
+
can be pressed (every tap just closes it). The drawer must therefore
|
|
207
|
+
outrank any such raise: 600 clears the known 500 while staying under the
|
|
208
|
+
fixed-position banners/toasts (z 9999) that float at the viewport level. */
|
|
201
209
|
[data-mobile-nav="frame"] > :first-child {
|
|
202
210
|
position: absolute !important;
|
|
203
211
|
inset: 0 auto 0 0 !important;
|
|
204
212
|
width: max-content !important;
|
|
205
213
|
max-width: 92vw !important;
|
|
206
|
-
z-index:
|
|
214
|
+
z-index: 600 !important;
|
|
207
215
|
transform: translateX(-110%);
|
|
208
216
|
transition: transform .28s var(--ds-ease-in-out, ease-in-out);
|
|
209
217
|
background: var(--dsw-alias-bg-base, #ffffff);
|
package/package.json
CHANGED