Remove the gray background/gray text for pre-selected values (#17005)

* Correct spelling

* Change styling for pre-selected values
This commit is contained in:
goyal-anjali
2021-09-09 15:14:28 +05:30
committed by GitHub
parent 69314cf764
commit 2cc4129f5c
3 changed files with 62 additions and 33 deletions

View File

@@ -19,8 +19,8 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
private _view!: azdata.ModelView;
private _form!: azdata.FormBuilder;
private _statusLoadingComponent!: azdata.LoadingComponent;
private _subscription!: azdata.InputBoxComponent;
private _location!: azdata.InputBoxComponent;
private _subscription!: azdata.TextComponent;
private _location!: azdata.TextComponent;
private _resourceGroupDropdown!: azdata.DropDownComponent;
private _dmsDropdown!: azdata.DropDownComponent;
@@ -163,10 +163,13 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
'font-weight': 'bold',
}
}).component();
this._subscription = this._view.modelBuilder.inputBox().withProps({
this._subscription = this._view.modelBuilder.text().withProps({
enabled: false,
required: true,
width: WIZARD_INPUT_COMPONENT_WIDTH,
CSSStyles: {
'font-size': '13px',
'margin': '0px 0px'
}
}).component();
const locationLabel = this._view.modelBuilder.text().withProps({
@@ -177,10 +180,13 @@ export class IntergrationRuntimePage extends MigrationWizardPage {
'font-weight': 'bold',
}
}).component();
this._location = this._view.modelBuilder.inputBox().withProps({
this._location = this._view.modelBuilder.text().withProps({
enabled: false,
required: true,
width: WIZARD_INPUT_COMPONENT_WIDTH,
CSSStyles: {
'font-size': '13px',
'margin': '0px 0px'
}
}).component();
const resourceGroupLabel = this._view.modelBuilder.text().withProps({