mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Loading message fade and cancelBake bugfix
This commit is contained in:
parent
f6b52b7c82
commit
9028761821
2 changed files with 4 additions and 2 deletions
|
@ -81,7 +81,7 @@ ControlsWaiter.prototype.bakeClick = function() {
|
||||||
if (document.getElementById("bake").textContent.indexOf("Bake") > 0) {
|
if (document.getElementById("bake").textContent.indexOf("Bake") > 0) {
|
||||||
this.app.bake();
|
this.app.bake();
|
||||||
} else {
|
} else {
|
||||||
this.app.cancelBake();
|
this.manager.worker.cancelBake();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: var(--primary-background-colour);
|
background-color: var(--primary-background-colour);
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
||||||
transition: all 0.5s ease;
|
transition: all 0.5s ease;
|
||||||
}
|
}
|
||||||
|
@ -117,4 +117,6 @@
|
||||||
line-height: var(--primary-line-height);
|
line-height: var(--primary-line-height);
|
||||||
color: var(--primary-font-colour);
|
color: var(--primary-font-colour);
|
||||||
top: 50%;
|
top: 50%;
|
||||||
|
|
||||||
|
transition: all 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue