-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from sasquach45932/master
Add colour to DSN! D6s, now with colour picker
- Loading branch information
Showing
4 changed files
with
124 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<form autocomplete="off"> | ||
|
||
<div class="form-group"> | ||
<label>{{localize "DL.SettingDSNColourDie"}}</label> | ||
<input type="checkbox" name="colourBoBDieDSN" {{checked colourBoBDieDSN}} data-dtype="Boolean"/> | ||
</div> | ||
<hr> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingDSNBoonDieColour"}}</label> | ||
<input type="color" name="boonColour" data-dtype="string" value="{{colourBoon}}"/> | ||
<p class="notes">{{localize "DL.SettingDSNBoonDieColourHint"}}</p> | ||
</div> | ||
<div class="form-group"> | ||
<label>{{localize "DL.SettingDSNBaneDieColour"}}</label> | ||
<input type="color" name="baneColour" data-dtype="string" value="{{colourBane}}"/> | ||
<p class="notes">{{localize "DL.SettingDSNBaneDieColourHint"}}</p> | ||
</div> | ||
<footer class="sheet-footer flexrow"> | ||
<button type="submit" name="submit"> | ||
<i class="far fa-save"></i> | ||
{{localize "SETTINGS.Save"}} | ||
</button> | ||
<button type="button" data-action="reset"> | ||
<i class="fas fa-undo"></i> | ||
{{localize "SETTINGS.Reset"}} | ||
</button> | ||
</footer> | ||
</form> |