partforge 0.105.1 → 0.105.2
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/package.json +1 -1
- package/src/framework/chrome.css +16 -3
package/package.json
CHANGED
package/src/framework/chrome.css
CHANGED
|
@@ -481,12 +481,25 @@
|
|
|
481
481
|
.pf-shell[data-pf-rail-layout="dock"] { padding-bottom: var(--pf-rail-inset, 0px); }
|
|
482
482
|
@media (max-width: 719px) {
|
|
483
483
|
/* pane=rail on a phone: stage above, rail docked in the sheet region. The
|
|
484
|
-
|
|
485
|
-
|
|
484
|
+
two rules below override the narrow block's one-pane hiding.
|
|
485
|
+
|
|
486
|
+
The shell keeps its --pf-rail-inset padding in this pane too — the stage
|
|
487
|
+
is the same height whichever pane shows — and the rail is positioned
|
|
488
|
+
absolutely INTO that padding, filling the sheet region's bottom
|
|
489
|
+
--pf-rail-dock-h px. The difference between the two lengths is the strip
|
|
490
|
+
the host draws across the top of the sheet region, and it must stay
|
|
491
|
+
empty: an earlier version zeroed the padding and stacked the rail
|
|
492
|
+
straight under the stage in flow, which sent the stage's bottom
|
|
493
|
+
--pf-rail-inset − --pf-rail-dock-h px (the strip's height) UNDER the
|
|
494
|
+
host's opaque strip — with the viewbar, the view cube and the transport
|
|
495
|
+
bar behind it, unreachable, on every rail-pane sheet position. */
|
|
486
496
|
.pf-shell[data-pf-rail-layout="dock"][data-pf-pane="rail"] .pf-stage { display: block; }
|
|
487
497
|
.pf-shell[data-pf-rail-layout="dock"][data-pf-pane="rail"] .pf-rail {
|
|
488
498
|
display: flex;
|
|
489
|
-
|
|
499
|
+
position: absolute;
|
|
500
|
+
left: 0;
|
|
501
|
+
right: 0;
|
|
502
|
+
bottom: 0;
|
|
490
503
|
height: var(--pf-rail-dock-h, 0px);
|
|
491
504
|
width: auto;
|
|
492
505
|
border-left: 0;
|