From 825729b58d798d40a94d967d3645ba47da08686a Mon Sep 17 00:00:00 2001 From: kek7198 Date: Wed, 24 Nov 2021 14:57:16 -0600 Subject: [PATCH] fix --- files/templates/comments.html | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/files/templates/comments.html b/files/templates/comments.html index 483956cbb7..a65a176f14 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -8,18 +8,21 @@ .comment .comment-body { padding: 3px 0; } - .comment-anchor { - margin-top: -75px; - padding: 1px; - } - .comment-anchor::before { - content: ''; - display: block; - padding-top: 75px; - } .comment-anchor:target { - background: rgba(255,255,255,0.2); - padding: 12px; + transition:all 0.5s ease-in-out; + animation: blink normal 1s ease-in-out; + } + + @keyframes blink { + 0% { + background-color: rgba(255,255,255,0.1) + } + 50% { + background-color: rgba(255,255,255,0.2) + } + 100% { + background-color: rgba(255,255,255,0.1) + } }