Skip to content

Commit

Permalink
refactor(browser): replace WebKit specific CSS rules
Browse files Browse the repository at this point in the history
  • Loading branch information
trollixx committed Jun 23, 2024
1 parent 1e3e9ad commit ce40250
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/resources/browser/assets/css/highlight.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit ce40250

Please sign in to comment.