mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 17:23:51 -05:00
Standardize font styling on sql migration extension (#16968)
This commit is contained in:
@@ -11,6 +11,7 @@ import * as constants from '../constants/strings';
|
||||
import { createHeadingTextComponent, createInformationRow, createLabelTextComponent } from './wizardController';
|
||||
import { getResourceGroupFromId } from '../api/azure';
|
||||
import { TargetDatabaseSummaryDialog } from '../dialog/targetDatabaseSummary/targetDatabaseSummaryDialog';
|
||||
import * as styles from '../constants/styles';
|
||||
|
||||
export class SummaryPage extends MigrationWizardPage {
|
||||
private _view!: azdata.ModelView;
|
||||
@@ -49,10 +50,9 @@ export class SummaryPage extends MigrationWizardPage {
|
||||
url: '',
|
||||
label: this.migrationStateModel._migrationDbs.length.toString(),
|
||||
CSSStyles: {
|
||||
...styles.BODY_CSS,
|
||||
'margin': '0px',
|
||||
'width': '300px',
|
||||
'font-size': '13px',
|
||||
'line-height': '24px'
|
||||
}
|
||||
}).component();
|
||||
|
||||
@@ -70,10 +70,8 @@ export class SummaryPage extends MigrationWizardPage {
|
||||
[
|
||||
createLabelTextComponent(this._view, constants.SUMMARY_DATABASE_COUNT_LABEL,
|
||||
{
|
||||
'margin': '0px',
|
||||
...styles.BODY_CSS,
|
||||
'width': '300px',
|
||||
'font-size': '13px',
|
||||
'line-height': '24px'
|
||||
}
|
||||
),
|
||||
targetDatabaseHyperlink
|
||||
@@ -87,7 +85,7 @@ export class SummaryPage extends MigrationWizardPage {
|
||||
|
||||
this._flexContainer.addItems(
|
||||
[
|
||||
await createHeadingTextComponent(this._view, constants.ACCOUNTS_SELECTION_PAGE_TITLE),
|
||||
await createHeadingTextComponent(this._view, constants.ACCOUNTS_SELECTION_PAGE_TITLE, true),
|
||||
createInformationRow(this._view, constants.ACCOUNTS_SELECTION_PAGE_TITLE, this.migrationStateModel._azureAccount.displayInfo.displayName),
|
||||
|
||||
await createHeadingTextComponent(this._view, constants.SOURCE_DATABASES),
|
||||
|
||||
Reference in New Issue
Block a user