anentrypoint-design 0.0.234 → 0.0.235
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/app-shell.css +5 -1
- package/dist/247420.css +5 -1
- package/dist/247420.js +11 -11
- package/package.json +1 -1
package/app-shell.css
CHANGED
|
@@ -3505,7 +3505,11 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
|
|
|
3505
3505
|
/* Expand/collapse is meaningless on the icon strip. */
|
|
3506
3506
|
.ws-rail-toggle { display: none; }
|
|
3507
3507
|
.ws-rail-foot { display: flex; justify-content: center; }
|
|
3508
|
-
|
|
3508
|
+
/* The 1100px rule's closed-state translateX(-110%) was sized for left:0;
|
|
3509
|
+
once left shifts to the collapsed rail width, -110% no longer clears the
|
|
3510
|
+
viewport and leaves a sliver of the "closed" drawer visible on screen. */
|
|
3511
|
+
.ws-sessions { inset: 0 auto 0 var(--ws-rail-w-collapsed); transform: translateX(calc(-100% - var(--ws-rail-w-collapsed))); }
|
|
3512
|
+
.ws-shell.ws-sessions-open .ws-sessions { transform: translateX(0); }
|
|
3509
3513
|
.ws-content { grid-area: content; padding-left: var(--ws-rail-w-collapsed); }
|
|
3510
3514
|
/* The Crumb's narrow collapse elsewhere keys on the .app @container, which
|
|
3511
3515
|
does not exist inside WorkspaceShell - mirror it here so the crumb bar
|
package/dist/247420.css
CHANGED
|
@@ -3996,7 +3996,11 @@
|
|
|
3996
3996
|
/* Expand/collapse is meaningless on the icon strip. */
|
|
3997
3997
|
.ds-247420 .ws-rail-toggle { display: none; }
|
|
3998
3998
|
.ds-247420 .ws-rail-foot { display: flex; justify-content: center; }
|
|
3999
|
-
|
|
3999
|
+
/* The 1100px rule's closed-state translateX(-110%) was sized for left:0;
|
|
4000
|
+
once left shifts to the collapsed rail width, -110% no longer clears the
|
|
4001
|
+
viewport and leaves a sliver of the "closed" drawer visible on screen. */
|
|
4002
|
+
.ds-247420 .ws-sessions { inset: 0 auto 0 var(--ws-rail-w-collapsed); transform: translateX(calc(-100% - var(--ws-rail-w-collapsed))); }
|
|
4003
|
+
.ds-247420 .ws-shell.ws-sessions-open .ws-sessions { transform: translateX(0); }
|
|
4000
4004
|
.ds-247420 .ws-content { grid-area: content; padding-left: var(--ws-rail-w-collapsed); }
|
|
4001
4005
|
/* The Crumb's narrow collapse elsewhere keys on the .app @container, which
|
|
4002
4006
|
does not exist inside WorkspaceShell - mirror it here so the crumb bar
|