feat(fe/loading): introduce loading layer

This commit is contained in:
hexxa 2022-01-22 11:46:16 +08:00 committed by Hexxa
parent f06c5f5a7d
commit 2904d03bdb
7 changed files with 82 additions and 44 deletions

View file

@ -70,6 +70,7 @@
.theme-default #layers {
height: 0;
z-index: 3;
}
.theme-default #panes .container {
@ -499,12 +500,28 @@
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
overflow: scroll;
z-index: 100;
}
.theme-default #login-layer {
z-index: 200;
}
.theme-default #loading-layer {
z-index: 201;
}
.theme-default #loading-container {
background-color: rgba(255, 255, 255, 1);
border-radius: 0.6rem;
padding: 0.5rem;
position: fixed;
right: 2rem;
bottom: 2rem;
height: 3rem;
z-index: 201;
}
.theme-default #settings-layer {
z-index: 100;
}