anentrypoint-design 0.0.182 → 0.0.184
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 +172 -0
- package/dist/247420.js +10 -10
- package/package.json +1 -1
package/dist/247420.css
CHANGED
|
@@ -4819,6 +4819,21 @@
|
|
|
4819
4819
|
the tab body instead of collapsing under a block container. */
|
|
4820
4820
|
.ds-247420 .ds-ep-tabs-body { flex: 1; min-height: 0; overflow: auto; display: flex; flex-direction: column; }
|
|
4821
4821
|
|
|
4822
|
+
/* EventLog — dense console-style log rows (one event per line). */
|
|
4823
|
+
.ds-247420 .ds-ep-eventlog {
|
|
4824
|
+
display: flex; flex-direction: column;
|
|
4825
|
+
font: var(--fs-tiny, 12px)/1.4 var(--ff-mono, monospace);
|
|
4826
|
+
color: var(--panel-text);
|
|
4827
|
+
}
|
|
4828
|
+
.ds-247420 .ds-ep-eventrow {
|
|
4829
|
+
display: flex; align-items: baseline; gap: 8px;
|
|
4830
|
+
padding: 3px 8px;
|
|
4831
|
+
border-bottom: 1px solid color-mix(in oklab, var(--rule) 50%, transparent);
|
|
4832
|
+
}
|
|
4833
|
+
.ds-247420 .ds-ep-eventrow:hover { background: color-mix(in oklab, var(--accent) 6%, transparent); }
|
|
4834
|
+
.ds-247420 .ds-ep-eventrow-type { color: var(--panel-text); font-weight: 600; flex-shrink: 0; }
|
|
4835
|
+
.ds-247420 .ds-ep-eventrow-sub { color: var(--panel-text-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
4836
|
+
|
|
4822
4837
|
/* TreeView / TreeItem */
|
|
4823
4838
|
.ds-247420 .ds-ep-tree {
|
|
4824
4839
|
display: flex; flex-direction: column;
|
|
@@ -4905,6 +4920,84 @@
|
|
|
4905
4920
|
font-size: 0.8em;
|
|
4906
4921
|
color: var(--panel-text-3);
|
|
4907
4922
|
}
|
|
4923
|
+
/* x/y/z packed on one row, each field equal width, no horizontal overflow. */
|
|
4924
|
+
.ds-247420 .ds-ep-vec3 {
|
|
4925
|
+
display: flex; gap: 4px; width: 100%; min-width: 0;
|
|
4926
|
+
}
|
|
4927
|
+
.ds-247420 .ds-ep-vec3 > * { flex: 1 1 0; min-width: 0; }
|
|
4928
|
+
/* Each axis cell (axis letter + scrub input) must show its full 3-decimal value
|
|
4929
|
+
without clipping. The axis letter is a fixed micro-glyph; the input flexes to
|
|
4930
|
+
fill the rest with tight padding and centered text so 0.000 / -0.0 / 1.000 are
|
|
4931
|
+
always legible even in the narrow 3-up layout. */
|
|
4932
|
+
.ds-247420 .ds-ep-vec3 > * {
|
|
4933
|
+
display: flex; align-items: center; gap: 2px;
|
|
4934
|
+
}
|
|
4935
|
+
.ds-247420 .ds-ep-vec3 .ds-ep-propfield-hint {
|
|
4936
|
+
flex: 0 0 auto; width: 9px; text-align: center;
|
|
4937
|
+
grid-column: auto; font-size: 0.8em; opacity: 0.7;
|
|
4938
|
+
}
|
|
4939
|
+
.ds-247420 .ds-ep-vec3 .ds-input-bare {
|
|
4940
|
+
flex: 1 1 auto; min-width: 0; width: auto;
|
|
4941
|
+
padding: 2px 4px; text-align: center; text-overflow: clip;
|
|
4942
|
+
}
|
|
4943
|
+
/* Dense numeric inputs in the inspector — compact, tight radius, mono. */
|
|
4944
|
+
.ds-247420 .ds-ep-propfield-value input,
|
|
4945
|
+
.ds-247420 .ds-ep-propfield-value .ds-input-bare {
|
|
4946
|
+
padding: 2px 6px;
|
|
4947
|
+
border-radius: var(--r-1, 4px);
|
|
4948
|
+
font: var(--fs-tiny, 12px)/1.3 var(--ff-mono, monospace);
|
|
4949
|
+
}
|
|
4950
|
+
.ds-247420 .ds-input-bare {
|
|
4951
|
+
appearance: none;
|
|
4952
|
+
background: var(--panel-2);
|
|
4953
|
+
color: var(--panel-text);
|
|
4954
|
+
border: 1px solid var(--rule);
|
|
4955
|
+
border-radius: var(--r-1, 4px);
|
|
4956
|
+
padding: 2px 6px;
|
|
4957
|
+
font: var(--fs-tiny, 12px)/1.3 var(--ff-mono, monospace);
|
|
4958
|
+
min-width: 0;
|
|
4959
|
+
}
|
|
4960
|
+
.ds-247420 .ds-input-bare:focus { outline: none; border-color: var(--accent); }
|
|
4961
|
+
/* A property field whose control spans the full panel width (label above,
|
|
4962
|
+
control below) — used for wide segmented controls that would clip in the
|
|
4963
|
+
narrow value column. */
|
|
4964
|
+
.ds-247420 .ds-ep-propfield.block {
|
|
4965
|
+
display: flex; flex-direction: column; align-items: stretch; gap: 4px;
|
|
4966
|
+
}
|
|
4967
|
+
.ds-247420 .ds-ep-propfield.block > .ds-ep-propfield-value { width: 100%; }
|
|
4968
|
+
.ds-247420 .ds-ep-propfield.block .ds-ep-btngrp { width: 100%; }
|
|
4969
|
+
.ds-247420 .ds-ep-propfield.block .ds-ep-btngrp-btn { flex: 1 1 0; text-align: center; }
|
|
4970
|
+
|
|
4971
|
+
/* Flush dense action bar docked at a panel bottom (inspector Edit/Delete etc.).
|
|
4972
|
+
Compact buttons, square-ish, bordered top — not big floating pills. */
|
|
4973
|
+
.ds-247420 .ds-ep-actionbar {
|
|
4974
|
+
flex-shrink: 0;
|
|
4975
|
+
display: flex; align-items: center; gap: 6px;
|
|
4976
|
+
padding: 6px 8px;
|
|
4977
|
+
border-top: 1px solid var(--rule);
|
|
4978
|
+
background: var(--panel-1);
|
|
4979
|
+
}
|
|
4980
|
+
.ds-247420 .ds-ep-actionbar > * { flex: 1 1 0; }
|
|
4981
|
+
.ds-247420 .ds-ep-actionbar button {
|
|
4982
|
+
width: 100%;
|
|
4983
|
+
min-height: 28px; height: 28px; padding: 0 10px;
|
|
4984
|
+
border-radius: var(--r-1, 4px);
|
|
4985
|
+
font: var(--fs-tiny, 12px)/1 var(--ff-mono, monospace);
|
|
4986
|
+
}
|
|
4987
|
+
|
|
4988
|
+
/* Inline buttons inside a tree row (e.g. app-list Place) and the editor toolbars
|
|
4989
|
+
are compact — small, square-ish, not big pills. Excludes the segmented
|
|
4990
|
+
IconButtonGroup which manages its own sizing. */
|
|
4991
|
+
.ds-247420 .ds-ep-tree-row button:not(.ds-ep-btngrp-btn),
|
|
4992
|
+
.ds-247420 .ds-ep-toolbar button:not(.ds-ep-btngrp-btn) {
|
|
4993
|
+
min-height: 24px; height: 24px; padding: 0 8px;
|
|
4994
|
+
border-radius: var(--r-1, 4px);
|
|
4995
|
+
font: var(--fs-tiny, 12px)/1 var(--ff-mono, monospace);
|
|
4996
|
+
}
|
|
4997
|
+
@media (pointer: coarse) {
|
|
4998
|
+
.ds-247420 .ds-ep-tree-row button:not(.ds-ep-btngrp-btn),
|
|
4999
|
+
.ds-247420 .ds-ep-toolbar button:not(.ds-ep-btngrp-btn) { min-height: 36px; height: 36px; }
|
|
5000
|
+
}
|
|
4908
5001
|
|
|
4909
5002
|
/* Dock — 3x3 grid for in-engine overlay (canvas pass-through center) */
|
|
4910
5003
|
.ds-247420 .ds-ep-dock {
|
|
@@ -5677,6 +5770,85 @@
|
|
|
5677
5770
|
.ds-247420 .ov-lightbox-video { max-width: 92vw; max-height: 82vh; border-radius: var(--r-1); background: #000; /* true black media letterbox, intentional */ }
|
|
5678
5771
|
.ds-247420 .ov-lightbox-label { color: var(--on-color); font-size: var(--fs-0, 12px); opacity: .85; }
|
|
5679
5772
|
|
|
5773
|
+
/* ---------------------------------------------------------------
|
|
5774
|
+
Editor-primitive scrollbars — thin, dark, themed so docked panels
|
|
5775
|
+
don't show a fat light OS scrollbar over the dark engine chrome.
|
|
5776
|
+
--------------------------------------------------------------- */
|
|
5777
|
+
.ds-247420 .ds-ep-panel,
|
|
5778
|
+
.ds-247420 .ds-ep-panel-body,
|
|
5779
|
+
.ds-247420 .ds-ep-tree,
|
|
5780
|
+
.ds-247420 .ds-ep-eventlog,
|
|
5781
|
+
.ds-247420 .ds-ep-drawer { scrollbar-width: thin; scrollbar-color: var(--rule) transparent; }
|
|
5782
|
+
.ds-247420 .ds-ep-panel ::-webkit-scrollbar,
|
|
5783
|
+
.ds-247420 .ds-ep-panel-body::-webkit-scrollbar,
|
|
5784
|
+
.ds-247420 .ds-ep-tree::-webkit-scrollbar,
|
|
5785
|
+
.ds-247420 .ds-ep-eventlog::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
5786
|
+
.ds-247420 .ds-ep-panel ::-webkit-scrollbar-track,
|
|
5787
|
+
.ds-247420 .ds-ep-panel-body::-webkit-scrollbar-track,
|
|
5788
|
+
.ds-247420 .ds-ep-tree::-webkit-scrollbar-track,
|
|
5789
|
+
.ds-247420 .ds-ep-eventlog::-webkit-scrollbar-track { background: transparent; }
|
|
5790
|
+
.ds-247420 .ds-ep-panel ::-webkit-scrollbar-thumb,
|
|
5791
|
+
.ds-247420 .ds-ep-panel-body::-webkit-scrollbar-thumb,
|
|
5792
|
+
.ds-247420 .ds-ep-tree::-webkit-scrollbar-thumb,
|
|
5793
|
+
.ds-247420 .ds-ep-eventlog::-webkit-scrollbar-thumb {
|
|
5794
|
+
background: var(--rule); border-radius: var(--r-pill, 999px);
|
|
5795
|
+
border: 2px solid transparent; background-clip: padding-box;
|
|
5796
|
+
}
|
|
5797
|
+
.ds-247420 .ds-ep-panel ::-webkit-scrollbar-thumb:hover,
|
|
5798
|
+
.ds-247420 .ds-ep-panel-body::-webkit-scrollbar-thumb:hover {
|
|
5799
|
+
background: var(--panel-text-3, var(--rule)); background-clip: padding-box;
|
|
5800
|
+
}
|
|
5801
|
+
|
|
5802
|
+
/* ---------------------------------------------------------------
|
|
5803
|
+
Dense app-prop inputs — color swatch + checkbox sized to match the
|
|
5804
|
+
engine-editor density (raw browser controls otherwise read as jank).
|
|
5805
|
+
--------------------------------------------------------------- */
|
|
5806
|
+
/* Specificity bump (.ds-ep-propfield-value prefix) so the sized swatch/check win
|
|
5807
|
+
over the generic `.ds-ep-propfield-value input { width:100% }` rule — otherwise
|
|
5808
|
+
a color/checkbox app-prop stretches to the full field width and reads as jank. */
|
|
5809
|
+
.ds-247420 .ds-ep-propfield-value input.ds-input-color { width: 28px; flex: 0 0 auto; }
|
|
5810
|
+
.ds-247420 .ds-ep-propfield-value input.ds-input-check { width: 16px; flex: 0 0 auto; }
|
|
5811
|
+
.ds-247420 .ds-input-color {
|
|
5812
|
+
appearance: none; -webkit-appearance: none;
|
|
5813
|
+
width: 28px; height: 22px; padding: 0;
|
|
5814
|
+
border: 1px solid var(--rule); border-radius: var(--r-1, 4px);
|
|
5815
|
+
background: var(--panel-2); cursor: pointer; flex-shrink: 0;
|
|
5816
|
+
}
|
|
5817
|
+
.ds-247420 .ds-input-color::-webkit-color-swatch-wrapper { padding: 2px; }
|
|
5818
|
+
.ds-247420 .ds-input-color::-webkit-color-swatch { border: none; border-radius: 2px; }
|
|
5819
|
+
.ds-247420 .ds-input-color:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
|
|
5820
|
+
.ds-247420 .ds-input-check {
|
|
5821
|
+
appearance: none; -webkit-appearance: none;
|
|
5822
|
+
width: 16px; height: 16px; flex-shrink: 0;
|
|
5823
|
+
border: 1px solid var(--rule); border-radius: var(--r-1, 4px);
|
|
5824
|
+
background: var(--panel-2); cursor: pointer; position: relative;
|
|
5825
|
+
}
|
|
5826
|
+
.ds-247420 .ds-input-check:checked { background: var(--accent); border-color: var(--accent); }
|
|
5827
|
+
.ds-247420 .ds-input-check:checked::after {
|
|
5828
|
+
content: ''; position: absolute; left: 4px; top: 1px;
|
|
5829
|
+
width: 4px; height: 8px; border: solid var(--accent-fg, #fff);
|
|
5830
|
+
border-width: 0 2px 2px 0; transform: rotate(45deg);
|
|
5831
|
+
}
|
|
5832
|
+
.ds-247420 .ds-input-check:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
|
|
5833
|
+
|
|
5834
|
+
/* ---------------------------------------------------------------
|
|
5835
|
+
Tree drag-reparent affordance — clear drop target + dragging row.
|
|
5836
|
+
useDropTarget marks the active row with [data-drop-target-active]; the
|
|
5837
|
+
dragged source carries [data-dragging]. Both surfaced as visible state so a
|
|
5838
|
+
reparent drag shows exactly where it will land.
|
|
5839
|
+
--------------------------------------------------------------- */
|
|
5840
|
+
.ds-247420 .ds-ep-tree-item[data-drop-target-active] > .ds-ep-tree-row,
|
|
5841
|
+
.ds-247420 .ds-ep-tree-row[data-drop-target-active],
|
|
5842
|
+
.ds-247420 .ds-ep-tree-row.drag-over {
|
|
5843
|
+
background: color-mix(in oklab, var(--accent) 22%, transparent);
|
|
5844
|
+
box-shadow: inset 0 0 0 1px var(--accent);
|
|
5845
|
+
}
|
|
5846
|
+
.ds-247420 .ds-ep-panel-body[data-drop-target-active] {
|
|
5847
|
+
box-shadow: inset 0 0 0 2px color-mix(in oklab, var(--accent) 50%, transparent);
|
|
5848
|
+
}
|
|
5849
|
+
.ds-247420 .ds-ep-tree-item[data-dragging] > .ds-ep-tree-row,
|
|
5850
|
+
.ds-247420 .ds-ep-tree-item.dragging > .ds-ep-tree-row { opacity: 0.5; }
|
|
5851
|
+
|
|
5680
5852
|
/* community-app.css */
|
|
5681
5853
|
/* community-app.css — layout glue for mountCommunityApp (the full chat/community
|
|
5682
5854
|
app GUI). Reuses the canonical app/body/main classes from app-shell.css and
|