90de66d668
Release Creation / build (release) Failing after 1m28s
- hooks.mjs: replace static dice-so-nice import with dynamic import
using game.modules.get('dice-so-nice').id (path removed in v14)
- hooks.mjs: fix permission condition (|| -> &&), jQuery -> vanilla JS
- less/base.less: override --color-text-* and --button-text-color
for both .themed.theme-dark (AppV2) and body.theme-dark (legacy apps)
- target #settings-config buttons + labels + hints for dark grays
18 lines
578 B
HTML
18 lines
578 B
HTML
<form id="dice-pool-form">
|
|
<p>{{localize "VERMINE.FightTool"}}</p>
|
|
<div class="form-group">
|
|
<label>{{localize "VERMINE.skill"}}</label>
|
|
<select name="skill">
|
|
<option value="">{{localize "VERMINE.none"}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{{localize "VERMINE.skill_score"}}</label>
|
|
<input id="skillScore" type="number" name="skill-score" value="5" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{{localize "VERMINE.dice_pool"}}</label>
|
|
<input type="number" name="dice-pool" value="{{dicePool}}" />
|
|
</div>
|
|
</form>
|