From ee3ccbf0c8d66e4050cb6914608f3b7eb465d28e Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+sivin-git@users.noreply.github.com> Date: Mon, 15 Feb 2021 23:53:52 +0530 Subject: [PATCH] fix: Fixes color for file name, file icon in private note. (#1772) --- .../components/widgets/conversation/Message.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/javascript/dashboard/components/widgets/conversation/Message.vue b/app/javascript/dashboard/components/widgets/conversation/Message.vue index ecc430cec..648a8a317 100644 --- a/app/javascript/dashboard/components/widgets/conversation/Message.vue +++ b/app/javascript/dashboard/components/widgets/conversation/Message.vue @@ -208,6 +208,19 @@ export default { max-width: 32rem; padding: var(--space-small) var(--space-normal); } + + &.is-private .file.message-text__wrap { + .ion-document-text { + color: var(--w-400); + } + .text-block-title { + color: #3c4858; + } + .download.button { + color: var(--w-400); + } + } + &.is-private.is-text > .message-text__wrap .link { color: var(--w-700); }