mirror of
https://github.com/zealdocs/zeal.git
synced 2024-11-22 12:33:20 +03:00
refactor(browser): replace WebKit specific CSS rules
This commit is contained in:
parent
1e3e9adbb1
commit
ce40250b98
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user