From ce758c1e9202547b2731863e6f1e97a4640f6672 Mon Sep 17 00:00:00 2001 From: adrien Date: Sat, 28 Feb 2026 10:31:24 +0100 Subject: [PATCH] update cleared line animation --- css/common.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/css/common.css b/css/common.css index 4caa8b7..b1d87c6 100644 --- a/css/common.css +++ b/css/common.css @@ -119,17 +119,21 @@ td.trail-animation { @keyframes cleared-line-animation { from { - background-color: #ceffff66; + background-color: white; filter: saturate(50%) brightness(300%); - box-shadow: -200px 0 5px white, 200px 0 5px white; + box-shadow: 0 0 0 #adb5bd, 0 0 0 #adb5bd; + } + 60% { + box-shadow: -60px 0 2px #adb5bd66, 60px 0 2px #adb5bd66; } to { background-color: transparent; + box-shadow: -100px 0 5px transparent, 100px 0 5px transparent; } } tr.cleared-line-animation { - animation: cleared-line-animation ease-out .3s; + animation: cleared-line-animation ease-out .15s; } #holdTable .J,