1
0

Upload status fixes

This commit is contained in:
Scott E. Graves
2017-04-15 19:55:48 -05:00
parent ee60720f0b
commit f71259d0c6
2 changed files with 16 additions and 3 deletions

View File

@@ -42,6 +42,17 @@ div.footer {
margin: 0; margin: 0;
} }
div.fill {
display: flex;
flex-direction: column;
min-height: 76.6vh;
max-height: 76.6vh; /* body takes whole viewport's height */
}
.fill-content {
flex: 1; /* this will make the container take the free space */
}
.padded { .padded {
padding-top: 10px; padding-top: 10px;
padding-right: 15px; padding-right: 15px;

View File

@@ -176,10 +176,12 @@
<div class="hidden-element" id="upload_progress_window"> <div class="hidden-element" id="upload_progress_window">
<div class="box"> <div class="box">
<h1>Upload Progress</h1> <h1>Upload Progress</h1>
<table style="width: 100%;height: auto" id="ID_UploadProgressTable"> <div class="fill" style="overflow: scroll">
</table> <table class="fill-content" style="width: 100%;" id="ID_UploadProgressTable">
<button id="ID_RenterUploadsOk" type="button">OK</button> </table>
</div>
</div> </div>
<button id="ID_RenterUploadsOk" style="width: 110px" type="button">Back</button>
</div> </div>
</body> </body>
</html> </html>