Last active
February 20, 2022 17:12
-
-
Save AdamNatad/8f39a80fbf0f002c610c917aa46d9b2f to your computer and use it in GitHub Desktop.
WooCommerce Change Spinner and Overlay Style CSS
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
/* Checkout Loader */ | |
.blockUI.blockOverlay { | |
background-image:url('https://woocommerce-722142-2403447.cloudwaysapps.com/cac_uploads/2022/02/339-f.gif') !important; | |
background-position: center 50% !important; | |
background-repeat: no-repeat !important; | |
position: fixed !important; | |
background-size: 96px 96px !important; | |
} | |
.processing .blockOverlay { | |
background-image:url('https://woocommerce-722142-2403447.cloudwaysapps.com/cac_uploads/2022/02/339-f.gif') !important; | |
background-position: center 30% !important; | |
background-repeat: no-repeat !important; | |
background-size: 96px 96px !important; | |
} | |
/* Checkout page processing spinner */ | |
.woocommerce-checkout.processing .blockUI.blockOverlay { | |
background-image:url('https://woocommerce-722142-2403447.cloudwaysapps.com/cac_uploads/2022/02/339-f.gif') !important; | |
background-position: center 50% !important; | |
background-repeat: no-repeat !important; | |
position: fixed !important; | |
background-size: 96px 96px !important; | |
} | |
/* Woocommerce - blockUi style */ | |
div.blockOverlay { | |
background-color: #BC5E3A !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment