From 078c396a1ac0424f1f0b5f7b9d79d2aed7d30c99 Mon Sep 17 00:00:00 2001 From: Stefan Plociennik <stefan.plociennik@mni.thm.de> Date: Mon, 14 Jun 2021 13:27:22 +0200 Subject: [PATCH] changes color of add to list buttons for better visability with different themes --- .../topic-cloud-administration.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/shared/_dialogs/topic-cloud-administration/topic-cloud-administration.component.html b/src/app/components/shared/_dialogs/topic-cloud-administration/topic-cloud-administration.component.html index ac346dde1..51f976f30 100644 --- a/src/app/components/shared/_dialogs/topic-cloud-administration/topic-cloud-administration.component.html +++ b/src/app/components/shared/_dialogs/topic-cloud-administration/topic-cloud-administration.component.html @@ -51,7 +51,7 @@ <input matInput id="bad-word-input" [(ngModel)]="newProfanityWord"> </mat-form-field> - <button mat-stroked-button color="primary" class="margin-left" (click)="addProfanityWord()"> + <button mat-stroked-button color="secondary" class="margin-left" (click)="addProfanityWord()"> {{'topic-cloud-dialog.add-word' | translate}} </button> @@ -87,7 +87,7 @@ <input matInput id="blacklist-word-input" [(ngModel)]="newBlacklistWord"> </mat-form-field> - <button mat-stroked-button color="primary" class="margin-left" (click)="addBlacklistWord()"> + <button mat-stroked-button color="secondary" class="margin-left" (click)="addBlacklistWord()"> {{'topic-cloud-dialog.add-word' | translate}} </button> <mat-list role="list" *ngIf="showBlacklistWordList && blacklist.length > 0" class="margin-bottom"> -- GitLab