dashboard #1

Merged
andi merged 118 commits from dashboard into master 2024-09-29 06:47:35 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 4b4932a636 - Show all commits

View File

@@ -2,6 +2,7 @@
:host { :host {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height:100%;
} }
pdb-visualization-page { pdb-visualization-page {
position: relative; position: relative;
@@ -9,7 +10,8 @@
height: calc(100% - 150px); height: calc(100% - 150px);
flex-grow: 1; flex-grow: 1;
} }
div[mat-dialog-actions] { .mat-mdc-dialog-content {
max-height: unset;
} }
</style> </style>
<h1 mat-dialog-title>Add Plot</h1> <h1 mat-dialog-title>Add Plot</h1>

View File

@@ -1,6 +1,6 @@
<h1 mat-dialog-title>Add Text</h1> <h1 mat-dialog-title>Add Text</h1>
<div mat-dialog-content> <div mat-dialog-content>
<mat-form-field appearance="fill"> <mat-form-field class="pdb-form-full-width">
<mat-label>Text</mat-label> <mat-label>Text</mat-label>
<textarea matInput [(ngModel)]="text" #textElement focus></textarea> <textarea matInput [(ngModel)]="text" #textElement focus></textarea>
</mat-form-field> </mat-form-field>

View File

@@ -1,10 +1,10 @@
<h1 mat-dialog-title>Create a new dashboard</h1> <h1 mat-dialog-title>Create a new dashboard</h1>
<div mat-dialog-content> <div mat-dialog-content>
<mat-form-field appearance="fill"> <mat-form-field class="pdb-form-full-width">
<mat-label>Name</mat-label> <mat-label>Name</mat-label>
<input matInput [(ngModel)]="data.name" #name> <input matInput [(ngModel)]="data.name" #name>
</mat-form-field> </mat-form-field>
<mat-form-field appearance="fill"> <mat-form-field class="pdb-form-full-width">
<mat-label>Description</mat-label> <mat-label>Description</mat-label>
<textarea matInput [(ngModel)]="data.description"></textarea> <textarea matInput [(ngModel)]="data.description"></textarea>
</mat-form-field> </mat-form-field>