| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| .h3e-root, |
| .h3rc-preview { |
| |
| |
| |
| |
| |
| |
| |
| --h3-bg: #0a0a0a; |
| --h3-panel: #111111; |
| --h3-sunken: #0d0d0d; |
| --h3-border: #2a2a2a; |
| --h3-border-soft: #1c1c1c; |
|
|
| --h3-text: #e8e8e8; |
| --h3-muted: #9a9a9a; |
| --h3-faint: #6a6a6a; |
|
|
| |
| --h3-accent: #e8ff47; |
| --h3-accent-soft: color-mix(in srgb, var(--h3-accent) 10%, transparent); |
| --h3-accent-wash: color-mix(in srgb, var(--h3-accent) 4%, transparent); |
| |
| --h3-on-accent: #101010; |
| --h3-warn: #ffb020; |
| --h3-error: #ff3b30; |
| --h3-ok: #5fbf7a; |
|
|
| |
| --h3-gap: 8px; |
| --h3-gap-sm: 5px; |
| |
| |
| --h3-radius: 0px; |
| --h3-radius-sm: 0px; |
| --h3-row-h: 28px; |
|
|
| |
| |
| |
| --h3-fs-xs: 9px; |
| --h3-fs-sm: 10px; |
| --h3-fs: 11px; |
| --h3-fs-lg: 12px; |
| --h3-weight-label: 700; |
| |
| --h3-track: .14em; |
|
|
| box-sizing: border-box; |
| color: var(--h3-text); |
| font: var(--h3-fs-lg)/1.4 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; |
| } |
|
|
| .h3e-root *, |
| .h3e-root *::before, |
| .h3e-root *::after, |
| .h3rc-preview *, |
| .h3rc-preview *::before, |
| .h3rc-preview *::after { box-sizing: border-box; } |
|
|
| |
|
|
| .h3e-root { |
| display: flex; |
| flex-direction: column; |
| gap: var(--h3-gap); |
| width: 100%; |
| height: 100%; |
| min-height: 0; |
| padding: 2px; |
| |
| |
| overflow: hidden; |
| } |
|
|
| |
| |
| .h3e-section { container-type: inline-size; } |
|
|
| .h3e-section { |
| background: var(--h3-bg); |
| border: 1px solid var(--h3-border); |
| border-radius: var(--h3-radius); |
| padding: var(--h3-gap); |
| } |
|
|
| |
| .h3e-head { |
| position: sticky; |
| top: calc(var(--h3-gap) * -1); |
| z-index: 4; |
| display: flex; |
| align-items: center; |
| gap: var(--h3-gap-sm); |
| margin: 0 0 var(--h3-gap); |
| padding: 4px 0; |
| background: var(--h3-bg); |
| } |
|
|
| .h3e-title { |
| font-size: var(--h3-fs-sm); |
| font-weight: var(--h3-weight-label); |
| letter-spacing: var(--h3-track); |
| text-transform: uppercase; |
| color: var(--h3-text); |
| } |
| .h3e-count { font-size: var(--h3-fs-sm); color: var(--h3-faint); font-variant-numeric: tabular-nums; } |
| .h3e-spacer { flex: 1; } |
|
|
| |
|
|
| .h3e-root button, |
| .h3e-root input, |
| .h3e-root select, |
| .h3e-root textarea { |
| font: inherit; |
| color: var(--h3-text); |
| background: var(--h3-sunken); |
| border: 1px solid var(--h3-border); |
| border-radius: var(--h3-radius-sm); |
| padding: 5px 7px; |
| min-width: 0; |
| transition: border-color .13s ease, background-color .13s ease, opacity .13s ease; |
| } |
|
|
| .h3e-root textarea { resize: vertical; line-height: 1.45; } |
|
|
| .h3e-root button { cursor: pointer; white-space: nowrap; background: var(--h3-panel); } |
| .h3e-root button:hover { border-color: var(--h3-accent); } |
| .h3e-root button:active { background: color-mix(in srgb, var(--h3-accent) 22%, var(--h3-panel)); } |
| .h3e-root button:disabled { cursor: not-allowed; opacity: .4; } |
|
|
| .h3e-root input:hover, |
| .h3e-root select:hover, |
| .h3e-root textarea:hover { border-color: color-mix(in srgb, var(--h3-accent) 55%, var(--h3-border)); } |
|
|
| |
| .h3e-root :focus-visible { |
| outline: 2px solid var(--h3-accent); |
| outline-offset: 1px; |
| border-color: var(--h3-accent); |
| } |
|
|
| .h3e-btn { padding: 5px 9px; } |
| .h3e-x { |
| padding: 4px 8px; |
| color: var(--h3-error); |
| background: transparent; |
| border-color: var(--h3-border-soft); |
| } |
| .h3e-x:hover { border-color: var(--h3-error); background: color-mix(in srgb, var(--h3-error) 14%, transparent); } |
|
|
| |
|
|
| .h3e-modes { display: flex; border: 1px solid var(--h3-border); border-radius: var(--h3-radius-sm); overflow: hidden; } |
| .h3e-root .h3e-mode { |
| border: 0; |
| border-radius: 0; |
| background: var(--h3-sunken); |
| color: var(--h3-muted); |
| padding: 5px 12px; |
| font-size: 11px; |
| } |
| .h3e-root .h3e-mode:hover { background: color-mix(in srgb, var(--h3-accent) 12%, var(--h3-sunken)); color: var(--h3-text); } |
| .h3e-root .h3e-mode[aria-pressed="true"], |
| .h3e-root .h3e-mode.h3e-on { |
| background: color-mix(in srgb, var(--h3-accent) 34%, var(--h3-sunken)); |
| color: var(--h3-text); |
| } |
|
|
| .h3e-empty { |
| color: var(--h3-muted); |
| padding: 14px 10px; |
| line-height: 1.6; |
| text-align: center; |
| border: 1px dashed var(--h3-border-soft); |
| border-radius: var(--h3-radius-sm); |
| } |
| .h3e-empty-cta { display: block; margin: 8px auto 0; } |
|
|
| |
|
|
| .h3e-card { |
| --h3-card-accent: var(--h3-accent); |
| background: |
| linear-gradient(90deg, color-mix(in srgb, var(--h3-card-accent) 7%, transparent), transparent 140px), |
| var(--h3-panel); |
| border: 1px solid color-mix(in srgb, var(--h3-card-accent) 46%, var(--h3-border)); |
| border-left: 4px solid var(--h3-card-accent); |
| border-radius: var(--h3-radius); |
| padding: var(--h3-gap-sm) var(--h3-gap); |
| margin-bottom: var(--h3-gap-sm); |
| transition: border-color .13s ease, box-shadow .13s ease; |
| } |
| .h3e-card:hover { border-color: color-mix(in srgb, var(--h3-card-accent) 70%, var(--h3-border)); } |
| .h3e-card.h3e-drop, |
| .h3e-card.h3e-drag-over { outline: 2px solid var(--h3-accent); outline-offset: 1px; } |
| .h3e-card.h3e-dragging { opacity: .45; } |
| .h3e-card.h3e-invalid { border-left-color: var(--h3-error); } |
|
|
| .h3e-card-head { |
| display: flex; |
| align-items: center; |
| gap: var(--h3-gap-sm); |
| min-height: var(--h3-row-h); |
| } |
|
|
| |
| .h3e-drag { |
| cursor: grab; |
| user-select: none; |
| padding: 4px 5px; |
| border-radius: 4px; |
| color: var(--h3-faint); |
| line-height: 1; |
| } |
| .h3e-drag:hover { color: var(--h3-text); background: var(--h3-accent-soft); } |
| .h3e-drag:active { cursor: grabbing; } |
|
|
| |
| .h3e-root .h3e-fold { |
| padding: 3px 6px; |
| background: transparent; |
| border-color: transparent; |
| color: var(--h3-muted); |
| font-size: 10px; |
| line-height: 1; |
| } |
| .h3e-root .h3e-fold:hover { color: var(--h3-text); background: var(--h3-accent-soft); border-color: transparent; } |
| .h3e-card.h3e-collapsed .h3e-card-body { display: none; } |
| .h3e-card.h3e-collapsed { padding-bottom: var(--h3-gap-sm); } |
| .h3e-fold-mark { display: inline-block; transition: transform .15s ease; } |
| .h3e-card.h3e-collapsed .h3e-fold-mark { transform: rotate(-90deg); } |
|
|
| .h3e-num, |
| .h3e-ord { |
| background: color-mix(in srgb, var(--h3-accent) 28%, var(--h3-sunken)); |
| color: var(--h3-text); |
| border-radius: 4px; |
| padding: 2px 8px; |
| font-size: 10px; |
| font-variant-numeric: tabular-nums; |
| white-space: nowrap; |
| } |
| .h3e-timing { font-size: 10px; color: var(--h3-muted); font-variant-numeric: tabular-nums; } |
| .h3e-lock { font-size: 10px; color: var(--h3-warn); } |
| .h3e-peek { |
| flex: 1; |
| min-width: 0; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| font-size: 10px; |
| color: var(--h3-faint); |
| } |
|
|
| .h3e-beat { width: 100%; background: var(--h3-sunken); } |
|
|
| |
|
|
| .h3e-dirs { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); |
| gap: var(--h3-gap-sm); |
| margin-top: var(--h3-gap-sm); |
| } |
| .h3e-dir { display: flex; flex-direction: column; gap: 2px; min-width: 0; } |
| .h3e-dir-label, |
| .h3e-field > span:first-child { |
| font-size: var(--h3-fs-xs); |
| font-weight: var(--h3-weight-label); |
| letter-spacing: var(--h3-track); |
| text-transform: uppercase; |
| color: var(--h3-muted); |
| } |
| .h3e-select, .h3e-input { width: 100%; } |
|
|
| |
|
|
| .h3e-note { |
| border-radius: var(--h3-radius-sm); |
| padding: 6px 8px; |
| margin-top: var(--h3-gap-sm); |
| line-height: 1.5; |
| border: 1px solid; |
| color: var(--h3-warn); |
| background: color-mix(in srgb, var(--h3-warn) 12%, transparent); |
| border-color: color-mix(in srgb, var(--h3-warn) 40%, transparent); |
| } |
| .h3e-note.h3e-note-error { |
| color: var(--h3-error); |
| background: color-mix(in srgb, var(--h3-error) 13%, transparent); |
| border-color: color-mix(in srgb, var(--h3-error) 45%, transparent); |
| } |
| .h3e-note.h3e-note-hint { |
| color: var(--h3-muted); |
| background: color-mix(in srgb, var(--h3-accent) 8%, transparent); |
| border-color: var(--h3-border-soft); |
| } |
|
|
| .h3e-adv { margin-top: var(--h3-gap-sm); } |
| .h3e-adv > summary, |
| .h3e-json-wrap > summary { |
| cursor: pointer; |
| color: var(--h3-muted); |
| font-size: 10px; |
| letter-spacing: .08em; |
| text-transform: uppercase; |
| padding: 3px 2px; |
| border-radius: 4px; |
| } |
| .h3e-adv > summary:hover, |
| .h3e-json-wrap > summary:hover { color: var(--h3-text); background: var(--h3-accent-soft); } |
|
|
| .h3e-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)); |
| gap: var(--h3-gap-sm); |
| margin: var(--h3-gap-sm) 0; |
| } |
| .h3e-field { display: flex; flex-direction: column; gap: 2px; min-width: 0; } |
| .h3e-field .h3e-input, .h3e-field .h3e-select { width: 100%; } |
| .h3e-check { flex-direction: row; align-items: center; gap: 6px; } |
| .h3e-check input { width: auto; } |
|
|
| |
|
|
| |
| |
| |
| |
| .h3e-run { padding: var(--h3-gap); } |
| .h3e-run > summary { |
| cursor: pointer; |
| display: flex; |
| align-items: baseline; |
| gap: var(--h3-gap-sm); |
| padding: 2px; |
| border-radius: 4px; |
| list-style: none; |
| min-width: 0; |
| } |
| .h3e-run > summary::-webkit-details-marker { display: none; } |
| .h3e-run > summary::before { |
| content: "▸"; |
| color: var(--h3-faint); |
| font-size: 9px; |
| transition: transform .12s ease; |
| } |
| .h3e-run[open] > summary::before { transform: rotate(90deg); } |
| .h3e-run > summary:hover { background: var(--h3-accent-soft); } |
| .h3e-run > summary:hover .h3e-title { color: var(--h3-text); } |
|
|
| |
| |
| .h3e-run-digest { |
| flex: 1; |
| min-width: 0; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| text-align: right; |
| } |
|
|
| .h3e-run-body { margin-top: var(--h3-gap-sm); } |
| .h3e-run-group + .h3e-run-group { |
| margin-top: var(--h3-gap-sm); |
| padding-top: var(--h3-gap-sm); |
| border-top: 1px solid var(--h3-border-soft); |
| } |
| .h3e-run-label { |
| font-size: var(--h3-fs-xs); |
| font-weight: var(--h3-weight-label); |
| letter-spacing: var(--h3-track); |
| text-transform: uppercase; |
| color: var(--h3-muted); |
| } |
| |
| |
| |
| .h3e-run-group .h3e-grid { |
| margin-top: 4px; |
| grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); |
| } |
| .h3e-run .h3e-run-wide { grid-column: span 2; } |
| |
| .h3e-run input[type="number"] { font-variant-numeric: tabular-nums; } |
|
|
| |
| |
| .h3e-run-toggle { display: flex; align-items: center; gap: 6px; min-width: 0; } |
| .h3e-root .h3e-run-toggle input { width: auto; flex: none; } |
| .h3e-run-togglabel { |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| color: var(--h3-muted); |
| } |
|
|
|
|
| |
|
|
| |
| |
| .h3e-ref { |
| display: grid; |
| grid-template-columns: auto minmax(88px, 1.1fr) minmax(74px, .8fr) minmax(74px, .8fr) minmax(96px, 1fr) minmax(120px, 1.6fr) auto; |
| align-items: center; |
| gap: var(--h3-gap-sm); |
| padding: 4px; |
| margin-bottom: 4px; |
| min-height: var(--h3-row-h); |
| border: 1px solid transparent; |
| border-radius: var(--h3-radius-sm); |
| transition: background-color .13s ease, border-color .13s ease; |
| } |
| .h3e-ref:hover { background: var(--h3-panel); border-color: var(--h3-border-soft); } |
| .h3e-ref.h3e-inactive { opacity: .55; } |
| .h3e-ref.h3e-bad { border-color: color-mix(in srgb, var(--h3-error) 55%, transparent); } |
| .h3e-ref.h3e-bad .h3e-tag { border-color: var(--h3-error); } |
| .h3e-inactive .h3e-ord { background: var(--h3-sunken); color: var(--h3-faint); } |
| .h3e-tag, .h3e-slot, .h3e-subj, .h3e-ret, .h3e-desc { width: 100%; } |
|
|
| |
| |
| |
| |
| |
| |
| @container (max-width: 560px) { |
| |
| |
| .h3e-ref { |
| grid-template-columns: auto minmax(88px, 1.2fr) minmax(74px, .9fr) minmax(74px, .9fr) minmax(96px, 1fr) auto; |
| } |
| .h3e-ref .h3e-desc { grid-column: 2 / -1; } |
| } |
| @container (max-width: 430px) { |
| |
| |
| .h3e-ref { grid-template-columns: auto 1fr auto; } |
| .h3e-ref .h3e-slot, |
| .h3e-ref .h3e-subj { grid-column: 2 / 3; } |
| .h3e-ref .h3e-ret, |
| .h3e-ref .h3e-desc { grid-column: 1 / -1; } |
| } |
|
|
| |
| .h3e-chips { display: flex; flex-wrap: wrap; gap: 3px; grid-column: 1 / -1; padding: 2px 0 0 26px; } |
| .h3e-chip { |
| font-size: 9px; |
| line-height: 1; |
| padding: 3px 6px; |
| border-radius: 999px; |
| border: 1px solid var(--h3-border-soft); |
| background: var(--h3-sunken); |
| color: var(--h3-faint); |
| cursor: pointer; |
| user-select: none; |
| transition: background-color .12s ease, color .12s ease, border-color .12s ease; |
| } |
| .h3e-chip:hover { border-color: var(--h3-accent); color: var(--h3-text); } |
| .h3e-chip.h3e-chip-on { |
| background: color-mix(in srgb, var(--h3-accent) 30%, var(--h3-sunken)); |
| color: var(--h3-text); |
| border-color: color-mix(in srgb, var(--h3-accent) 55%, transparent); |
| } |
| .h3e-chips-label { font-size: 9px; color: var(--h3-faint); align-self: center; margin-right: 2px; letter-spacing: .06em; } |
|
|
| .h3e-subject { |
| display: flex; |
| align-items: center; |
| gap: var(--h3-gap-sm); |
| margin: 4px 0 var(--h3-gap-sm) 26px; |
| } |
| .h3e-subject .h3e-input { flex: 1; } |
| .h3e-subj-badge { |
| |
| |
| |
| background: transparent; |
| border: 1px solid var(--h3-accent); |
| color: var(--h3-accent); |
| border-radius: 4px; |
| padding: 2px 8px; |
| font-size: 10px; |
| white-space: nowrap; |
| } |
|
|
| .h3e-json { |
| width: 100%; |
| min-height: 120px; |
| background: var(--h3-sunken); |
| font-family: ui-monospace, SFMono-Regular, Menlo, monospace; |
| font-size: 10px; |
| margin-top: 4px; |
| } |
|
|
| |
|
|
| .h3e-offline { |
| display: flex; |
| align-items: center; |
| gap: var(--h3-gap-sm); |
| margin-bottom: var(--h3-gap-sm); |
| } |
| .h3e-offline .h3e-btn { margin-left: auto; } |
|
|
| |
|
|
| .h3rc-preview { |
| display: flex; |
| flex-direction: column; |
| width: 100%; |
| height: 100%; |
| min-height: 0; |
| background: var(--h3-bg); |
| border: 1px solid var(--h3-border); |
| border-radius: var(--h3-radius); |
| overflow: hidden; |
| } |
|
|
| .h3rc-frame { position: relative; flex: 1 1 auto; min-height: 60px; background: var(--h3-sunken); } |
| .h3rc-img { |
| position: absolute; inset: 0; |
| width: 100%; height: 100%; |
| object-fit: contain; |
| display: none; |
| } |
| .h3rc-img.h3rc-seam-b { clip-path: inset(0 0 0 50%); } |
|
|
| .h3rc-placeholder { |
| position: absolute; inset: 0; |
| display: flex; align-items: center; justify-content: center; |
| color: var(--h3-faint); |
| font-size: 12px; |
| letter-spacing: .02em; |
| user-select: none; |
| text-align: center; |
| padding: 0 12px; |
| } |
|
|
| |
| .h3rc-seam-line { |
| position: absolute; top: 0; bottom: 0; left: 50%; |
| width: 1px; |
| background: color-mix(in srgb, var(--h3-accent) 70%, transparent); |
| display: none; |
| } |
| .h3rc-seam-tag { |
| position: absolute; bottom: 6px; |
| font-size: 9px; letter-spacing: .08em; text-transform: uppercase; |
| color: var(--h3-text); |
| background: color-mix(in srgb, #000 55%, transparent); |
| padding: 2px 6px; border-radius: 3px; |
| display: none; |
| } |
| .h3rc-seam-tag.h3rc-tag-a { left: 6px; } |
| .h3rc-seam-tag.h3rc-tag-b { right: 6px; } |
| .h3rc-showing-seam .h3rc-seam-line, |
| .h3rc-showing-seam .h3rc-seam-tag { display: block; } |
|
|
| |
| .h3rc-bar { flex: 0 0 3px; background: var(--h3-sunken); overflow: hidden; } |
| .h3rc-bar-fill { |
| height: 100%; |
| width: 0; |
| background: var(--h3-accent); |
| transition: width .25s ease; |
| } |
| .h3rc-bar-fill.h3rc-done { background: var(--h3-ok); } |
|
|
| .h3rc-panel { |
| flex: 0 0 auto; |
| display: flex; |
| flex-direction: column; |
| gap: 3px; |
| padding: 6px 9px; |
| background: var(--h3-panel); |
| border-top: 1px solid var(--h3-border-soft); |
| } |
| .h3rc-line { display: flex; align-items: center; gap: var(--h3-gap-sm); font-size: 11px; min-width: 0; } |
| .h3rc-status-label { color: var(--h3-muted); flex: 0 0 auto; } |
| .h3rc-status-value { |
| overflow: hidden; text-overflow: ellipsis; white-space: nowrap; |
| min-width: 0; flex: 1; |
| color: var(--h3-text); |
| font-variant-numeric: tabular-nums; |
| } |
| .h3rc-meta { |
| display: flex; flex-wrap: wrap; gap: 4px 10px; |
| font-size: 10px; color: var(--h3-muted); |
| font-variant-numeric: tabular-nums; |
| } |
| .h3rc-meta b { font-weight: 600; color: var(--h3-text); } |
| .h3rc-mech { padding: 1px 6px; border-radius: 999px; font-size: 9px; letter-spacing: .04em; } |
| .h3rc-mech-motion_context { background: color-mix(in srgb, var(--h3-ok) 26%, transparent); color: var(--h3-text); } |
| .h3rc-mech-addguide_pixels { background: color-mix(in srgb, var(--h3-warn) 30%, transparent); color: var(--h3-text); } |
|
|
| |
| .h3rc-grip { |
| flex: 0 0 11px; |
| position: relative; |
| cursor: ns-resize; |
| background: var(--h3-panel); |
| border-top: 1px solid var(--h3-border-soft); |
| } |
| .h3rc-grip::after { |
| content: ""; |
| position: absolute; |
| left: calc(50% - 18px); |
| top: 4px; |
| width: 36px; height: 2px; |
| border-radius: 2px; |
| background: var(--h3-faint); |
| } |
| .h3rc-grip:hover::after { background: var(--h3-accent); } |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| .h3e-root .h3e-mode.h3e-on { |
| background: var(--h3-accent); |
| color: var(--h3-on-accent); |
| font-weight: 700; |
| } |
| .h3e-num, |
| .h3e-ord { |
| background: var(--h3-accent); |
| color: var(--h3-on-accent); |
| font-weight: 700; |
| } |
| .h3e-inactive .h3e-ord { |
| background: var(--h3-sunken); |
| color: var(--h3-faint); |
| } |
| .h3e-chip.h3e-chip-on { |
| background: var(--h3-accent); |
| color: var(--h3-on-accent); |
| border-color: var(--h3-accent); |
| font-weight: 700; |
| } |
|
|
| |
| .h3e-section { |
| border: none; |
| border-left: 2px solid var(--h3-border); |
| background: var(--h3-bg); |
| } |
| .h3e-card { border-left-width: 2px; } |
| .h3e-run-group { |
| border-left: 2px solid var(--h3-accent); |
| background: var(--h3-accent-wash); |
| padding-left: var(--h3-gap-sm); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| .h3e-pick { display: flex; flex-direction: column; gap: 2px; min-width: 0; } |
| .h3e-thumb { |
| position: relative; |
| width: 100%; |
| height: 46px; |
| border: 1px dashed var(--h3-border); |
| background: var(--h3-sunken); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| cursor: pointer; |
| overflow: hidden; |
| transition: border-color .12s ease, background-color .12s ease; |
| } |
| .h3e-thumb:hover { border-color: var(--h3-accent); } |
| .h3e-thumb.h3e-has { border-style: solid; } |
| .h3e-thumb.h3e-hot { |
| border-style: solid; |
| border-color: var(--h3-accent); |
| background: color-mix(in srgb, var(--h3-accent) 10%, var(--h3-sunken)); |
| } |
| .h3e-thumb-img { |
| position: absolute; |
| inset: 0; |
| width: 100%; |
| height: 100%; |
| object-fit: contain; |
| pointer-events: none; |
| } |
| .h3e-thumb-hint { |
| font-size: var(--h3-fs-xs); |
| color: var(--h3-faint); |
| text-align: center; |
| line-height: 1.15; |
| white-space: pre-line; |
| pointer-events: none; |
| } |
| .h3e-thumb-bad { color: var(--h3-error); } |
| |
| |
| .h3e-root .h3e-thumb-x { |
| position: absolute; |
| top: 2px; |
| right: 2px; |
| z-index: 5; |
| width: 16px; |
| height: 16px; |
| padding: 0; |
| line-height: 1; |
| display: none; |
| align-items: center; |
| justify-content: center; |
| background: color-mix(in srgb, #000 78%, transparent); |
| border: 1px solid var(--h3-border); |
| color: var(--h3-muted); |
| } |
| .h3e-thumb:hover .h3e-thumb-x { display: flex; } |
| .h3e-root .h3e-thumb-x:hover { |
| color: var(--h3-error); |
| border-color: var(--h3-error); |
| background: color-mix(in srgb, var(--h3-error) 18%, #000); |
| } |
| .h3e-root .h3e-pickfile { |
| font-size: var(--h3-fs-xs); |
| padding: 2px 4px; |
| } |
|
|
| |
| .h3e-media-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); |
| gap: var(--h3-gap-sm); |
| margin-top: 4px; |
| } |
| .h3e-media-cell { display: flex; flex-direction: column; gap: 2px; min-width: 0; } |
| .h3e-media-label { |
| font-size: var(--h3-fs-xs); |
| font-weight: var(--h3-weight-label); |
| letter-spacing: var(--h3-track); |
| text-transform: uppercase; |
| color: var(--h3-muted); |
| } |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| .h3e-scroll { |
| flex: 1 1 auto; |
| |
| |
| min-height: 160px; |
| overflow-y: auto; |
| scrollbar-gutter: stable; |
| display: flex; |
| flex-direction: column; |
| gap: var(--h3-gap); |
| } |
| .h3e-root > .h3e-run { |
| |
| |
| |
| |
| |
| flex: 0 0 auto; |
| max-height: 55%; |
| display: flex; |
| flex-direction: column; |
| min-height: 0; |
| } |
| |
| |
| .h3e-root > .h3e-run > .h3e-run-sum { |
| cursor: default; |
| list-style: none; |
| } |
| .h3e-root > .h3e-run > .h3e-run-sum::-webkit-details-marker { display: none; } |
| .h3e-root > .h3e-run > .h3e-run-sum::marker { content: ""; } |
| .h3e-root > .h3e-run > .h3e-run-body { |
| overflow-y: auto; |
| min-height: 0; |
| } |
| |
| .h3e-root > .h3e-run > .h3e-run-sum { |
| position: sticky; |
| top: 0; |
| z-index: 2; |
| background: var(--h3-bg); |
| } |
|
|
| |
| |
| |
| |
| .h3e-tpl { |
| display: flex; |
| flex-direction: column; |
| gap: 1px; |
| margin-bottom: var(--h3-gap-sm); |
| border: 1px solid var(--h3-border-soft); |
| background: var(--h3-sunken); |
| } |
|
|
| .h3e-tpl > .h3e-note { |
| margin: 0; |
| border: 0; |
| border-bottom: 1px solid var(--h3-border-soft); |
| color: var(--h3-faint); |
| } |
|
|
| .h3e-tpl-row { |
| display: flex; |
| align-items: flex-start; |
| gap: var(--h3-gap); |
| padding: 7px 8px; |
| } |
|
|
| .h3e-tpl-row + .h3e-tpl-row { border-top: 1px solid var(--h3-border-soft); } |
| .h3e-tpl-row:hover { background: var(--h3-accent-wash); } |
|
|
| |
| |
| .h3e-tpl-text { flex: 1 1 auto; min-width: 0; } |
|
|
| .h3e-tpl-name { |
| color: var(--h3-text); |
| font-size: var(--h3-fs); |
| font-weight: var(--h3-weight-label); |
| } |
|
|
| .h3e-tpl-hint { |
| color: var(--h3-muted); |
| font-size: var(--h3-fs-sm); |
| margin-top: 1px; |
| } |
|
|
| .h3e-tpl-note { |
| color: var(--h3-faint); |
| font-size: var(--h3-fs-sm); |
| line-height: 1.5; |
| margin-top: 3px; |
| } |
|
|
| .h3e-tpl-row > .h3e-btn { flex: 0 0 auto; } |
|
|