Created
March 8, 2017 09:06
-
-
Save arafathusayn/c3a1ee032fc19f3f2f334022dac68ca0 to your computer and use it in GitHub Desktop.
Blur Youtube Thumbnails and Account Avatars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Install from here: https://userstyles.org/styles/139876/youtube-thumbnails-blur-and-unblur | |
*/ | |
@-moz-document domain("www.youtube.com") { | |
div[class*="thumb"] img { | |
filter: blur(5px); | |
-webkit-filter: blur(5px); | |
-moz-filter: blur(5px); | |
-o-filter: blur(5px); | |
-ms-filter: blur(5); | |
-ms-filter: blur(5px); | |
} | |
div[class*="thumb"]:hover img { | |
filter: blur(0px); | |
-webkit-filter: blur(0px); | |
-moz-filter: blur(0px); | |
-o-filter: blur(0px); | |
-ms-filter: blur(0); | |
-ms-filter: blur(0px); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment