Skip to content

Instantly share code, notes, and snippets.

@billygoat
Last active December 13, 2015 18:18
Show Gist options
  • Save billygoat/4954026 to your computer and use it in GitHub Desktop.
Save billygoat/4954026 to your computer and use it in GitHub Desktop.
CSS to kill the stupid static GIF Tumblr overlays on videos these days. Also, radar and sponsored posts killer. Also re-enables text selection.
#right_column .radar { display:none !important; }
.vjs-paused .retro_static { background-image: none !important; }
.retro_fuzz { background-image: none !important; }
.sponsored_post { display: none !important; }
* { -webkit-user-select:all !important;
-khtml-user-select:all !important;
-moz-user-select:all !important;
-ms-user-select:all !important;
user-select:all !important;
}
@billygoat
Copy link
Author

Now with bonus radar killer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment