fix: element invisible on Windows drop down menus#444
Merged
Dimillian merged 1 commit intoDimillian:mainfrom Feb 16, 2026
Merged
fix: element invisible on Windows drop down menus#444Dimillian merged 1 commit intoDimillian:mainfrom
Dimillian merged 1 commit intoDimillian:mainfrom
Conversation
in windows for not selected items
There was a problem hiding this comment.
Pull request overview
This pull request fixes a visibility issue with dropdown menu options on Windows by applying consistent background and text color styling to ensure dropdown items are properly visible when not selected.
Changes:
- Applied
background-color: var(--surface-popover)andcolor: var(--text-strong)to option elements across multiple dropdown components - Fixes apply to prompts, home, git diff panel, and composer select dropdowns
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/styles/prompts.css | Added option styling for .prompt-scope-select dropdown |
| src/styles/home.css | Added option styling for .home-usage-select dropdown |
| src/styles/diff.css | Added option styling for .git-panel-select-input dropdown |
| src/styles/composer.css | Added option styling for .composer-select dropdown |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| background-repeat: no-repeat; | ||
| } | ||
|
|
||
| .git-panel-select-input option { |
There was a problem hiding this comment.
The same dropdown option styling fix should also be applied to the .git-root-select element found in this file (line 185). This select element will have the same visibility issue on Windows that this PR is fixing for other dropdowns.
Suggested change
| .git-panel-select-input option { | |
| .git-panel-select-input option, | |
| .git-root-select option { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
in windows for not selected items
before
after