Update navbar CTA and fix Inkeep dark overlay#141
Conversation
- Rename CTA button from "Cloud console" to "Get Started" - Reduce CTA button border radius from 8px to 4px - Add dark-mode overlay fix to Inkeep search: the widget's `.dark:bg-overlay-dark` class was rendering a light grey overlay; override it with a proper dark semi-transparent background Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
Reviewed by Cursor Bugbot for commit dca2a16. Configure here.
| key: 'dark-search-overlay', | ||
| type: 'style', | ||
| value: '.dark\\:bg-overlay-dark { background-color: rgba(0, 0, 0, 0.75) !important; }', | ||
| }, |
There was a problem hiding this comment.
Overlay override ignores dark scope
Medium Severity
The new Inkeep theme style targets .dark\:bg-overlay-dark without a .dark ancestor. Tailwind dark utilities usually stay on the element in light mode while only taking effect under .dark, so this unscoped !important rule can force a 75% black backdrop when opening search in light mode.
Reviewed by Cursor Bugbot for commit dca2a16. Configure here.


Summary
.dark:bg-overlay-darkclass was rendering a light grey semi-transparent background; override it to use a proper dark overlay (rgba(0,0,0,0.75))Test plan
🤖 Generated with Claude Code
Note
Low Risk
Cosmetic navbar and Inkeep theme CSS only; no auth, data, or API behavior changes.
Overview
Updates docs site chrome: the custom navbar CTA is relabeled Get Started (still links to
clickhouse.cloud/signUp) and its border-radius is tightened from 8px to 4px.For Inkeep search, a new shadow-DOM theme.styles entry overrides
.dark:bg-overlay-darkso the modal backdrop usesrgba(0,0,0,0.75)in dark mode instead of a light grey overlay.Reviewed by Cursor Bugbot for commit dca2a16. Bugbot is set up for automated code reviews on this repo. Configure here.