From ce40250b98f830c16726d2a6a157bbb5f5e236e3 Mon Sep 17 00:00:00 2001 From: Oleg Shparber Date: Sun, 23 Jun 2024 13:36:42 -0400 Subject: [PATCH] refactor(browser): replace WebKit specific CSS rules --- src/app/resources/browser/assets/css/highlight.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/resources/browser/assets/css/highlight.css b/src/app/resources/browser/assets/css/highlight.css index 78a7b1c8d..723cba779 100644 --- a/src/app/resources/browser/assets/css/highlight.css +++ b/src/app/resources/browser/assets/css/highlight.css @@ -1,10 +1,10 @@ /* Highlight on navigation to an anchor. */ -@-webkit-keyframes targetNavigatedAnimation { - from { background: #ffffff; } - 50% { background: #ffff00; } - to { background: #ffffff; } +@keyframes targetNavigatedAnimation { + from { background: #fff; } + 50% { background: #ff0; } + to { background: #fff; } } *:target { - -webkit-animation: targetNavigatedAnimation .5s linear; + animation: targetNavigatedAnimation .5s linear; }