SAAS-1022: Re-implement disk quota status on side nav bar

Changed "upload" page layout - panels are side by side and storage
status  is at bottom of left panel
This commit is contained in:
drigato 2015-08-25 12:43:08 -04:00
parent e188fcde32
commit 2da431895f
4 changed files with 61 additions and 39 deletions

View file

@ -3605,9 +3605,12 @@ button.btn-icon-text > i.icon-white {
/* Uploads/Dropzone */
#upload_form {
width: 100%;
min-width: 555px;
/* width: 100%;
min-width: 555px;*/
margin-bottom: 10px;
margin-right: 10px;
height: 100%;
position:relative;
}
#sub-menu-wrapper {
@ -3756,3 +3759,29 @@ li .ui-state-hover {
border: 0px;
}
.wide-panel {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
/* Account for the left pane */
flex: 6 auto;
min-width: 500px;
}
.outer-datatable-wrapper {
position: relative;
flex: 1;
}
.dataTables_scrolling {
position: absolute;
bottom: 37px; /* 36 px is the size of the header/footer + 1px because there's no internal border */
top: 37px;
left: 0;
right: 0;
}