viberadar 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/dashboard.html +8 -6
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -473,19 +473,21 @@
|
|
|
473
473
|
.file-row-name { font-weight: 500; word-break: break-all; }
|
|
474
474
|
.file-row-dir { font-size: 11px; color: var(--dim); text-align: right; word-break: break-word; }
|
|
475
475
|
.file-row-agent-btn {
|
|
476
|
-
display:
|
|
476
|
+
display: inline-flex;
|
|
477
|
+
align-items: center;
|
|
478
|
+
gap: 3px;
|
|
477
479
|
padding: 2px 8px;
|
|
478
480
|
font-size: 11px;
|
|
479
481
|
background: transparent;
|
|
480
|
-
border: 1px solid var(--
|
|
482
|
+
border: 1px solid var(--border);
|
|
481
483
|
border-radius: 4px;
|
|
482
|
-
color: var(--
|
|
484
|
+
color: var(--dim);
|
|
483
485
|
cursor: pointer;
|
|
484
486
|
white-space: nowrap;
|
|
485
|
-
transition: background 0.1s, color 0.1s;
|
|
487
|
+
transition: background 0.1s, color 0.1s, border-color 0.1s;
|
|
486
488
|
}
|
|
487
|
-
.file-row:hover .file-row-agent-btn {
|
|
488
|
-
.file-row-agent-btn:hover { background: var(--accent); color: #000; }
|
|
489
|
+
.file-row:hover .file-row-agent-btn { border-color: var(--accent); color: var(--accent); }
|
|
490
|
+
.file-row-agent-btn:hover { background: var(--accent); color: #000 !important; border-color: var(--accent); }
|
|
489
491
|
|
|
490
492
|
/* ── Agent setup banner ──────────────────────────────────────────────────── */
|
|
491
493
|
.agent-setup-banner {
|