Customise AJAX Loading Stripe
12
October's AJAX framework implements a blue stripe at the top of your site, showing the progress of requests.
Frequently, this blue clashes with your site's color scheme, and thus is problematic. Thankfully, there is a simple CSS fix:
.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
background: red !important;
}
You are also able to change the height of the stripe as well, if you wish:
height: 8px !important;
There are no comments yet
Be the first one to comment