bzl

self-hosted ephemeral community engine
Log | Files | Refs | README | LICENSE

commit 2f8bddd647459cd0451e2b515b3495bcf61b03de
parent 45c8b6332e710ea7ea925bae6d213923549a0c3b
Author: SageAzakaela <106701693+SageAzakaela@users.noreply.github.com>
Date:   Thu, 19 Feb 2026 14:00:09 -0700

fixed show/hide account rack UI bug

clicking the hide account rack button would cause the UI to become a chaos god, so we sealed it away in a philactory and tossed it down to the bottom of the ocean.

Diffstat:
MCLEAN_INSTALL/public/index.html | 2+-
MCLEAN_INSTALL/public/styles.css | 12++++++++++++
Mpublic/index.html | 2+-
Mpublic/styles.css | 12++++++++++++
4 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/CLEAN_INSTALL/public/index.html b/CLEAN_INSTALL/public/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Bzl - Hives</title> - <link rel="stylesheet" href="/styles.css?v=118" /> + <link rel="stylesheet" href="/styles.css?v=119" /> </head> <body> <div class="app"> diff --git a/CLEAN_INSTALL/public/styles.css b/CLEAN_INSTALL/public/styles.css @@ -969,6 +969,18 @@ body { grid-template-areas: "chat chatResize main mainResize moderation"; } +.app.rackMode.sidebarHidden, +.app.rackMode.hasMod.sidebarHidden { + grid-template-columns: 1fr 10px minmax(var(--people-min), var(--people-width)); + grid-template-areas: "main mainResize rightRack"; +} + +.app.rackMode.sidebarHidden.rightCollapsed, +.app.rackMode.hasMod.sidebarHidden.rightCollapsed { + grid-template-columns: 1fr; + grid-template-areas: "main"; +} + .peopleDrawer { position: fixed; top: 12px; diff --git a/public/index.html b/public/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Bzl - Hives</title> - <link rel="stylesheet" href="/styles.css?v=118" /> + <link rel="stylesheet" href="/styles.css?v=119" /> </head> <body> <div class="app"> diff --git a/public/styles.css b/public/styles.css @@ -969,6 +969,18 @@ body { grid-template-areas: "chat chatResize main mainResize moderation"; } +.app.rackMode.sidebarHidden, +.app.rackMode.hasMod.sidebarHidden { + grid-template-columns: 1fr 10px minmax(var(--people-min), var(--people-width)); + grid-template-areas: "main mainResize rightRack"; +} + +.app.rackMode.sidebarHidden.rightCollapsed, +.app.rackMode.hasMod.sidebarHidden.rightCollapsed { + grid-template-columns: 1fr; + grid-template-areas: "main"; +} + .peopleDrawer { position: fixed; top: 12px;