Collapse some equivalent rules to reference files only once

This commit is contained in:
Alex Dima
2016-06-07 17:55:06 +02:00
parent 6838f753bd
commit d436ded577
6 changed files with 18 additions and 93 deletions

View File

@@ -75,27 +75,17 @@
background: #555;
}
.hc-black .monaco-findInput > .controls > .custom-checkbox.case-sensitive,
.vs-dark .monaco-findInput > .controls > .custom-checkbox.case-sensitive {
background: url('case-sensitive-dark.svg') center center no-repeat;
}
.hc-black .monaco-findInput > .controls > .custom-checkbox.whole-word,
.vs-dark .monaco-findInput > .controls > .custom-checkbox.whole-word {
background: url('whole-word-dark.svg') center center no-repeat;
}
.hc-black .monaco-findInput > .controls > .custom-checkbox.regex,
.vs-dark .monaco-findInput > .controls > .custom-checkbox.regex {
background: url('regex-dark.svg') center center no-repeat;
}
/* High Contrast Theming */
.hc-black .monaco-findInput > .controls > .custom-checkbox.case-sensitive:before {
content: url('case-sensitive-dark.svg');
}
.hc-black .monaco-findInput > .controls > .custom-checkbox.whole-word:before {
content: url('whole-word-dark.svg');
}
.hc-black .monaco-findInput > .controls > .custom-checkbox.regex:before {
content: url('regex-dark.svg');
}