Deuglify the file upload progress bar
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
This commit is contained in:
parent
71e26d12c0
commit
5ed63b05c7
1 changed files with 10 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue