changes
parent
56838f8c4b
commit
91dc832be5
|
|
@ -13,7 +13,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
/* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
|
||||||
height: 50px;
|
height: 50px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
|
@ -303,6 +303,7 @@
|
||||||
border: solid 1px rgba(0, 0, 0, 0.124);
|
border: solid 1px rgba(0, 0, 0, 0.124);
|
||||||
border-radius: 0px 8px 8px 0px;
|
border-radius: 0px 8px 8px 0px;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dateButton mat-icon {
|
.dateButton mat-icon {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<div class="head">
|
<div class="head" style="">
|
||||||
<h2>W&I Kalender</h2>
|
<div style="display: flex; align-items: center; gap: 15px;">
|
||||||
|
<h2 style="padding-top: 3px;">W&I Kalender</h2>
|
||||||
|
|
||||||
<!-- Preset Picker -->
|
<!-- Preset Picker -->
|
||||||
<mat-form-field appearance="fill" style="width: 300px;">
|
<div appearance="fill" style="width: 200px;padding-left: 15px; padding-top: 3px;">
|
||||||
<mat-select [(value)]="selectedPreset" (selectionChange)="selectPreset($event)">
|
<mat-select [(value)]="selectedPreset" (selectionChange)="selectPreset($event)">
|
||||||
<mat-optgroup *ngFor="let group of presetGroups" [label]="group.name" [disabled]="group.disabled">
|
<mat-optgroup *ngFor="let group of presetGroups" [label]="group.name" [disabled]="group.disabled">
|
||||||
<mat-option *ngFor="let preset of group.presets" [value]="preset">
|
<mat-option *ngFor="let preset of group.presets" [value]="preset">
|
||||||
|
|
@ -12,7 +13,7 @@
|
||||||
</mat-option>
|
</mat-option>
|
||||||
</mat-optgroup>
|
</mat-optgroup>
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</div>
|
||||||
<button mat-basic-button *ngIf="isUserPreset" class="editButton"
|
<button mat-basic-button *ngIf="isUserPreset" class="editButton"
|
||||||
(click)="openRenameDialog()"><mat-icon>edit</mat-icon></button>
|
(click)="openRenameDialog()"><mat-icon>edit</mat-icon></button>
|
||||||
<button mat-basic-button *ngIf="isUserPreset" class="deleteButton"
|
<button mat-basic-button *ngIf="isUserPreset" class="deleteButton"
|
||||||
|
|
@ -29,13 +30,15 @@
|
||||||
</mat-form-field> -->
|
</mat-form-field> -->
|
||||||
|
|
||||||
<!-- Language Picker -->
|
<!-- Language Picker -->
|
||||||
<mat-button-toggle-group style="height: 70%; font-size: 13px; border-radius: 8px;" (change)="languageChange($event)"
|
<mat-button-toggle-group style="height: 20%; font-size: 13px; border-radius: 8px;" (change)="languageChange($event)"
|
||||||
name="languagePicker" aria-label="Language Picker" [(ngModel)]="languageService.language">
|
name="languagePicker" aria-label="Language Picker" [(ngModel)]="languageService.language">
|
||||||
<mat-button-toggle style="display: flex; align-items: center;" *ngFor="let lang of languageService.languages"
|
<mat-button-toggle style="display: flex; align-items: center;" *ngFor="let lang of languageService.languages"
|
||||||
[value]="lang">
|
[value]="lang">
|
||||||
{{lang}}
|
{{lang}}
|
||||||
</mat-button-toggle>
|
</mat-button-toggle>
|
||||||
</mat-button-toggle-group>
|
</mat-button-toggle-group>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- User -->
|
<!-- User -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue