Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Firefox; input field above dice button prevents dice rolling

1594488785
Tealk
Pro
Sheet Author
Hello, everyone, it's about the following character sheet: <a href="https://github.com/Roll20/roll20-character-sheets/tree/master/Dark_Heresy" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/tree/master/Dark_Heresy</a> There is an input box above the roll button which shows the value you have in a skill. If I now click on the roll button in a chromium based browser it works fine, but Firefox behaves completely different, there the input field overrides the button and you can only roll if you click on the outer right border. Here is an extract from the code of the affected fields: &lt;td&gt;&lt;button name="roll_Intimidate" type="roll" &nbsp; &nbsp; value="&amp;{template:dh1ed} {{rollname=^{rollintimidate}}} {{roll=[[floor((@{Intimidate}+?{Modifier|0}-1d100)/10)]]}} {{target=[[@{Intimidate} + ?{Modifier|0}]]}} {{modifier=?{Modifier|0}}}"&gt; &nbsp; &nbsp; &lt;input disabled="true" name="attr_Intimidate" type="number" &nbsp; &nbsp; &nbsp; &nbsp; value="floor((@{Intimidate1}+0.5)*@{S}+@{Intimidate2}+@{Intimidate3}+@{Intimidate4})"&gt; &lt;/button&gt;&lt;/td&gt; Does anyone have an idea how to solve the problem?
See if setting `pointer-events: none` in the css for the input works.
1594492183
Tealk
Pro
Sheet Author
Primal Zed said: See if setting `pointer-events: none` in the css for the input works. super thanks this solves the problem