Show each container's fallback tier on the Monitor board

The row's left border carries it rather than the status dot, which already means running or
stopped.
This commit is contained in:
Gmer4Lfe
2026-08-23 16:38:58 -04:00
parent 671e7ea5a4
commit 206a119a4b
3 changed files with 43 additions and 4 deletions
+5 -2
View File
@@ -1341,8 +1341,11 @@ code.vv-unknown-var { color: #ff9800; background: #1f130d; }
.vv-df-fname { flex: 1; font-size: 12px; color: #aaa; font-weight: 500;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vv-df-folder-body { padding-left: 10px; padding-bottom: 3px; }
.vv-df-container { display: flex; align-items: center; gap: 7px; padding: 3px 6px;
cursor: pointer; border-radius: 3px; user-select: none; }
/* padding-left is 4px against a 2px border so a container with no fallback tier still lines up
with one that has a stripe — the border is always present, only its colour changes. */
.vv-df-container { display: flex; align-items: center; gap: 7px; padding: 3px 6px 3px 4px;
cursor: pointer; border-radius: 3px; user-select: none;
border-left: 2px solid transparent; }
.vv-df-container:hover { background: rgba(255,255,255,0.04); }
.vv-df-active { background: rgba(100,149,237,0.1) !important;
outline: 1px solid rgba(100,149,237,0.35);