debug colors: compress css selectors

This commit is contained in:
isidor 2021-05-14 17:28:07 +02:00
parent 828e83defc
commit f8a3cef533
No known key found for this signature in database
GPG key ID: F9280366A8370105

View file

@ -135,9 +135,7 @@ export function registerColors() {
* Only visible when there are more active debug sessions/threads running.
*/
.debug-pane .debug-call-stack .thread > .state.label,
.debug-pane .debug-call-stack .session > .state.label,
.debug-pane .monaco-list-row.selected .thread > .state.label,
.debug-pane .monaco-list-row.selected .session > .state.label {
.debug-pane .debug-call-stack .session > .state.label {
background-color: ${debugViewStateLabelBackgroundColor};
color: ${debugViewStateLabelForegroundColor};
}
@ -147,9 +145,7 @@ export function registerColors() {
* and thread paused due to a thrown exception.
*/
.debug-pane .debug-call-stack .thread > .state.label.exception,
.debug-pane .debug-call-stack .session > .state.label.exception,
.debug-pane .monaco-list-row.selected .thread > .state.label.exception,
.debug-pane .monaco-list-row.selected .session > .state.label.exception {
.debug-pane .debug-call-stack .session > .state.label.exception {
background-color: ${debugViewExceptionLabelBackgroundColor};
color: ${debugViewExceptionLabelForegroundColor};
}