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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "partforge",
3
- "version": "0.105.1",
3
+ "version": "0.105.2",
4
4
  "description": "Turn a declarative part definition into a parametric-CAD web app (three.js + Manifold/Replicad). Requires a Vite-based consumer.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -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
- three rules below override the narrow block's one-pane hiding. */
485
- .pf-shell[data-pf-rail-layout="dock"][data-pf-pane="rail"] { padding-bottom: 0; }
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
- flex: none;
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;