refactor(browser): replace WebKit specific CSS rules

This commit is contained in:
Oleg Shparber 2024-06-23 13:36:42 -04:00
parent 1e3e9adbb1
commit ce40250b98

View File

@ -1,10 +1,10 @@
/* Highlight on navigation to an anchor. */ /* Highlight on navigation to an anchor. */
@-webkit-keyframes targetNavigatedAnimation { @keyframes targetNavigatedAnimation {
from { background: #ffffff; } from { background: #fff; }
50% { background: #ffff00; } 50% { background: #ff0; }
to { background: #ffffff; } to { background: #fff; }
} }
*:target { *:target {
-webkit-animation: targetNavigatedAnimation .5s linear; animation: targetNavigatedAnimation .5s linear;
} }