@bakapiano/ccsm 0.19.1 → 0.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bakapiano/ccsm",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "description": "Claude Code Session Manager — Windows web UI to manage many concurrent claude sessions: live list, snapshot/restore, focus existing window, new session in an isolated workspace with repo clones",
5
5
  "license": "MIT",
6
6
  "main": "server.js",
@@ -0,0 +1 @@
1
+ <svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Cloudflare</title><path d="M16.493 17.4c.135-.52.08-.983-.161-1.338-.215-.328-.592-.519-1.05-.519l-8.663-.109a.148.148 0 01-.135-.082c-.027-.054-.027-.109-.027-.163.027-.082.108-.164.189-.164l8.744-.11c1.05-.054 2.153-.9 2.556-1.937l.511-1.31c.027-.055.027-.11.027-.164C17.92 8.91 15.66 7 12.942 7c-2.503 0-4.628 1.638-5.381 3.903a2.432 2.432 0 00-1.803-.491c-1.21.109-2.153 1.092-2.287 2.32-.027.328 0 .628.054.9C1.56 13.688 0 15.326 0 17.319c0 .19.027.355.027.545 0 .082.08.137.161.137h15.983c.08 0 .188-.055.215-.164l.107-.437" fill="#F38020"></path><path d="M19.238 11.75h-.242c-.054 0-.108.054-.135.109l-.35 1.2c-.134.52-.08.983.162 1.338.215.328.592.518 1.05.518l1.855.11c.054 0 .108.027.135.082.027.054.027.109.027.163-.027.082-.108.164-.188.164l-1.91.11c-1.05.054-2.153.9-2.557 1.937l-.134.355c-.027.055.026.137.107.137h6.592c.081 0 .162-.055.162-.137.107-.41.188-.846.188-1.31-.027-2.62-2.153-4.777-4.762-4.777" fill="#FCAD32"></path></svg>
@@ -0,0 +1 @@
1
+ <svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Azure</title><path d="M11.49 2H2v9.492h9.492V2h-.002z" fill="#F25022"></path><path d="M22 2h-9.492v9.492H22V2z" fill="#7FBA00"></path><path d="M11.49 12.508H2V22h9.492v-9.492h-.002z" fill="#00A4EF"></path><path d="M22 12.508h-9.492V22H22v-9.492z" fill="#FFB900"></path></svg>
@@ -115,9 +115,12 @@ body.is-resizing-sidebar .app {
115
115
  align-items: center;
116
116
  justify-content: space-between;
117
117
  gap: var(--s-3);
118
- height: calc(40px * var(--anti-zoom, 1));
119
- min-height: calc(40px * var(--anti-zoom, 1));
120
- max-height: calc(40px * var(--anti-zoom, 1));
118
+ /* `max(36px, …)` floors the anti-zoom shrink — at heavy page zoom the
119
+ counter-scale would otherwise collapse the strip past readable
120
+ (e.g. 250% zoom → ~16px, title text overlaps the action row). */
121
+ height: max(36px, calc(40px * var(--anti-zoom, 1)));
122
+ min-height: max(36px, calc(40px * var(--anti-zoom, 1)));
123
+ max-height: max(36px, calc(40px * var(--anti-zoom, 1)));
121
124
  flex-shrink: 0;
122
125
  box-sizing: border-box;
123
126
  margin: 0 calc(-1 * var(--s-4)) 0;
@@ -157,9 +157,14 @@ body.is-wco .sidebar-top {
157
157
  min-floor on the JS path: the OS knows its own caption height best,
158
158
  and over-padding (the previous max(40px, …)) made the chrome look
159
159
  visibly chunkier than the rest of the window. */
160
- height: calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1));
161
- min-height: calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1));
162
- max-height: calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1));
160
+ /* `max(36px, )` floors the anti-zoom shrink — at heavy page zoom the
161
+ counter-scale would otherwise collapse the WCO strip past the OS
162
+ control row height, jamming the brand mark / collapse toggle into
163
+ the title text. 36px matches the standalone page-title-bar floor
164
+ in layout.css so both modes degrade to the same minimum. */
165
+ height: max(36px, calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1)));
166
+ min-height: max(36px, calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1)));
167
+ max-height: max(36px, calc(var(--titlebar-h, env(titlebar-area-height, 32px)) * var(--anti-zoom, 1)));
163
168
  }
164
169
  body.is-wco .sidebar-brand,
165
170
  body.is-wco .sidebar-brand-button,