prestashop-module/retailcrm/views/css/less/retailcrm-upload.less
Neur0toxine 006bd960e3
V3 major update
* New design
* Corporate clients
* Online consultant
* Job manager (cron replacement)
* Improved compatibility with 1.6
* Possibility to toggle inventory & history uploads
* Better error logging
* Abandoned carts improvements
* Drop inactive category branch from ICML generation
2020-04-16 15:26:03 +03:00

30 lines
557 B
Plaintext

#retailcrm-loading-fade {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background: #000;
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 9999;
opacity: .5;
filter: alpha(opacity=50);
}
#retailcrm-loader {
width: 50px;
height: 50px;
border: 10px solid white;
animation: retailcrm-loader 2s linear infinite;
border-top: 10px solid #0c0c0c;
border-radius: 50%;
}
@keyframes retailcrm-loader {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}