mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
.Add types for ModelView CSS properties (#7465)
This commit is contained in:
@@ -57,8 +57,7 @@ export class BdcDashboard {
|
||||
{
|
||||
flexFlow: 'column',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}).component();
|
||||
|
||||
// ###########
|
||||
@@ -104,8 +103,7 @@ export class BdcDashboard {
|
||||
{
|
||||
flexFlow: 'row',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}).component();
|
||||
|
||||
rootContainer.addItem(this.mainAreaContainer, { flex: '0 0 100%' });
|
||||
@@ -118,8 +116,7 @@ export class BdcDashboard {
|
||||
{
|
||||
flexFlow: 'column',
|
||||
width: navWidth,
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}
|
||||
).component();
|
||||
|
||||
|
||||
@@ -53,8 +53,7 @@ export class BdcDashboardOverviewPage {
|
||||
{
|
||||
flexFlow: 'column',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}).component();
|
||||
|
||||
// ##############
|
||||
@@ -109,7 +108,7 @@ export class BdcDashboardOverviewPage {
|
||||
|
||||
overviewHeaderContainer.addItem(this.lastUpdatedLabel, { CSSStyles: { 'margin-left': '45px' } });
|
||||
|
||||
const overviewContainer = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'column', width: '100%', height: '100%', alignItems: 'left' }).component();
|
||||
const overviewContainer = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'column', width: '100%', height: '100%' }).component();
|
||||
|
||||
// Service Status header row
|
||||
const serviceStatusHeaderRow = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'row' }).component();
|
||||
@@ -144,7 +143,7 @@ export class BdcDashboardOverviewPage {
|
||||
.component();
|
||||
rootContainer.addItem(endpointsLabel, { CSSStyles: { 'padding-left': '10px', ...cssStyles.title } });
|
||||
|
||||
const endpointsContainer = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'column', width: '100%', height: '100%', alignItems: 'left' }).component();
|
||||
const endpointsContainer = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'column', width: '100%', height: '100%' }).component();
|
||||
|
||||
// Service endpoints header row
|
||||
const endpointsHeaderRow = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'row' }).component();
|
||||
|
||||
@@ -60,8 +60,7 @@ export class BdcDashboardResourceStatusPage {
|
||||
{
|
||||
flexFlow: 'column',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}).component();
|
||||
|
||||
// ##############################
|
||||
|
||||
@@ -35,16 +35,14 @@ export class BdcServiceStatusPage {
|
||||
{
|
||||
flexFlow: 'column',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
alignItems: 'left'
|
||||
height: '100%'
|
||||
}).component();
|
||||
|
||||
this.resourceHeader = this.modelView.modelBuilder.flexContainer().withLayout(
|
||||
{
|
||||
flexFlow: 'row',
|
||||
width: '100%',
|
||||
height: '25px',
|
||||
alignItems: 'left'
|
||||
height: '25px'
|
||||
}
|
||||
).component();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user