From e67f8824d984f19f1b4b0e68b69ecbef8154a822 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Tue, 16 Jan 2024 18:36:43 +0530 Subject: [PATCH] fix: Backdrop color for insert article modal in dark mode (#8711) --- app/javascript/dashboard/assets/scss/widgets/_modal.scss | 2 +- .../components/widgets/WootWriter/ReplyBottomPanel.vue | 4 ++-- .../helpcenter/components/ArticleSearch/SearchPopover.vue | 2 +- tailwind.config.js | 5 ++--- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/app/javascript/dashboard/assets/scss/widgets/_modal.scss b/app/javascript/dashboard/assets/scss/widgets/_modal.scss index 1f0641c6e..4a3ca61c1 100644 --- a/app/javascript/dashboard/assets/scss/widgets/_modal.scss +++ b/app/javascript/dashboard/assets/scss/widgets/_modal.scss @@ -1,7 +1,7 @@ .modal-mask { // @include flex; // @include flex-align(center, middle); - @apply flex items-center justify-center bg-modal dark:bg-modal z-[9990] h-full left-0 fixed top-0 w-full; + @apply flex items-center justify-center bg-modal-backdrop-light dark:bg-modal-backdrop-dark z-[9990] h-full left-0 fixed top-0 w-full; } .page-top-bar { diff --git a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue index b5022c9a2..2984c506a 100644 --- a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue +++ b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue @@ -101,10 +101,10 @@
-

+

{{ $t('CONVERSATION.REPLYBOX.DRAG_DROP') }}

diff --git a/app/javascript/dashboard/routes/dashboard/helpcenter/components/ArticleSearch/SearchPopover.vue b/app/javascript/dashboard/routes/dashboard/helpcenter/components/ArticleSearch/SearchPopover.vue index 1c221d3be..7de19a9e3 100644 --- a/app/javascript/dashboard/routes/dashboard/helpcenter/components/ArticleSearch/SearchPopover.vue +++ b/app/javascript/dashboard/routes/dashboard/helpcenter/components/ArticleSearch/SearchPopover.vue @@ -1,6 +1,6 @@