From 7f122a9d5fe3f9c92091a00492a2bc005c274cc1 Mon Sep 17 00:00:00 2001 From: Vladyslav_Prykhodko Date: Mon, 6 Mar 2023 11:27:07 +0200 Subject: [PATCH] UI: Fixed build after merge --- .../rule-table/alarm-severities-list.component.html | 9 ++++----- .../template-autocomplete.component.html | 10 +++++----- .../shared/components/string-items-list.component.html | 9 ++++----- .../shared/components/string-items-list.component.ts | 2 +- ui-ngx/src/styles.scss | 8 ++++++++ 5 files changed, 22 insertions(+), 16 deletions(-) diff --git a/ui-ngx/src/app/modules/home/pages/notification-center/rule-table/alarm-severities-list.component.html b/ui-ngx/src/app/modules/home/pages/notification-center/rule-table/alarm-severities-list.component.html index 09cdef64c0..ef06181c97 100644 --- a/ui-ngx/src/app/modules/home/pages/notification-center/rule-table/alarm-severities-list.component.html +++ b/ui-ngx/src/app/modules/home/pages/notification-center/rule-table/alarm-severities-list.component.html @@ -18,14 +18,13 @@
alarm.alarm-severity-list - - + {{ alarmSeverityTranslationMap.get(severity) | translate }} close - + - + @@ -41,11 +41,11 @@ > - - + + {{ notificationDeliveryMethodTranslateMap.get(method.key) | translate }} - - + +
diff --git a/ui-ngx/src/app/shared/components/string-items-list.component.html b/ui-ngx/src/app/shared/components/string-items-list.component.html index 63e44d73b3..a3820211b6 100644 --- a/ui-ngx/src/app/shared/components/string-items-list.component.html +++ b/ui-ngx/src/app/shared/components/string-items-list.component.html @@ -18,21 +18,20 @@
{{ label }} - - + {{item}} close - + - + {{ hint }} {{ requiredText }} diff --git a/ui-ngx/src/app/shared/components/string-items-list.component.ts b/ui-ngx/src/app/shared/components/string-items-list.component.ts index e7f50180c9..454b6cd51a 100644 --- a/ui-ngx/src/app/shared/components/string-items-list.component.ts +++ b/ui-ngx/src/app/shared/components/string-items-list.component.ts @@ -73,7 +73,7 @@ export class StringItemsListComponent implements ControlValueAccessor{ floatLabel: FloatLabelType = 'auto'; @Input() - appearance: MatFormFieldAppearance = 'standard'; + appearance: MatFormFieldAppearance = 'fill'; @Input() @coerceBoolean() diff --git a/ui-ngx/src/styles.scss b/ui-ngx/src/styles.scss index 883ccaf72f..42fa7ec965 100644 --- a/ui-ngx/src/styles.scss +++ b/ui-ngx/src/styles.scss @@ -1446,6 +1446,14 @@ mat-label { white-space: pre-line; } + // TinyMCE + + .tox-tinymce { + button:not(.mat-mdc-menu-item):not(.mat-sort-header-button) { + text-transform: none; + } + } + .tb-toast-panel { pointer-events: none !important; }