Major upgrade to the browse tool's UX, plus a few shared modules other tools can adopt. User-facing: - Right-click context menu on tree rows AND empty pane space. Traditional file-manager grouping (Open / Download / New / Rename-Delete / Copy / Tree ops / View). Items stay visible but disabled when not applicable so muscle memory carries. Generic shared/context-menu.js framework supports normal items, toggles, submenus, separators, danger styling. - YAML editor for .yaml / .yml / .zddc files (CodeMirror 5 vendored at shared/vendor/codemirror-yaml.min.*). js-yaml lint on every change for parse errors. For .zddc cascade files, an additional schema-aware lint pass flags unknown keys, bad enum values, and wrong types. - Per-row drag-drop upload using webkitGetAsEntry (folder uploads work recursively). Per-row drop indicator; doc-level overlay still fires for blank-space drops at drop_target scopes. - New folder / New markdown file context-menu items (server mode). Rename + Delete with native confirm() dialog. File-API helpers removeNode / renameNode use the existing PUT/POST/DELETE endpoints. - Hover info card with the row's full metadata (ZDDC fields + filesystem info + path/URL). Interactive — mouse into it, drag-select text, Ctrl/Cmd-C or right-click → Copy. 200ms grace before dismiss. - Autofilter input at the top of the tree pane. Same grammar as archive's column filters (zddc.filter.parse / matches). Filters files; folders without matches collapse out. Non-matching folders force-open visually when descendants match, without mutating the user's actual expand state. - Two-line ZDDC label: title-first, tracking/rev/status as monospace meta below. Icon column anchors to the title line. Chevron is a Lucide outline `chevron-right` SVG, rotated 90° on `.expanded`. - File-type Lucide icon sprite (shared/icons.js — 16 outline glyphs, ~5 KB). PDF / Word / Spreadsheet / Slides / Image / Video / Audio / CAD / Web / Config / Code / Archive get distinct icons; folders tinted with --primary. - Header wraps gracefully at narrow viewports (shared/base.css flex-wrap + title min-width:0 ellipsis). Body becomes flex column in browse so a wrapping header doesn't break #appMain height. - Markdown editor opens in WYSIWYG mode by default. YAML front-matter + TOC sidebar reworked: flexbox layout (single visible resizer between FM and TOC), both bodies overflow:auto for X+Y scrollbars. - `?file=<path>` deep links open browse pre-positioned at a specific file. Multi-segment paths walk into subdirectories on the way. Auto-flips Show hidden when a segment is dot/underscore-prefixed. - Refresh + show-hidden toggle preserve expansion / selection / preview pinning. Path-keyed snapshot survives a re-fetched listing. - "Add Local Directory" → "Use Local Directory" across the four tools that have it (browse, archive, classifier, +transmittal comment). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
110 lines
3.5 KiB
CSS
110 lines
3.5 KiB
CSS
/* preview-yaml.css — YAML editor pane styling. Mirrors the
|
|
.md-shell info-header geometry; everything below is a CodeMirror 5
|
|
host with dark-mode overrides so the editor blends into the theme
|
|
instead of fighting it. */
|
|
|
|
.yaml-shell {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
height: 100%;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
background: var(--bg);
|
|
}
|
|
|
|
.yaml-shell__editor {
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* Schema-label badge — extends .md-shell__source so it sits next to
|
|
"local"/"server"/"read-only (zip)" with the same chip styling. The
|
|
primary-colored variant distinguishes ".zddc schema" from the
|
|
plain "YAML" label. */
|
|
.yaml-shell__schema {
|
|
font-style: normal;
|
|
}
|
|
.yaml-shell__schema:not(:empty) {
|
|
border-color: var(--primary);
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* CodeMirror has to fill the grid cell. The vendored CSS sets
|
|
`height: 300px` by default — we override to 100% so it grows with
|
|
the preview pane. */
|
|
.yaml-shell__editor .CodeMirror {
|
|
height: 100%;
|
|
font-family: var(--font-mono);
|
|
font-size: 0.85rem;
|
|
line-height: 1.45;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
.yaml-shell__editor .CodeMirror-gutters {
|
|
background: var(--bg-secondary);
|
|
border-right: 1px solid var(--border);
|
|
}
|
|
|
|
.yaml-shell__editor .CodeMirror-linenumber {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.yaml-shell__editor .CodeMirror-cursor {
|
|
border-left-color: var(--text);
|
|
}
|
|
|
|
.yaml-shell__editor .CodeMirror-selected {
|
|
background: var(--bg-selected);
|
|
}
|
|
|
|
.yaml-shell__editor .CodeMirror-focused .CodeMirror-selected {
|
|
background: var(--primary-light);
|
|
}
|
|
|
|
/* YAML token tints. CM5 emits semantic class names from the yaml
|
|
mode; map them onto our palette so themes flip with the OS / data
|
|
attribute. */
|
|
.yaml-shell__editor .cm-keyword,
|
|
.yaml-shell__editor .cm-atom { color: var(--primary); font-weight: 600; }
|
|
.yaml-shell__editor .cm-string { color: #2e8b57; }
|
|
.yaml-shell__editor .cm-comment { color: var(--text-muted); font-style: italic; }
|
|
.yaml-shell__editor .cm-number { color: #b06000; }
|
|
.yaml-shell__editor .cm-meta { color: #6f42c1; }
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html:not([data-theme="light"]) .yaml-shell__editor .cm-string { color: #98c379; }
|
|
html:not([data-theme="light"]) .yaml-shell__editor .cm-number { color: #e5c07b; }
|
|
html:not([data-theme="light"]) .yaml-shell__editor .cm-meta { color: #c678dd; }
|
|
}
|
|
[data-theme="dark"] .yaml-shell__editor .cm-string { color: #98c379; }
|
|
[data-theme="dark"] .yaml-shell__editor .cm-number { color: #e5c07b; }
|
|
[data-theme="dark"] .yaml-shell__editor .cm-meta { color: #c678dd; }
|
|
|
|
/* Lint markers: keep CM's defaults for the gutter dots but make the
|
|
inline underline play nicely with our background. Errors stay red,
|
|
warnings amber. */
|
|
.yaml-shell__editor .CodeMirror-lint-mark-error {
|
|
background-image: none;
|
|
border-bottom: 2px wavy var(--danger);
|
|
}
|
|
.yaml-shell__editor .CodeMirror-lint-mark-warning {
|
|
background-image: none;
|
|
border-bottom: 2px wavy var(--warning);
|
|
}
|
|
|
|
/* Tooltip popping out of a lint marker — uses the shared menu shadow
|
|
so it doesn't look like a separate component. */
|
|
.CodeMirror-lint-tooltip {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
|
|
0 2px 6px rgba(0, 0, 0, 0.10);
|
|
font-family: var(--font);
|
|
font-size: 0.82rem;
|
|
padding: 0.3rem 0.55rem;
|
|
max-width: 32rem;
|
|
}
|