Deuglify the file upload progress bar

Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
This commit is contained in:
Michael Weimann 2019-01-14 01:32:13 +01:00
parent 71e26d12c0
commit 5ed63b05c7
No known key found for this signature in database
GPG Key ID: 34F0524D4DA694A1
1 changed files with 10 additions and 6 deletions

View File

@ -38,6 +38,9 @@
margin-left: 3px;
}
#uploadprogressbar {
border-color: var(--color-border-dark);
border-radius: 18px 0 0 18px;
border-right: 0;
position:relative;
float: left;
width: 200px;
@ -50,15 +53,15 @@
}
}
#uploadprogressbar .ui-progressbar-value.ui-widget-header.ui-corner-left {
height: 100%;
top: 0px;
left: 0px;
height: calc(100% + 2px);
top: -1px;
left: -1px;
position: absolute;
overflow: hidden;
background-color: var(--color-primary);
}
#uploadprogressbar .label {
top: 6px;
top: 8px;
opacity: 1;
overflow: hidden;
white-space: nowrap;
@ -81,8 +84,9 @@
display: none;
}
#uploadprogressbar + stop {
font-size: 13px;
#uploadprogressbar + .stop {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.oc-dialog .fileexists {