feat: add structured placement properties

This commit is contained in:
2026-08-03 00:00:42 -04:00
parent a8f902ceb5
commit 293cff6c36
10 changed files with 95 additions and 10 deletions

View File

@@ -399,3 +399,9 @@ button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px s
.workbench-nav { overflow-x: auto; }
.workbench-nav .nav-more, .nav-caption { display: none; }
}
.property-placement { width: 100%; }
.property-placement summary { cursor: pointer; color: var(--text); font-size: 11px; }
.property-placement-grid { display: grid; grid-template-columns: 42px repeat(3, minmax(0, 1fr)); gap: 4px; margin-top: 6px; align-items: center; }
.property-placement-grid span { color: var(--text-muted); font-size: 10px; }
.property-placement-grid input, .property-vector input { min-width: 0; width: 100%; height: 24px; border: 1px solid var(--line); background: var(--bg-soft); color: var(--text); padding: 2px 4px; }
.property-vector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; width: 100%; }