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; }