@bakapiano/ccsm 0.17.9 → 0.17.10
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 +1 -1
- package/public/css/wco.css +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bakapiano/ccsm",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.10",
|
|
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",
|
package/public/css/wco.css
CHANGED
|
@@ -81,7 +81,15 @@ body.is-app:not(.is-wco) .page-title-bar {
|
|
|
81
81
|
display: none;
|
|
82
82
|
}
|
|
83
83
|
body.is-app:not(.is-wco) .app {
|
|
84
|
-
|
|
84
|
+
/* Hairline separator under the OS title bar. Painted as an inset
|
|
85
|
+
box-shadow rather than a border so it doesn't change .app's box
|
|
86
|
+
model — a real border-top added 1px to .app's height, and the
|
|
87
|
+
grid's implicit row auto-sized off content (.main reporting 720)
|
|
88
|
+
rather than the (now 719px) container, so .main overflowed the
|
|
89
|
+
viewport by exactly 1px and put a permanent vertical scrollbar
|
|
90
|
+
down the right of the terminal page. Inset shadow draws the same
|
|
91
|
+
line with zero layout cost. */
|
|
92
|
+
box-shadow: inset 0 1px 0 var(--border);
|
|
85
93
|
}
|
|
86
94
|
/* With page-title-bar hidden, session-pane's `margin-top: calc(-1 *
|
|
87
95
|
var(--s-4))` — designed to flush it against the (now invisible)
|