Skip to content
Merged
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
11 changes: 8 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ kbd {
renders the group title as .sidebar-group-header (the old #sidebar-title id
no longer exists), and the inner h3 inherits font/size/color from it. */
#navigation-items .sidebar-group-header {
font-weight: 300 !important; /* Inter Light */
font-size: 11px !important;
font-weight: 400 !important;
letter-spacing: 0.09em;
color: #60646c !important;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Light sidebar eyebrows lost color

Medium Severity

The base #navigation-items .sidebar-group-header rule no longer sets a muted color, and nothing replaces it for light mode. Dark mode still overrides with rgba(237, 238, 240, 0.55), but with appearance.default set to light, section labels inherit Palm defaults and may read as strongly as nav links instead of quiet eyebrows.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit e4cd4c8. Configure here.


}

html.dark #navigation-items .sidebar-group-header {
color: rgba(237, 238, 240, 0.55) !important;
}
Expand All @@ -49,6 +49,7 @@ html.dark #navigation-items .sidebar-group-header {
padding-top: 1rem;
border-top: 1px solid rgba(33, 34, 37, 0.1);
}

html.dark #navigation-items div[class*="mt-"] > .sidebar-group-header {
border-top-color: rgba(237, 238, 240, 0.1);
}
Expand Down Expand Up @@ -243,3 +244,7 @@ html.dark .callout[class*="yellow"] {
html.dark .callout[class*="yellow"] svg {
color: #CAB168 !important;
}

.dark .card:hover {
border-color: rgb(223 223 223) !important;
}
Loading