mirror of
https://github.com/zealdocs/zeal.git
synced 2024-11-22 21:53:03 +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. */
|
/* 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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user