From 4f3cc92b0315b1c39735ddc04694ce0917e3b815 Mon Sep 17 00:00:00 2001 From: Yuurin Bee Date: Thu, 21 May 2026 03:04:21 +0700 Subject: [PATCH 1/2] Fix Emoji Pack Opacity & Hover --- src/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index b9494b9e..a1574cf9 100644 --- a/src/styles.css +++ b/src/styles.css @@ -3257,7 +3257,7 @@ body.chat-bg-disabled .chat-messages::before { align-items: center; justify-content: center; cursor: pointer; - opacity: 0.7; + opacity: 1; transition: opacity 0.2s ease; background: none; border: none; @@ -3266,6 +3266,10 @@ body.chat-bg-disabled .chat-messages::before { box-sizing: border-box; } +.emoji-category-btn:hover { + opacity:0.7; +} + .emoji-category-btn.active { opacity: 1; } From 816a68a6cfd4bbd5bc6ac2ac63a07804bd98e88b Mon Sep 17 00:00:00 2001 From: Yuurin Bee Date: Thu, 21 May 2026 03:07:01 +0700 Subject: [PATCH 2/2] Fix Emoji Popup Scroll Bar Display --- src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index a1574cf9..49762139 100644 --- a/src/styles.css +++ b/src/styles.css @@ -3293,7 +3293,7 @@ body.chat-bg-disabled .chat-messages::before { } .emoji-main { - margin-top: -10px; + margin-top: 0px; flex: 1; padding: 8px; padding-right: 5px;