mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
bitbake: toaster: Add ajax loading spinner
This adds an ajax loading spinner to provide feedback when in-page loading is happening. It will show after 1.2 seconds of initial loading. [YOCTO #7790] (Bitbake rev: ecb70b0bc996529f1a6e58e5716b31e273395c98) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
eb28534423
commit
0573e2d31c
@@ -259,3 +259,52 @@ div.add-deps { margin-top: 15px; }
|
||||
|
||||
thead .description, .get_description_or_summary { width: 364px; }
|
||||
thead .add-del-layers { width: 124px; }
|
||||
|
||||
#loading-notification {
|
||||
position: fixed;
|
||||
z-index: 101;
|
||||
top: 3%;
|
||||
left: 40%;
|
||||
right: 40%;
|
||||
#c09853
|
||||
-webkit-box-shadow: 0 0 10px #c09853;
|
||||
-moz-box-shadow: 0 0 10px #c09853;
|
||||
box-shadow: 0 0 10px #c09853;
|
||||
}
|
||||
|
||||
/* Copied in from newer version of Font-Awesome 4.3.0 */
|
||||
.fa-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
display: inline-block;
|
||||
}
|
||||
.fa-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
-moz-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
/* End copied in from newer version of Font-Awesome 4.3.0 */
|
||||
|
||||
Reference in New Issue
Block a user