Bump to 0.9.6
CI / Static checks (push) Successful in 1m9s
CI / Build and push image (push) Successful in 1m3s

- Themed scrollbar: thumb/track colors follow --border/--muted-foreground
  so the scrollbar matches light/dark instead of the OS default

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BuWtppPBizG2NQRa31FCRa
This commit is contained in:
2026-09-05 19:45:17 +02:00
co-authored by Claude Sonnet 5
parent 5a6da7e507
commit d96a28f6cc
2 changed files with 24 additions and 1 deletions
+23
View File
@@ -134,6 +134,29 @@
}
}
/* Themed scrollbar - follows --border/--muted-foreground so it swaps with
light/dark like everything else, instead of the OS-default bar. */
* {
scrollbar-width: thin;
scrollbar-color: var(--muted-foreground) transparent;
}
*::-webkit-scrollbar {
width: 10px;
height: 10px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: var(--border);
border-radius: 999px;
border: 2px solid transparent;
background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
background-color: var(--muted-foreground);
}
/* Animated signature-sweep background - sits behind everything; cards use
.bp-glass (translucent + blurred) so it shines through instead of being
fully hidden behind an opaque card surface. */