mainWindow: rewrite css injection
This commit is contained in:
parent
5d2bd94945
commit
3278a3f97e
1 changed files with 8 additions and 3 deletions
|
@ -40,9 +40,13 @@ setInterval(() => {
|
|||
host.append(document.createTextNode(' | '), el);
|
||||
}, 2000);
|
||||
|
||||
const injCSS = x => {
|
||||
const el = document.createElement('style');
|
||||
el.appendChild(document.createTextNode(x));
|
||||
document.body.appendChild(el);
|
||||
};
|
||||
|
||||
const el = document.createElement('style');
|
||||
el.appendChild(document.createTextNode(`<css>
|
||||
injCSS(document.createTextNode(`
|
||||
[class^="socialLinks-"] + [class^="info-"] {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
@ -56,7 +60,8 @@ el.appendChild(document.createTextNode(`<css>
|
|||
text-decoration: underline;
|
||||
color: var(--text-normal);
|
||||
}`));
|
||||
document.body.appendChild(el);
|
||||
|
||||
injCSS(`<css>`);
|
||||
|
||||
openasar = {}; // Define global for any mods which want to know / etc
|
||||
|
||||
|
|
Loading…
Reference in a new issue