MediaWiki:Common.js: Difference between revisions
Appearance
m made this redundant (i think) Tags: Blanking Reverted |
Tag: Rollback |
||
| Line 1: | Line 1: | ||
if (window.location.href.includes("The_Bold_Plague")) { | |||
const style = document.createElement("style"); | |||
style.textContent = ` | |||
* { | |||
font-weight: bold !important; | |||
} | |||
`; | |||
document.head.appendChild(style); | |||
} | |||
Revision as of 18:27, 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);
}