Commit 5a076fb4 by Earvin Paguia

no image popup box fix

parent 1283c13f
...@@ -504,7 +504,7 @@ function refreshImage() { ...@@ -504,7 +504,7 @@ function refreshImage() {
//const progressBar = document.getElementById('progressBar'); //const progressBar = document.getElementById('progressBar');
const elProgress = document.getElementById('progress'); const elProgress = document.getElementById('progress');
function progress() { function progress() {
elProgress.innerHTML = Math.round(loaded * .000001) + " mb of " + Math.round(total * .000001); /* elProgress.innerHTML = Math.round(loaded * .000001) + " mb of " + Math.round(total * .000001);*/
//progressBar.value = Math.round(100 / 100 * 100); //progressBar.value = Math.round(100 / 100 * 100);
} }
......
...@@ -15,14 +15,14 @@ html { ...@@ -15,14 +15,14 @@ html {
#prompt{ #prompt{
background-color:white; background-color:white;
height:10% height: 10%;
position: absolute; position: absolute;
display: block; display: block;
margin: auto; margin: auto;
width: 42%; width: 42%;
top: 47%; top: 47%;
left: 31%; left: 31%;
text-align: center; text-align: center;
} }
/* The actual popup */ /* The actual popup */
...@@ -222,6 +222,10 @@ main#viewer { ...@@ -222,6 +222,10 @@ main#viewer {
/* padding: 1px; */ /* padding: 1px; */
} }
#progress {
display: none;
}
#TiffViewer_ButtonContainer { #TiffViewer_ButtonContainer {
display: inline-block; display: inline-block;
margin: auto; margin: auto;
...@@ -752,18 +756,19 @@ vertical-align: middle; ...@@ -752,18 +756,19 @@ vertical-align: middle;
} }
.bar { .bar {
width: 133px; width: 207px;
position: absolute; position: absolute;
display: flex; display: flex;
top: 6%; top: 6%;
right: 42%; right: 32%;
bottom: 0px; bottom: 0px;
height: 100%; height: 100%;
z-index: 9999999;
align-items: center; align-items: center;
} }
div#status { #status {
left: 0; left: 57px;
position: absolute; position: absolute;
} }
...@@ -772,6 +777,7 @@ div#status { ...@@ -772,6 +777,7 @@ div#status {
position: relative; position: relative;
width: 80px; width: 80px;
height: 80px; height: 80px;
padding: 0px 72px;
} }
.lds-roller div { .lds-roller div {
animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment