Show matches count in find widget

This commit is contained in:
Alex Dima
2016-01-11 10:37:05 +01:00
parent f44a183bd5
commit 57656a454b
4 changed files with 102 additions and 4 deletions

View File

@@ -33,6 +33,25 @@
right: 2px;
}
.monaco-findInput > .controls > .matchCount {
margin-left: 2px;
float: left;
overflow: hidden;
max-width: 30px;
min-width: 20px;
text-align: center;
background: #ddd;
border-radius: 5px;
padding: 0 4px;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.vs .monaco-findInput > .controls > .custom-checkbox.case-sensitive {
background: url('case-sensitive.svg') center center no-repeat;
}