From a3fd2757834c427a4bc496ecf7bd7bdc1cb52eb4 Mon Sep 17 00:00:00 2001 From: jelveh Date: Sun, 19 Apr 2026 19:56:29 -0700 Subject: [PATCH] Remove Beta badge from dashboard sidebar --- src/gui/src/UI/Dashboard/UIDashboard.js | 3 +-- src/gui/src/css/dashboard.css | 16 +--------------- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/src/gui/src/UI/Dashboard/UIDashboard.js b/src/gui/src/UI/Dashboard/UIDashboard.js index 7b912e9b7..2f36ea963 100644 --- a/src/gui/src/UI/Dashboard/UIDashboard.js +++ b/src/gui/src/UI/Dashboard/UIDashboard.js @@ -99,8 +99,7 @@ async function UIDashboard (options) { continue; } const isActive = i === 0 ? ' active' : ''; - const isBeta = tab.label === 'Apps'; - h += `
`; + h += `
`; h += tab.icon; h += tab.label; h += '
'; diff --git a/src/gui/src/css/dashboard.css b/src/gui/src/css/dashboard.css index 3e51fb389..e9b295c81 100644 --- a/src/gui/src/css/dashboard.css +++ b/src/gui/src/css/dashboard.css @@ -284,10 +284,6 @@ body { margin: 8px 4px; } -.dashboard-sidebar.collapsed .dashboard-sidebar-item.beta::after { - display: none; -} - .dashboard-sidebar.collapsed .dashboard-user-options { padding-top: 8px; } @@ -377,17 +373,6 @@ body { font-weight: 500; } -.dashboard-sidebar-item.beta:after { - content: "Beta"; - font-size: 12px; - color: var(--dashboard-background); - background: var(--dashboard-text-muted); - padding: 1px 4px; - border-radius: 4px; - position: absolute; - right: 4px; -} - /* User options button at bottom of sidebar */ .dashboard-user-options { border-top: 1px solid var(--dashboard-border); @@ -731,6 +716,7 @@ body { width: 100%; height: 100%; object-fit: cover; + filter: drop-shadow(0px 0px .3px rgb(173, 173, 173)); } @media (hover: hover) {