Skip to content

Commit

Permalink
Poor coloring of View group labels in high contrast mode (fixes #16739)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 7, 2016
1 parent 28ce2ba commit 49828ad
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/vs/base/parts/quickopen/browser/quickopen.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,14 @@

.quick-open-widget .quick-open-tree .results-group {
float: right;
opacity: 0.6;
margin-right: 18px;
}

.vs .quick-open-widget .quick-open-tree .results-group,
.vs-dark .quick-open-widget .quick-open-tree .results-group {
opacity: 0.6;
}

.quick-open-widget .quick-open-tree .content.has-actions .results-group {
margin-right: 34px; /* push more to the right if we have actions */
}
Expand Down Expand Up @@ -148,6 +152,10 @@
color: #0097FB;
}

.hc-black .quick-open-widget .quick-open-tree .results-group {
color: white;
}

.quick-open-widget .quick-open-tree .results-group-separator {
border-top-color: #CCCEDB;
}
Expand All @@ -156,6 +164,10 @@
border-top-color: #3F3F46;
}

.hc-black .quick-open-widget .quick-open-tree .results-group-separator {
border-top-color: white;
}

.quick-open-widget .quick-open-tree .monaco-highlighted-label .highlight {
color: #007ACC;
font-weight: bold;
Expand Down

0 comments on commit 49828ad

Please sign in to comment.