fix: Add drag-over visual feedback CSS for inspector avatar
This commit is contained in:
parent
a325f53e62
commit
3f1e82ef81
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
<!-- ── Core styles (local — no CDN dependency for first paint) ────────── -->
|
<!-- ── Core styles (local — no CDN dependency for first paint) ────────── -->
|
||||||
<link rel="stylesheet" href="/static/vendor/mdi/materialdesignicons.min.css">
|
<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) ── -->
|
<!-- ── Flag icons — non-blocking (loaded async, icons appear after JS) ── -->
|
||||||
|
|||||||
@ -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) */
|
/* vr-main-row in inspector: always hidden (metadata shown in header grid) */
|
||||||
.inspector-body .vr-main-row { display: none !important; }
|
.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 ──────────────────────────────────────────── */
|
/* ── AI Backends / LLMs section ──────────────────────────────────────────── */
|
||||||
|
|
||||||
/* Category pill tabs */
|
/* Category pill tabs */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user