Merge pull request #203738 from microsoft/tyriar/203652

Remove duplicate styles
This commit is contained in:
Daniel Imms 2024-01-29 12:33:55 -08:00 committed by GitHub
commit 1dcd56023b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,64 +132,6 @@
color: var(--vscode-editorSuggestWidget-focusHighlightForeground);
}
/** Styles for each row in the list element **/
.workbench-suggest-widget .monaco-list .monaco-list-row {
display: flex;
-mox-box-sizing: border-box;
box-sizing: border-box;
padding-right: 10px;
background-repeat: no-repeat;
background-position: 2px 2px;
white-space: nowrap;
cursor: pointer;
touch-action: none;
}
.workbench-suggest-widget .monaco-list .monaco-list-row.focused {
color: var(--vscode-editorSuggestWidget-selectedForeground);
}
.workbench-suggest-widget .monaco-list .monaco-list-row.focused .codicon {
color: var(--vscode-editorSuggestWidget-selectedIconForeground);
}
.workbench-suggest-widget .monaco-list .monaco-list-row > .contents {
flex: 1;
height: 100%;
overflow: hidden;
padding-left: 2px;
}
.workbench-suggest-widget .monaco-list .monaco-list-row > .contents > .main {
display: flex;
overflow: hidden;
text-overflow: ellipsis;
white-space: pre;
justify-content: space-between;
}
.workbench-suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left,
.workbench-suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right {
display: flex;
}
.workbench-suggest-widget .monaco-list .monaco-list-row:not(.focused) > .contents > .main .monaco-icon-label {
color: var(--vscode-editorSuggestWidget-foreground);
}
.workbench-suggest-widget:not(.frozen) .monaco-highlighted-label .highlight {
font-weight: bold;
}
.workbench-suggest-widget .monaco-list .monaco-list-row > .contents > .main .monaco-highlighted-label .highlight {
color: var(--vscode-editorSuggestWidget-highlightForeground);
}
.workbench-suggest-widget .monaco-list .monaco-list-row.focused > .contents > .main .monaco-highlighted-label .highlight {
color: var(--vscode-editorSuggestWidget-focusHighlightForeground);
}
/** Styles for each row in the list **/
.workbench-suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated {