Fix #68977 - search input has unnecessary padding

This commit is contained in:
Rob Lourens 2019-02-19 23:14:51 +00:00
parent 434407d3d5
commit 2b6eec8da9
4 changed files with 4 additions and 11 deletions

View file

@ -13,6 +13,10 @@
width: 100%;
}
.monaco-findInput .monaco-inputbox > .wrapper > .input {
width: 100% !important;
}
.monaco-findInput > .controls {
position: absolute;
top: 3px;

View file

@ -79,9 +79,6 @@
height: 25px;
}
.monaco-editor .find-widget > .find-part .monaco-inputbox > .wrapper > .input {
width: 100% !important;
}
.monaco-editor .find-widget > .find-part .monaco-inputbox > .wrapper > .input,
.monaco-editor .find-widget > .replace-part .monaco-inputbox > .wrapper > .input {
padding-top: 2px;

View file

@ -39,10 +39,6 @@
flex: 1;
}
.monaco-workbench .simple-find-part .monaco-findInput .monaco-inputbox .wrapper .input {
width: 100% !important;
}
.monaco-workbench .simple-find-part .button {
min-width: 20px;
width: 20px;

View file

@ -2,7 +2,3 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-workbench .simple-find-part .monaco-inputbox > .wrapper > .input {
width: 100% !important;
}