mirror of
https://github.com/bwya77/vscode-dark-islands.git
synced 2026-05-09 08:25:35 +02:00
[GH-ISSUE #76] Button dropdown separator visible as blue line #56
Labels
No labels
bug
bug
duplicate
enhancement
enhancement
Missing Info
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vscode-dark-islands#56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bwya77 on GitHub (Feb 19, 2026).
Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/76
Description
Split button dropdowns (e.g., the commit button in Source Control) show a visible blue separator line between the main button and
the dropdown arrow. This breaks the clean look of the theme.
Steps to reproduce
Fix
Two changes are needed:
themes/islands-dark.json — Add transparent values for button separator tokens:
"button.separator": "#548af700",
"button.border": "#00000000"
settings.json (custom-ui-style.stylesheet section) — Hide the separator element via CSS, since it inherits background-color from
--vscode-button-background which overrides the theme token:
".monaco-button-dropdown-separator": {
"display": "none !important"
}
Both changes are required — the theme token alone isn't sufficient because the DOM element's inline style uses
var(--vscode-button-background) for its background color.