mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Graph - use list active selection color variables (#274900)
This commit is contained in:
@@ -193,13 +193,22 @@
|
|||||||
stroke: transparent !important;
|
stroke: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scm-view .monaco-list-row.focused.selected .history-item > .graph-container > .graph > circle:nth-of-type(2) {
|
.scm-view.scm-history-view > .monaco-list:focus .monaco-list-row.selected .history-item > .graph-container > .graph > circle:nth-of-type(2) {
|
||||||
stroke: var(--vscode-list-inactiveSelectionBackground) !important;
|
stroke: var(--vscode-list-activeSelectionBackground);
|
||||||
}
|
}
|
||||||
|
|
||||||
.scm-view .monaco-list-row.focused.selected .history-item > .graph-container.incoming-changes > .graph > circle:last-child,
|
.scm-view.scm-history-view > .monaco-list:focus .monaco-list-row.selected .history-item > .graph-container.incoming-changes > .graph > circle:last-child,
|
||||||
.scm-view .monaco-list-row.focused.selected .history-item > .graph-container.outgoing-changes > .graph > circle:last-child {
|
.scm-view.scm-history-view > .monaco-list:focus .monaco-list-row.selected .history-item > .graph-container.outgoing-changes > .graph > circle:last-child {
|
||||||
fill: var(--vscode-list-inactiveSelectionBackground) !important;
|
fill: var(--vscode-list-activeSelectionBackground);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scm-view.scm-history-view > .monaco-list .monaco-list-row.focused .history-item > .graph-container > .graph > circle:nth-of-type(2) {
|
||||||
|
stroke: var(--vscode-list-inactiveSelectionBackground);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scm-view.scm-history-view > .monaco-list .monaco-list-row.focused .history-item > .graph-container.incoming-changes > .graph > circle:last-child,
|
||||||
|
.scm-view.scm-history-view > .monaco-list .monaco-list-row.focused .history-item > .graph-container.outgoing-changes > .graph > circle:last-child {
|
||||||
|
fill: var(--vscode-list-inactiveSelectionBackground);
|
||||||
}
|
}
|
||||||
|
|
||||||
.scm-view .monaco-list-row .history-item > .label-container {
|
.scm-view .monaco-list-row .history-item > .label-container {
|
||||||
@@ -682,15 +691,6 @@
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scm-history-view .monaco-list-row.focused.selected {
|
|
||||||
background-color: var(--vscode-list-inactiveSelectionBackground) !important;
|
|
||||||
color: var(--vscode-list-inactiveSelectionForeground) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.scm-history-view .monaco-list-row.focused.selected .codicon {
|
|
||||||
color: var(--vscode-list-inactiveSelectionIconForeground) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.scm-history-view .monaco-list-row > .monaco-tl-row > .monaco-tl-twistie.force-no-twistie {
|
.scm-history-view .monaco-list-row > .monaco-tl-row > .monaco-tl-twistie.force-no-twistie {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user