This commit is contained in:
traveler 2025-12-30 09:36:43 -06:00
parent 689a7ef388
commit c8fc7eb4f1

View file

@ -37,16 +37,6 @@ body.tab-nucking-futz {
background-color: rgba(0, 0, 0, 0.40); 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) */ /* Make service cards and widgets pop (but more transparent than before) */
.service-card, .service-card,
.widget { .widget {
@ -81,3 +71,31 @@ body.tab-pncharris .widget {
width: auto !important; width: auto !important;
max-width: 100% !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 140220px if needed */
border: 0 !important;
display: block !important;
}