
I'm having an issue with the background on the Mutants & Masterminds 3e character sheet similar to this one. I think it's a Roll20 problem with CSS on character sheets in general, not a problem specific to this sheet.
Just wanted to chime in real quick: it appears that the first ruleset following a google fonts import is being sanitized out. You can test this by putting a buffer into the CSS. i.e:
@import url('https://fonts.googleapis.com/css?family=Montserrat|Graduate|Courier+Prime|Roboto|Share+Tech+Mono&display=swap');
/* ORIGINAL */
.buffer {
color: black;
}
.sheet-background-wrap{
background-color: black;
padding: 5px;
min-width: 1128px;
}
Which seems to fix at least the Alien and M&M sheets. That said, I wouldn't advise a spate of PRs to adjust this issue, I've reported it as a bug and I'm sure it'll be resolved ASAP.
Thanks so much for figuring this out and reporting it.
Nic B. said:
Just wanted to chime in real quick: it appears that the first ruleset following a google fonts import is being sanitized out. You can test this by putting a buffer into the CSS. i.e:
@import url('https://fonts.googleapis.com/css?family=Montserrat|Graduate|Courier+Prime|Roboto|Share+Tech+Mono&display=swap');
/* ORIGINAL */
.buffer {
color: black;
}
.sheet-background-wrap{
background-color: black;
padding: 5px;
min-width: 1128px;
}Which seems to fix at least the Alien and M&M sheets. That said, I wouldn't advise a spate of PRs to adjust this issue, I've reported it as a bug and I'm sure it'll be resolved ASAP.
Great news. Thanks for the headsup!
Nic B. said:
Just wanted to chime in real quick: it appears that the first ruleset following a google fonts import is being sanitized out. You can test this by putting a buffer into the CSS. i.e:
@import url('https://fonts.googleapis.com/css?family=Montserrat|Graduate|Courier+Prime|Roboto|Share+Tech+Mono&display=swap');
/* ORIGINAL */
.buffer {
color: black;
}
.sheet-background-wrap{
background-color: black;
padding: 5px;
min-width: 1128px;
}Which seems to fix at least the Alien and M&M sheets. That said, I wouldn't advise a spate of PRs to adjust this issue, I've reported it as a bug and I'm sure it'll be resolved ASAP.