Skip to content
This repository was archived by the owner on Feb 28, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions seadssite/static/css/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@
.page {
display: none;
}
#loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
position: absolute;
margin: auto;
top: -400; left: 0; bottom: 0; right: 0;
/* display: block;*/
width: 120px;
height: 120px;
animation: spin 1s linear infinite;
z-index: 10;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}


#graphs_page {
display: inline;
Expand Down
1 change: 1 addition & 0 deletions seadssite/static/js/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ var app = function () {
})
}
});
document.getElementById("loader").style.display = "none"
return result;
}

Expand Down
1 change: 1 addition & 0 deletions seadssite/templates/device.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ <h1>Please sign in to continue</h1>
})
</script>
{% else %}
<div id="loader"></div>
<div id="vue-div" style="display: hidden;">
<div id="manage-bar" class="manage-bar navbar navbar-fixed-left">
<div id="sead-logo" class="">
Expand Down