Archived
1
0

Fix some dialog styling issues

- Fix black text caused by 1.32.0 upgrade.
- Fix various alignment and padding issues (a few elements with more
  space below than above).
This commit is contained in:
Asher
2019-03-11 11:29:24 -05:00
parent 03c0bde3a9
commit 8aff206538
4 changed files with 18 additions and 20 deletions

View File

@ -110,7 +110,7 @@ class Dialog {
this.root.style.width = "850px";
this.root.style.height = "600px";
this.background.appendChild(this.root);
document.body.appendChild(this.background);
(document.getElementById("workbench.main.container") || document.body).appendChild(this.background);
this.root.classList.add("dialog");
const setProperty = (vari: string, id: string): void => {