Use correct colors for highlights (#208214)

I didn't realize there were 2 colors. This makes sure they're set correctly.

Fixes https://github.com/microsoft/vscode/issues/208213
This commit is contained in:
Tyler James Leonhardt 2024-03-20 09:12:35 -07:00 committed by GitHub
parent b329f9c2a5
commit 4f1d15d9da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -263,11 +263,16 @@
overflow: hidden;
}
.quick-input-list .monaco-highlighted-label .highlight {
/* preserve list-like styling instead of tree-like styling */
.quick-input-list .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
font-weight: bold;
/* preserve list-like styling instead of tree-like styling */
background-color: unset;
color: var(--vscode-list-highlightForeground) !important;
}
/* preserve list-like styling instead of tree-like styling */
.quick-input-list .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
color: var(--vscode-list-focusHighlightForeground) !important;
background-color: transparent;
}
.quick-input-list .quick-input-list-entry .quick-input-list-separator {