anentrypoint-design 0.0.184 → 0.0.185

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/dist/247420.css CHANGED
@@ -5849,6 +5849,60 @@
5849
5849
  .ds-247420 .ds-ep-tree-item[data-dragging] > .ds-ep-tree-row,
5850
5850
  .ds-247420 .ds-ep-tree-item.dragging > .ds-ep-tree-row { opacity: 0.5; }
5851
5851
 
5852
+ /* ---------------------------------------------------------------
5853
+ Floating editor docks — the non-occluding idiom. The game/3D
5854
+ viewport fills the whole editor stage; the hierarchy + inspector
5855
+ ride over it as translucent, backdrop-blurred, collapsible cards
5856
+ so the play area stays visible (and clickable) behind them. The
5857
+ dock layer is pointer-events:none; only the dock cards capture
5858
+ input, so the exposed viewport gutter clicks through to the canvas.
5859
+ --------------------------------------------------------------- */
5860
+ .ds-247420 .ds-ep-stage { position: relative; flex: 1; min-height: 0; overflow: hidden; }
5861
+ .ds-247420 .ds-ep-dock-layer { display: block; }
5862
+ .ds-247420 .ds-ep-dock {
5863
+ position: absolute; top: 8px; bottom: 8px;
5864
+ display: flex; flex-direction: column;
5865
+ width: 280px; max-width: calc(50% - 12px);
5866
+ pointer-events: all;
5867
+ background: color-mix(in oklab, var(--panel-1) 82%, transparent);
5868
+ -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
5869
+ border: 1px solid var(--rule);
5870
+ border-radius: var(--r-2, 8px);
5871
+ box-shadow: 0 6px 24px color-mix(in oklab, #000 28%, transparent);
5872
+ color: var(--panel-text);
5873
+ overflow: hidden;
5874
+ }
5875
+ .ds-247420 .ds-ep-dock-left { left: 8px; }
5876
+ .ds-247420 .ds-ep-dock-right { right: 8px; }
5877
+ /* Collapsed: shrink to just the header strip, freeing the viewport. */
5878
+ .ds-247420 .ds-ep-dock.collapsed { bottom: auto; height: auto; }
5879
+ .ds-247420 .ds-ep-dock-head {
5880
+ display: flex; align-items: center; gap: 6px;
5881
+ flex: 0 0 auto; padding: 4px 6px 4px 10px;
5882
+ border-bottom: 1px solid var(--rule);
5883
+ background: color-mix(in oklab, var(--panel-1) 60%, transparent);
5884
+ }
5885
+ .ds-247420 .ds-ep-dock.collapsed .ds-ep-dock-head { border-bottom: 0; }
5886
+ .ds-247420 .ds-ep-dock-title {
5887
+ flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
5888
+ font: 8px/1 var(--ff-mono, monospace); text-transform: uppercase; letter-spacing: 0.12em;
5889
+ color: var(--panel-text-3);
5890
+ }
5891
+ .ds-247420 .ds-ep-dock-body { flex: 1; min-height: 0; display: flex; flex-direction: column; overflow: hidden; background: transparent; }
5892
+ .ds-247420 .ds-ep-dock-body.hidden { display: none; }
5893
+ /* The right dock's body reuses .ds-ep-panel but must stay transparent so the
5894
+ dock's own translucency/blur shows the game view through. */
5895
+ .ds-247420 .ds-ep-dock-body.ds-ep-panel { background: transparent; }
5896
+
5897
+ /* Mobile: docks become full-width bottom-anchored sheets so they don't crowd
5898
+ the narrow viewport side-by-side; the viewport still fills the stage behind. */
5899
+ @media (max-width: 760px) {
5900
+ .ds-247420 .ds-ep-dock { width: auto; max-width: none; left: 6px; right: 6px; top: auto; bottom: 6px; max-height: 46vh; }
5901
+ .ds-247420 .ds-ep-dock-left { bottom: calc(46vh + 12px); max-height: 40vh; }
5902
+ .ds-247420 .ds-ep-dock.collapsed { bottom: auto; }
5903
+ .ds-247420 .ds-ep-dock-left.collapsed { top: 6px; bottom: auto; }
5904
+ }
5905
+
5852
5906
  /* community-app.css */
5853
5907
  /* community-app.css — layout glue for mountCommunityApp (the full chat/community
5854
5908
  app GUI). Reuses the canonical app/body/main classes from app-shell.css and