Last active
July 11, 2022 12:47
-
-
Save bruno-brant/da44df7a0f3789bfb4c2c0df1a32f242 to your computer and use it in GitHub Desktop.
Whatsapp CSS Injection
This file contains hidden or 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
/* SIDEBAR */ | |
div[data-testid="cell-frame-container"]:not(:hover) { | |
/*#pane-side:not(:hover) img { */ | |
filter: blur(6px); | |
} | |
div[data-testid="cell-frame-container"]:not(:hover) span { | |
font-size: 125%; | |
color: transparent; | |
text-shadow: 0 0 8px #FFF; | |
} | |
/* MAIN */ | |
#main:not(:hover) span { | |
color: transparent; | |
font-size: 0px; | |
} | |
#main:not(:hover) img { | |
filter: blur(8px) | |
} | |
#main .message-in:not(:hover) img, | |
#main .message-out:not(:hover) img { | |
filter: blur(8px) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment