Remove framed background and styles from dashboard visuals for a cleaner appearance

This commit is contained in:
Matt Batchelder
2026-02-21 02:20:45 -05:00
parent 0ec0e71d38
commit b37bcfb72b

View File

@@ -1984,6 +1984,17 @@ p:last-child { margin-bottom: 0; }
.platform-row.reverse .platform-visual { order: unset; }
}
/* Dashboard visual - remove framed background */
.platform-visual.has-dashboard {
background: none !important;
border: none !important;
border-radius: 0;
aspect-ratio: unset;
padding: 0;
overflow: visible;
box-shadow: none;
}
/* ── 10b. Device Animator ───────────────────────────────────── */
.platform-visual.has-anim {
background: none !important;
@@ -2981,7 +2992,7 @@ p:last-child { margin-bottom: 0; }
border-color: rgba(255,255,255,.25);
}
[data-theme="dark"] .platform-visual:not(.has-img) {
[data-theme="dark"] .platform-visual:not(.has-img):not(.has-dashboard) {
background: var(--color-bg-alt);
border-color: var(--color-border);
}