From ecc8924c864a608f06260d8aa25a5576201a8daf Mon Sep 17 00:00:00 2001 From: Yuurin Bee Date: Fri, 27 Feb 2026 20:54:20 +0700 Subject: [PATCH 1/3] Polish Fadeout at Top of Chat Message & Reduce Shadow --- src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index 943c4ff2..96349de8 100644 --- a/src/styles.css +++ b/src/styles.css @@ -3138,7 +3138,7 @@ audio { left: 0; right: 0; height: 40px; - background: linear-gradient(#030303d9, #03030300 80%); + background: linear-gradient(#03030380, #03030300 20%); pointer-events: none; } From 8c11810e1e26c25eb633fcdeaf27de5feaf27aed Mon Sep 17 00:00:00 2001 From: Yuurin Bee Date: Fri, 27 Feb 2026 21:08:24 +0700 Subject: [PATCH 2/3] Update Cancel Icon to Display Red: Reply to Message' --- src/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles.css b/src/styles.css index 96349de8..9820ced9 100644 --- a/src/styles.css +++ b/src/styles.css @@ -166,6 +166,7 @@ .icon-cancel { mask-image: url("./icons/cancel.svg"); + background-color: #FC595C; } .icon-x { From d0613449ce463b4b74d249891e017bb33bab3304 Mon Sep 17 00:00:00 2001 From: JSKitty Date: Fri, 27 Feb 2026 14:29:23 +0000 Subject: [PATCH 3/3] fix: scope red cancel icon to reply button only The previous commit made all cancel icons red globally. Scope the red color to #chat-input-cancel so other uses of icon-cancel remain unaffected. Co-Authored-By: Claude Opus 4.6 --- src/styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/styles.css b/src/styles.css index 9820ced9..68a809df 100644 --- a/src/styles.css +++ b/src/styles.css @@ -166,6 +166,9 @@ .icon-cancel { mask-image: url("./icons/cancel.svg"); +} + +#chat-input-cancel .icon-cancel { background-color: #FC595C; }