Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "panebox",
"productName": "Panebox",
"version": "2.2.0",
"version": "2.2.1",
"description": "A small, private, open-source desktop deck for your web apps — AI tools, chat, mail and more in one window.",
"main": "main.js",
"license": "MIT",
Expand Down
14 changes: 8 additions & 6 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,9 @@ body.platform-darwin #sidebar { padding-top: 44px; }
#view-wrap { flex: 1; display: flex; position: relative; overflow: hidden; }
#view-container { flex: 1; position: relative; overflow: hidden; background: var(--bg); }

webview {
position: absolute; inset: 0; width: 100%; height: 100%;
border: none; visibility: hidden;
}
webview.active { visibility: visible; }
/* Visibility is owned by the pane wrapper now — see `.pane` below. The old
rules here predated panes and still keyed off `.active` on the webview
itself, which nothing sets any more. */

/* ------------------------------------------------------------ todo panel */

Expand Down Expand Up @@ -632,7 +630,11 @@ body.reordering webview { pointer-events: none; }
paints, so the header appeared to exist and then vanish. */
position: relative; inset: auto;
flex: 1; min-height: 0; width: 100%; height: auto;
border: none; visibility: visible;
border: none;
/* Deliberately no `visibility` here. It inherits, so declaring `visible` let
every webview un-hide itself inside its hidden pane: all services rendered
at once, stacked, and you saw whichever painted last rather than the one
you clicked. It also meant Chromium never throttled the background ones. */
}
.pane-head { display: none; }

Expand Down