
I'm a bit stumped, been trying to style the .inlinerollresult in my CSS file but it's not being recognized in my roll templates.
Here are the relevant codes:
CSS
.sheet-rolltemplate-rollCheck .inlinerollresult {
background:#000
}
Html
<rolltemplate class="sheet-rolltemplate-rollCheck">
<div style="border: 1px solid #2b4a42; border-radius: 6px; background: #fff; margin-left: -7px; overflow-x: hidden; padding: 5px;">
<table style="width:100%;">
<tr>
<td style="font-size:13pt;padding:3px;">
{{checkName}}
</td>
<td rowspan="2" style="text-align:center;font-size:13pt;">
{{checkTotal}}
</td>
</tr>
<tr>
<td style="padding-left:12px;">
{{characterName}}
</td>
</tr>
</table>
</div>
</rolltemplate>