From 982f45cb50cfe453e4516191c5f1105cf5fa3283 Mon Sep 17 00:00:00 2001 From: Guy Sandler Date: Fri, 3 Jul 2026 13:13:05 -0700 Subject: [PATCH] some more bug fixes --- js/content.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/content.js b/js/content.js index de7e713..aae4095 100644 --- a/js/content.js +++ b/js/content.js @@ -684,11 +684,16 @@ function applyCustomBackground() { style.textContent = ` #wrapper { background-image: url('${options.customBackgroundLink}') !important; - background-size: ${backgroundScale}% auto !important; background-repeat: no-repeat !important; background-position: center center !important; background-attachment: fixed !important; } + @media (orientation: landscape) { + #wrapper { background-size: ${backgroundScale}% auto !important; } + } + @media (orientation: portrait) { + #wrapper { background-size: cover !important; } + } .ic-Dashboard-header__layout { background: none !important; /* backdrop-filter: blur(10px) !important; */ @@ -3956,6 +3961,7 @@ function applyAestheticChanges() { if (options.cardHeight !== undefined && options.cardHeight !== 250) style.textContent += `.ic-DashboardCard {height: ${options.cardHeight}px!important;}`; } + style.textContent += ".ic-app-nav-toggle-and-crumbs{display:none!important}"; if (options.custom_styles !== "") style.textContent += options.custom_styles; document.documentElement.appendChild(style); }