Use correct rows for tooltip ETA/status
This commit is contained in:
parent
4b09a0db67
commit
71d98bc603
@ -530,6 +530,11 @@ body > * {
|
|||||||
background: var(--done-color);
|
background: var(--done-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tooltip-eta.single {
|
||||||
|
font-weight: bold;
|
||||||
|
grid-column-end: span 2;
|
||||||
|
}
|
||||||
|
|
||||||
.deletefiles-list {
|
.deletefiles-list {
|
||||||
padding-left: 1ex;
|
padding-left: 1ex;
|
||||||
padding-right: 1.5ex;
|
padding-right: 1.5ex;
|
||||||
|
@ -192,7 +192,7 @@ export class Tooltip {
|
|||||||
const hidden = this.speedbox.classList.contains("hidden");
|
const hidden = this.speedbox.classList.contains("hidden");
|
||||||
|
|
||||||
if (!running && !hidden) {
|
if (!running && !hidden) {
|
||||||
this.eta.style.fontWeight = "bold";
|
this.eta.classList.add("single");
|
||||||
this.etalabel.classList.add("hidden");
|
this.etalabel.classList.add("hidden");
|
||||||
this.speedbox.classList.add("hidden");
|
this.speedbox.classList.add("hidden");
|
||||||
this.progressbar.classList.add("hidden");
|
this.progressbar.classList.add("hidden");
|
||||||
@ -202,7 +202,7 @@ export class Tooltip {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (hidden) {
|
if (hidden) {
|
||||||
this.eta.style.fontWeight = "auto";
|
this.eta.classList.remove("single");
|
||||||
this.etalabel.classList.remove("hidden");
|
this.etalabel.classList.remove("hidden");
|
||||||
this.speedbox.classList.remove("hidden");
|
this.speedbox.classList.remove("hidden");
|
||||||
this.progressbar.classList.remove("hidden");
|
this.progressbar.classList.remove("hidden");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user