Deuglify the file upload progress bar
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
This commit is contained in:
parent
71e26d12c0
commit
5ed63b05c7
|
@ -38,6 +38,9 @@
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
#uploadprogressbar {
|
#uploadprogressbar {
|
||||||
|
border-color: var(--color-border-dark);
|
||||||
|
border-radius: 18px 0 0 18px;
|
||||||
|
border-right: 0;
|
||||||
position:relative;
|
position:relative;
|
||||||
float: left;
|
float: left;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
@ -50,15 +53,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#uploadprogressbar .ui-progressbar-value.ui-widget-header.ui-corner-left {
|
#uploadprogressbar .ui-progressbar-value.ui-widget-header.ui-corner-left {
|
||||||
height: 100%;
|
height: calc(100% + 2px);
|
||||||
top: 0px;
|
top: -1px;
|
||||||
left: 0px;
|
left: -1px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: var(--color-primary);
|
background-color: var(--color-primary);
|
||||||
}
|
}
|
||||||
#uploadprogressbar .label {
|
#uploadprogressbar .label {
|
||||||
top: 6px;
|
top: 8px;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -81,8 +84,9 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#uploadprogressbar + stop {
|
#uploadprogressbar + .stop {
|
||||||
font-size: 13px;
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oc-dialog .fileexists {
|
.oc-dialog .fileexists {
|
||||||
|
|
Loading…
Reference in New Issue