index : flyspray | |
Archlinux32 customized Flyspray installation | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
commit | 6854cb3f4d8219cf1829e32122eb2502a916eae9 (patch) | |
tree | 350feb504587d932e02837a1442b059759927646 /themes/CleanFS/oldwebkitsiblingfix.css |
-rw-r--r-- | themes/CleanFS/oldwebkitsiblingfix.css | 9 |
diff --git a/themes/CleanFS/oldwebkitsiblingfix.css b/themes/CleanFS/oldwebkitsiblingfix.css new file mode 100644 index 0000000..ae7f541 --- /dev/null +++ b/themes/CleanFS/oldwebkitsiblingfix.css @@ -0,0 +1,9 @@ +/* +used for pure html/css3 switches (with ~ sibling) for older webkit based browsers +(android ~4.3, safari ~5.1, chrome ?, TODO: exact (webkit)versions for the useragent filter) +see https://css-tricks.com/webkit-sibling-bug/ +Hack may increase cpuusage due the infinite animation loop, see also https://codepen.io/simeydotme/post/hot-pockets +So load this file only if really necessary (check useragent) (or find a better pure css workaround) +*/ +body { -webkit-animation: webkitfix infinite 1s; } +@-webkit-keyframes webkitfix { from { display: block } to { display: block } } |