From c8fc7eb4f19c6b334e958c06afef75ed1e80cacf Mon Sep 17 00:00:00 2001 From: traveler Date: Tue, 30 Dec 2025 09:36:43 -0600 Subject: [PATCH] sd --- config/custom.css | 38 ++++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/config/custom.css b/config/custom.css index 8c0224a..a65f2f3 100755 --- a/config/custom.css +++ b/config/custom.css @@ -37,16 +37,6 @@ body.tab-nucking-futz { background-color: rgba(0, 0, 0, 0.40); } -/* Soft blur + desaturate background only -body::before { - content: ""; - position: fixed; - inset: 0; - backdrop-filter: blur(6px) saturate(0.8); - z-index: -1; -} -*/ - /* Make service cards and widgets pop (but more transparent than before) */ .service-card, .widget { @@ -81,3 +71,31 @@ body.tab-pncharris .widget { width: auto !important; max-width: 100% !important; } + +/* ========================================================= */ +/* GLANCE TAB: ONLY make the Glance iframe bigger (safe) */ +/* ========================================================= */ + +/* Optional: make Glance tab use full width */ +body.tab-glance main { + max-width: none !important; + margin: 0 !important; + padding-left: 12px !important; + padding-right: 12px !important; +} + +/* Force a single wide column on the Glance tab */ +body.tab-glance .service-grid, +body.tab-glance .services { + grid-template-columns: 1fr !important; +} + +/* Make ONLY the glance iframe tall. + This avoids touching parent wrappers that can blank the iframe on some builds. */ +body.tab-glance iframe[name="glance"], +body.tab-glance iframe[src*="home.netgrimoire.com"] { + width: 100% !important; + height: calc(100vh - 170px) !important; /* tweak 140–220px if needed */ + border: 0 !important; + display: block !important; +}