1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Added an AJAX spinner

This commit is contained in:
Jeremy Stretch
2017-07-17 11:41:39 -04:00
parent 12472a2612
commit 1f982c94ce
6 changed files with 41 additions and 14 deletions

View File

@@ -333,6 +333,31 @@ table.component-list tr.ipaddress:hover td {
background-color: #e6f7f7;
}
/* AJAX loader */
.loading {
position: fixed;
display: none;
z-index: 999;
height: 2em;
width: 2em;
overflow: show;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.loading:before {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.3);
}
/* Misc */
.banner-bottom {
margin-bottom: 50px;