Fix matchCount contrast in dark theme

This commit is contained in:
Alex Dima
2016-01-11 11:40:48 +01:00
parent 42fa7d777b
commit 85de39a54d

View File

@@ -41,7 +41,6 @@
min-width: 20px;
text-align: center;
background: #ddd;
border-radius: 5px;
padding: 0 4px;
@@ -52,6 +51,10 @@
box-sizing: border-box;
}
.vs .monaco-findInput > .controls > .matchCount {
background: #ddd;
}
.vs .monaco-findInput > .controls > .custom-checkbox.case-sensitive {
background: url('case-sensitive.svg') center center no-repeat;
}
@@ -73,6 +76,10 @@
background-color: #333;
}
.vs-dark .monaco-findInput > .controls > .matchCount {
background: #555;
}
.vs-dark .monaco-findInput > .controls > .custom-checkbox.case-sensitive {
background: url('case-sensitive-dark.svg') center center no-repeat;
}