To change the color of the working indicator just insert the following code in the additional.css
changing background-color: #4b86e5; and color: #db2104; to suit your needs
Code:
.b-ajax-loading-indicator {
box-sizing: border-box;
min-width: 180px;
position: fixed;
top: 10px;
left: 50%;
margin-left: -90px;
background-color: #4b86e5;
border: 1px solid #b6b6b6;
border-radius: 3px;
padding: 7px;
color: #000;
font-size: 0.6875rem;
font-weight: bold;
color: #db2104;
text-align: center;
z-index: 99999;
}




Comment