Created
July 23, 2018 17:17
-
-
Save m1ndspark/2ea4dc948d2d6621674a4cd4545c2a35 to your computer and use it in GitHub Desktop.
Beaver Builder + Astra Theme - Make All Images Grayscale
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
| /* Greyscale all site images in Beaver Builder and Astra theme */ | |
| /* Add to Beaver Builder Global CSS */ | |
| img, body | |
| { | |
| filter: grayscale(100%) !important; | |
| -moz-filter: grayscale(100%) !important; | |
| -webkit-filter:grayscale(100%) !important; | |
| -webkit-filter: grayscale(1) !important; | |
| -o-filter:grayscale(100%) !important; | |
| -ms-filter:grayscale(100%) !important; | |
| filter: gray !important; | |
| } | |
| div.ast-title-bar-wrap | |
| { | |
| filter: grayscale(100%) !important; | |
| -moz-filter: grayscale(100%) !important; | |
| -webkit-filter:grayscale(100%) !important; | |
| -webkit-filter: grayscale(1) !important; | |
| -o-filter:grayscale(100%) !important; | |
| -ms-filter:grayscale(100%) !important; | |
| filter: gray !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment