mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 07:15:54 +01:00
#7247 show marker source information
This commit is contained in:
@@ -35,17 +35,6 @@
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.vs-dark .monaco-inputbox > .wrapper {
|
||||
background-color: var(--input-bgcolor);
|
||||
}
|
||||
|
||||
.monaco-inputbox > .wrapper .icon {
|
||||
width: 16px;
|
||||
height: 22px;
|
||||
}
|
||||
|
||||
.monaco-inputbox > .wrapper > .input {
|
||||
|
||||
@@ -27,7 +27,6 @@ export interface IInputOptions {
|
||||
validationOptions?: IInputValidationOptions;
|
||||
flexibleHeight?: boolean;
|
||||
actions?: IAction[];
|
||||
iconClass?: string;
|
||||
}
|
||||
|
||||
export interface IInputValidator {
|
||||
@@ -97,9 +96,6 @@ export class InputBox extends Widget {
|
||||
let tagName = this.options.flexibleHeight ? 'textarea' : 'input';
|
||||
|
||||
let wrapper = dom.append(this.element, $('.wrapper'));
|
||||
if (this.options.iconClass) {
|
||||
dom.append(wrapper, $('span.icon.' + this.options.iconClass));
|
||||
}
|
||||
this.input = <HTMLInputElement>dom.append(wrapper, $(tagName + '.input'));
|
||||
this.input.setAttribute('autocorrect', 'off');
|
||||
this.input.setAttribute('autocapitalize', 'off');
|
||||
|
||||
Reference in New Issue
Block a user