I don't think there is a way you can alter just the rollable table results, it would affect all roll results in the table. The HTML and CSS for a rollable table result in one of the DnD5e Roll Templates looks like these: HTML: <span
class=" inlinerollresult showtip tipsy-n"
original-title="Rolling 1t[Druid] = (<span class="basicdiceroll">Hawk</span>)">
Hawk
</span> CSS: .textchatcontainer . inlinerollresult {
background-color: #FEF68E;
border: 2px solid #FEF68E;
padding: 0 3px 0 3px;
font-weight: bold;
cursor: help;
font-size: 1.1em;
}
The salient point being that they are the same style as would be applied to [[1d20]] or any other inline roll. You could put in this style: CSS: .textchatcontainer .sheet-rolltemplate-5eDefault .inlinerollresult {
background-color: rgba(0,0,0,0);
border: none;
padding: inherit;
font-weight: normal;
cursor: text;
font-size: 1em;
} and all inline rolls would look like normal text (though they would still have the tooltip):