mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Merge branch 'bug-preloader'
This commit is contained in:
commit
bb45ff0515
2 changed files with 9 additions and 5 deletions
|
@ -73,7 +73,7 @@ App.prototype.loaded = function() {
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
// Clear the loading message interval
|
// Clear the loading message interval
|
||||||
clearInterval(window.loadingMsgInt);
|
clearInterval(window.loadingMsgsInt);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,20 +37,24 @@
|
||||||
#preloader:after {
|
#preloader:after {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 5px;
|
|
||||||
left: 5px;
|
|
||||||
right: 5px;
|
|
||||||
bottom: 5px;
|
|
||||||
border: 3px solid transparent;
|
border: 3px solid transparent;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#preloader:before {
|
#preloader:before {
|
||||||
|
top: 5px;
|
||||||
|
left: 5px;
|
||||||
|
right: 5px;
|
||||||
|
bottom: 5px;
|
||||||
border-top-color: #e74c3c;
|
border-top-color: #e74c3c;
|
||||||
animation: spin 3s linear infinite;
|
animation: spin 3s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
#preloader:after {
|
#preloader:after {
|
||||||
|
top: 13px;
|
||||||
|
left: 13px;
|
||||||
|
right: 13px;
|
||||||
|
bottom: 13px;
|
||||||
border-top-color: #f9c922;
|
border-top-color: #f9c922;
|
||||||
animation: spin 1.5s linear infinite;
|
animation: spin 1.5s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue