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
16 changes: 10 additions & 6 deletions packages/webapp/src/strip-rail.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,21 @@
border-bottom: 0;
}

/* The org mark and the workspace tiles share one size so they can never
drift apart (user ruling 2026-08-29). */
.shell-strip { --strip-tile: 35px; }

.shell-orgmark {
display: grid;
width: 22px;
height: 22px;
width: var(--strip-tile);
height: var(--strip-tile);
flex: none;
place-items: center;
border: 0;
border-radius: 6px;
border-radius: 10px;
color: var(--paper);
background: var(--accent);
font: 700 11px/1 var(--font-ui);
font: 700 13px/1 var(--font-ui);
cursor: pointer;
}

Expand Down Expand Up @@ -78,8 +82,8 @@
display: grid;
/* Same footprint as the org mark at the top of the strip (user ruling
2026-08-29). */
width: 35px;
height: 35px;
width: var(--strip-tile);
height: var(--strip-tile);
flex: none;
place-items: center;
border: 0;
Expand Down
6 changes: 6 additions & 0 deletions packages/webapp/src/webapp-workspace.css
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,16 @@
gap: 10px;
min-height: 38px;
padding: 0 12px;
/* Self-sufficient reset: this menu mounts under the tab strip AND the
* session rail. Without its own border/background reset it wears the UA
* button chrome wherever no ancestor resets it. */
border: 0;
border-radius: var(--r-item);
color: var(--ink);
background: none;
font-size: 13.5px;
text-align: left;
cursor: pointer;
}

.webapp-agent-menu button:hover,
Expand Down
Loading