MediaWiki:Common.js: Difference between revisions
Appearance
imported>BigGarrison TOO RED |
Glitchy404 (talk | contribs) nvm couldn't get it to work Tag: Manual revert |
||
| (8 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
if (window.location.href.includes("The_Bold_Plague")) { | |||
const style = document.createElement("style"); | |||
style.textContent = ` | |||
* { | |||
const | font-weight: bold !important; | ||
} | |||
`; | |||
document.head.appendChild(style); | |||
} | |||
( | |||
Latest revision as of 18:33, 11 March 2026
if (window.location.href.includes("The_Bold_Plague")) {
const style = document.createElement("style");
style.textContent = `
* {
font-weight: bold !important;
}
`;
document.head.appendChild(style);
}