From 165abfc9560067aa1fb74b7eaca19a00e007afd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Thu, 13 Jun 2019 11:55:59 +0200 Subject: [PATCH] Change placeholder color in room-join and comment-search --- .../shared/comment-list/comment-list.component.html | 2 -- .../shared/comment-list/comment-list.component.scss | 5 +++++ src/app/components/shared/room-join/room-join.component.scss | 5 +++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/components/shared/comment-list/comment-list.component.html b/src/app/components/shared/comment-list/comment-list.component.html index 47ab42780..fbf294a73 100644 --- a/src/app/components/shared/comment-list/comment-list.component.html +++ b/src/app/components/shared/comment-list/comment-list.component.html @@ -9,8 +9,6 @@ <mat-icon>close</mat-icon> </button> - <!-- <span class="fill-remaining-space"></span> --> - <div class="button-bar" fxLayoutAlign="center center"> <div *ngIf="comments && comments.length > 0"> <mat-chip-list> diff --git a/src/app/components/shared/comment-list/comment-list.component.scss b/src/app/components/shared/comment-list/comment-list.component.scss index c6278183b..a1dd71f93 100644 --- a/src/app/components/shared/comment-list/comment-list.component.scss +++ b/src/app/components/shared/comment-list/comment-list.component.scss @@ -109,3 +109,8 @@ h4 { .down { color: var(--red); } + +::placeholder { + color: var(--on-primary); + opacity: 1; +} diff --git a/src/app/components/shared/room-join/room-join.component.scss b/src/app/components/shared/room-join/room-join.component.scss index 1ef604121..a11936b3a 100644 --- a/src/app/components/shared/room-join/room-join.component.scss +++ b/src/app/components/shared/room-join/room-join.component.scss @@ -25,3 +25,8 @@ input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-i mat-hint { color: var(--on-surface) !important; } + +::placeholder { + color: var(--on-surface); + opacity: 1; +} -- GitLab