anim.css - firefox-fix-web - Firefox extension: fix web
 (HTM) git clone git://git.codemadness.org/firefox-fix-web
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       anim.css (342B)
       ---
            1 /* fix insane underline style */
            2 * {
            3         text-decoration-skip-ink: none !important;
            4 }
            5 
            6 html {
            7         /*display: block !important;*/
            8 }
            9 
           10 /* remove things like fade-in animations */
           11 body,
           12 body > * {
           13         transition: 0s !important;
           14         opacity: 1 !important;
           15         filter: none !important;
           16 }
           17 
           18 body {
           19         /*display: block !important;*/
           20         visibility: visible !important;
           21 }