From 79406c5775afd23b2695c1c350922d51fe858364 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Tue, 6 Sep 2022 10:41:39 +0530 Subject: [PATCH] fix: Emoji picker is not working on the expanded layout (#5398) --- .../widgets/conversation/MessagesView.vue | 10 +++---- .../widgets/conversation/ReplyBox.vue | 27 +++++++++++++++++++ .../widget/components/ChatInputWrap.vue | 6 ++++- 3 files changed, 37 insertions(+), 6 deletions(-) diff --git a/app/javascript/dashboard/components/widgets/conversation/MessagesView.vue b/app/javascript/dashboard/components/widgets/conversation/MessagesView.vue index 6c04879b9..52a43091c 100644 --- a/app/javascript/dashboard/components/widgets/conversation/MessagesView.vue +++ b/app/javascript/dashboard/components/widgets/conversation/MessagesView.vue @@ -431,12 +431,12 @@ export default { position: fixed; left: unset; position: absolute; - } - .emoji-dialog::before { - transform: rotate(0deg); - left: 5px; - bottom: var(--space-minus-slab); + &::before { + transform: rotate(0deg); + left: var(--space-half); + bottom: var(--space-minus-slab); + } } } } diff --git a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue index 1eb2a765b..286ac0a88 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue @@ -26,6 +26,7 @@