Optimize frontend script and style

This commit is contained in:
Arne Keller 2021-09-29 10:15:51 +02:00
parent 49adac2a88
commit 91daed42c4
2 changed files with 10 additions and 9 deletions

View File

@ -304,14 +304,9 @@ class MathjaxProofTree extends MathjaxAdapter {
if (explainer) {
const ctm1 = svg.getBoundingClientRect();
const ctm2 = this.defElBackground!.getBoundingClientRect();
explainer.style.left = (ctm2.left - ctm1.left) + "px";
explainer.style.top = (ctm2.bottom - ctm1.top) + "px";
// TODO(performance): this should be more efficient, but somehow flickers
/*
const dx = (ctm2.left - ctm1.left) - explainer.offsetLeft;
const dy = (ctm2.bottom - ctm1.top) - explainer.offsetTop;
explainer.style.transform = "translate(" + dx + "px," + dy + "px)";
*/
const dx = (ctm2.left - ctm1.left) - explainer.offsetLeft;
const dy = (ctm2.bottom - ctm1.top) - explainer.offsetTop;
explainer.style.transform = "translate(" + dx + "px," + dy + "px)";
}
});
// @ts-ignore
@ -569,7 +564,11 @@ class MathjaxProofTree extends MathjaxAdapter {
}
this.shadowRoot!
.querySelectorAll<SVGGraphicsElement>(".typicalc-definition")!
.forEach((it) => it.style.display = "none");
.forEach((it) => {
if (it.style) {
it.style.display = "none"
}
});
let defElBackground = this.shadowRoot!.getElementById(this.hoverTextBackgroundElID);
if (defElBackground) {
defElBackground.parentElement!.removeChild(defElBackground);

View File

@ -20,6 +20,8 @@
#input-bar {
width: 75%;
/* require a larger width on small screens! */
min-width: min(100%, 1100px);
flex-grow: 1;
align-items: flex-end;
padding: 0 1em;