Skip to content
Snippets Groups Projects
Commit e2e2ea46 authored by OZGCloud's avatar OZGCloud
Browse files

Merge branch 'master' into OZG-4706-Anordnung-Vorgangname

parents 86ad0839 e6857e31
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
$grey: #777;
$greyLight: rgba(0, 0, 0, 0.08);
$darkModeGreyLight: rgba(255, 255, 255, 0.6);
$background: #fafafa;
$dark-background: #303030;
......
......@@ -21,7 +21,7 @@
.az_icon {
grid-area: az_icon;
color: #c2c2c2;
color: $darkModeGreyLight;
margin-top: 12px;
&--active {
......@@ -57,3 +57,9 @@ mat-icon {
mat-dialog-content {
padding-top: 0.5rem !important;
}
:host-context(.dark) {
.az_icon {
color: $darkModeGreyLight;
}
}
\ No newline at end of file
import { COMMAND_ERROR_MESSAGES, CommandResource, hasError, isSuccessfulDone } from '@alfa-client/command-shared';
import { StateResource, createEmptyStateResource, hasContent, isClipboardReadSupported } from '@alfa-client/tech-shared';
import { SnackBarService } from '@alfa-client/ui';
import { VorgangService, VorgangWithEingangResource } from '@alfa-client/vorgang-shared';
import { Component, Inject, OnInit } from '@angular/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { Observable, map, of, startWith, tap } from 'rxjs';
import { AktenzeichenEditDialogData } from './aktenzeichen-edit-dialog.data';
import { AktenzeichenEditDialogFormservice } from './aktenzeichen-edit-dialog.formservice';
import { VorgangService, VorgangWithEingangResource } from '@alfa-client/vorgang-shared';
import { COMMAND_ERROR_MESSAGES, CommandResource, hasError, isSuccessfulDone } from '@alfa-client/command-shared';
import { createEmptyStateResource, hasContent, isClipboardReadSupported, StateResource } from '@alfa-client/tech-shared';
import { map, Observable, of, startWith, tap } from 'rxjs';
import { SnackBarService } from '@alfa-client/ui';
import { AktenzeichenEditDialogMessages } from './aktenzeichen-edit-dialog.message';
@Component({
......@@ -19,9 +19,9 @@ export class AktenzeichenEditDialogComponent implements OnInit {
vorgang: VorgangWithEingangResource;
public setAktenzeichenPending$: Observable<StateResource<CommandResource>> = of(createEmptyStateResource<CommandResource>());
public hasAktenzeichen$: Observable<boolean>;
public isPasteSupported = false;
setAktenzeichenPending$: Observable<StateResource<CommandResource>> = of(createEmptyStateResource<CommandResource>());
hasAktenzeichen$: Observable<boolean>;
isPasteSupported = false;
protected readonly AktenzeichenEditDialogFormservice = AktenzeichenEditDialogFormservice;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment