
Hello forum, im one of the authors of the Rogue trader improved sheet
https://wiki.roll20.net/Rogue_trader_improved
I have encountered a major issue and i don't know how to fix it
It seems that some time ago Roll20 released an update that allows Roll buttons on the character sheets to be dragged down to the macro quick bar
https://wiki.roll20.net/Macro_Quick_Bar#Character_Sheets
This update has compromised the functionality of the RTI sheet, specifically the buttons that are inside the repeating fields on the Skill group sections
The macros in the buttons still work but the buttons themselves cannot be clicked directly.
After some careful clicking and observation the buttons work as intended but only if you click at the very edge of the button.
I have no idea how to fix this, there seems to be some type of conflict with the CSS of the sheet vs the Roll20 site.
Here is a link to the GitHub sheet code and CSS
https://github.com/Roll20/roll20-character-sheets/tree/master/Rogue%20Trader%20Improved
here is an HTML snip of one of the buttons, please help :(
<div class="col" style="width:100%">
<div class="quickborder">
<div class="skills">
<table style="width:100%;">
<tr>
<td style="width:50%;"><label style="text-align: center; cursor:help" title="Speak Language is used to communicate with others using the same language. However, communication with those using obscure dialects or cryptic, complex concepts will require a Test at an appropriate Difficulty Skill Groups: -Eldar -Explorator Binary -High Gothic -Low Gothic -Ork -Techna-Lingua -Trader’s Cant. -Skill Use: Free Action.">Speak Language (Int) 🛈</label></td>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">Basic</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 7.5px">Trained</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">+10</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">+20</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">Talent</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">Mod</label></th>
<th style="height:10px;width:28px"><label style="text-align: center; font-size: 9px">Roll</label></th>
</tr>
</table>
<fieldset class="repeating_SpeakLanguage">
<table style="width:100%;">
<tr>
<td style="width:50%;"><div class="item" style="width:100%;"><input name="attr_languagename" type="text" placeholder="Skill Name"></input></div></td>
<td><input style="width:28px" name="attr_language1" type="checkbox" value="0.5"></input></td>
<td><input style="width:28px" name="attr_language2" type="checkbox" value="0.5"></input></td>
<td><input style="width:28px" name="attr_language3" type="checkbox" value="10"></input></td>
<td><input style="width:28px" name="attr_language4" type="checkbox" value="10"></input></td>
<td><input style="text-align:center;width:28px" name="attr_languageTalentBonus" type="number" value="0"></input></td>
<td><input style="text-align:center;width:28px" name="attr_languageOtherBonus" type="number" value="0"></input></td>
<td><button name="roll_SpeakLanguage" type="roll" style="text-align:center;width:28px"
value="&{template:custom} {{name=**@{character_name} Test Speak Language: @{languagename}**}} {{result=[[(@{language}+?{Modifier|0}-1d100cs1cf100)/10]] }}">
<input name="attr_language" type="number" disabled value="(floor((@{language1}+@{language2})*@{Intelligence}))+@{language3}+@{language4}+@{languageTalentBonus}+@{languageOtherBonus}">
</input></button></td>
</tr>
</table>
</fieldset>
</div>
</div>