Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions src/styles/composer.css
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,11 @@
color: var(--text-strong);
}

.composer-select option {
background-color: var(--surface-popover);
color: var(--text-strong);
}

@media (max-width: 720px) {
.app.layout-phone .composer-input {
grid-template-columns: minmax(0, 1fr) auto;
Expand Down
5 changes: 5 additions & 0 deletions src/styles/diff.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
background-repeat: no-repeat;
}

.git-panel-select-input option {
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

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

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 {

Copilot uses AI. Check for mistakes.
background-color: var(--surface-popover);
color: var(--text-strong);
}

.git-panel-select-icon {
display: inline-flex;
align-items: center;
Expand Down
5 changes: 5 additions & 0 deletions src/styles/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@
opacity: 0.6;
}

.home-usage-select option {
background-color: var(--surface-popover);
color: var(--text-strong);
}

.home-usage-toggle {
display: inline-flex;
align-items: center;
Expand Down
5 changes: 5 additions & 0 deletions src/styles/prompts.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@
padding: 6px 8px;
}

.prompt-scope-select option {
background-color: var(--surface-popover);
color: var(--text-strong);
}

.prompt-editor-actions {
display: flex;
gap: 8px;
Expand Down
Loading