Skip to content

Commit 9d9670f

Browse files
committed
fix(ui): adjust loading container styles
1 parent 81921b9 commit 9d9670f

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

  • stackgres-k8s/src/admin-ui/public/assets/css

stackgres-k8s/src/admin-ui/public/assets/css/style.css

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -820,12 +820,21 @@ form#login .warning {
820820
position: fixed;
821821
z-index: 2;
822822
top: 0;
823-
left: 0;
824-
width: 100%;
823+
left: 350px;
824+
width: calc(100% - 350px);
825825
height: 100%;
826+
background: url(../img/loader.gif) center no-repeat rgba(255,255,255,0.8);
827+
background-size: 30px !important;
828+
}
829+
830+
body.darkmode .loadingContainer.loading:after {
826831
background: url(../img/loader.gif) center no-repeat rgba(0, 0, 0, .35);
827-
background-size: 30px;
828-
}
832+
}
833+
834+
body.collapsed .loadingContainer.loading:after {
835+
left: 50px;
836+
width: calc(100% - 50px);
837+
}
829838

830839
/* Dark mode - Log in */
831840

0 commit comments

Comments
 (0)