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. */
@-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;
}