fix: Add drag-over visual feedback CSS for inspector avatar

This commit is contained in:
mARTin-B78 2026-06-22 14:49:31 +02:00
parent a325f53e62
commit 3f1e82ef81
2 changed files with 15 additions and 1 deletions

View File

@ -26,7 +26,7 @@
<!-- ── Core styles (local — no CDN dependency for first paint) ────────── -->
<link rel="stylesheet" href="/static/vendor/mdi/materialdesignicons.min.css">
<link rel="stylesheet" href="/static/style.css?v=1.8.0-3">
<link rel="stylesheet" href="/static/style.css?v=1.8.0-4">
<!-- ── Flag icons — non-blocking (loaded async, icons appear after JS) ── -->

View File

@ -1791,6 +1791,20 @@ code { background: var(--panel); border-radius: 4px; padding: 1px 5px; font-fami
/* vr-main-row in inspector: always hidden (metadata shown in header grid) */
.inspector-body .vr-main-row { display: none !important; }
.inspector-avatar.drag-over {
opacity: 0.8;
outline: 3px dashed var(--accent);
outline-offset: -4px;
transition: all 0.2s;
}
.vl-avatar.drag-over {
opacity: 0.8;
outline: 2px dashed var(--accent);
outline-offset: -2px;
transition: all 0.2s;
}
/* ── AI Backends / LLMs section ──────────────────────────────────────────── */
/* Category pill tabs */