mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Add favored attribute checkboxes for lunar characters, add additional castes to the drop down box for non-solar characters.
This commit is contained in:
@@ -389,6 +389,7 @@ input[type=checkbox] + span::before
|
||||
.sheet-dots input[type=checkbox]:first-child + span::before { opacity: 0.3; }
|
||||
|
||||
.sheet-ability input[type=checkbox]:first-child:checked + span::before,
|
||||
.sheet-attribute input[type=checkbox]:first-child:checked + span::before,
|
||||
.sheet-will input[type=checkbox]:checked + span::before,
|
||||
.sheet-hearthstones input[type=checkbox]:checked + span::before,
|
||||
.sheet-languages input[type=checkbox]:checked + span::before,
|
||||
@@ -422,7 +423,8 @@ input[type=checkbox] + span::before
|
||||
}
|
||||
|
||||
.sheet-dots input[type=checkbox]:first-child:hover:checked + span::before,
|
||||
.sheet-ability input[type=checkbox]:first-child + span::before
|
||||
.sheet-ability input[type=checkbox]:first-child + span::before,
|
||||
.sheet-attribute input[type=checkbox]:first-child + span::before
|
||||
{
|
||||
-moz-box-shadow: 0 0 2px #ccc;
|
||||
-webkit-box-shadow: 0 0 2px #ccc;
|
||||
@@ -541,4 +543,8 @@ div.sheet-craft-types:hover ul.sheet-craft-types,
|
||||
|
||||
div.sheet-ability > input[type=checkbox]:first-child + span::before,
|
||||
.sheet-dots input[type=checkbox]:first-child:hover + span::before,
|
||||
.sheet-dots input[type=checkbox]:first-child:checked + span::before { opacity: 1; }
|
||||
|
||||
div.sheet-attribute > input[type=checkbox]:first-child + span::before,
|
||||
.sheet-dots input[type=checkbox]:first-child:hover + span::before,
|
||||
.sheet-dots input[type=checkbox]:first-child:checked + span::before { opacity: 1; }
|
||||
@@ -7,11 +7,26 @@
|
||||
<label>
|
||||
<span>Caste:</span>
|
||||
<select name="attr_Caste">
|
||||
<option value="Dawn">Dawn</option>
|
||||
<option value="Zenith">Zenith</option>
|
||||
<option value="Twilight">Twilight</option>
|
||||
<option value="Night">Night</option>
|
||||
<option value="Eclipse">Eclipse</option>
|
||||
<option value="Dawn">Solar: Dawn</option>
|
||||
<option value="Zenith">Solar: Zenith</option>
|
||||
<option value="Twilight">Solar: Twilight</option>
|
||||
<option value="Night">Solar: Night</option>
|
||||
<option value="Eclipse">Solar: Eclipse</option>
|
||||
|
||||
<option value="FullMoon">Lunar: Full Moon</option>
|
||||
<option value="ChangingMoon">Lunar: Changing Moon</option>
|
||||
<option value="NoMoon">Lunar: No Moon</option>
|
||||
|
||||
<option value="Journey">Sidereal: Journey</option>
|
||||
<option value="Serenity">Sidereal: Serenity</option>
|
||||
<option value="Battle">Sidereal: Battle</option>
|
||||
<option value="Secret">Sidereal: Secret</option>
|
||||
<option value="Ending">Sidereal: Ending</option>
|
||||
|
||||
<option value="Earth">Dragon-Blooded: Earth</option>
|
||||
<option value="Fire">Dragon-Blooded: Fire</option>
|
||||
<option value="Water">Dragon-Blooded: Water</option>
|
||||
<option value="Air">Dragon-Blooded: Air</option>
|
||||
</select>
|
||||
</label>
|
||||
</div>
|
||||
@@ -803,6 +818,7 @@
|
||||
<div class="sheet-3colrow">
|
||||
<div class="sheet-col">
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_StrengthFavored" value="1"/><span></span>
|
||||
<span class="attribute">Strength</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Strength" value="1" checked="checked" /><span></span>
|
||||
@@ -813,6 +829,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_DexterityFavored" value="1"/><span></span>
|
||||
<span class="attribute">Dexterity</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Dexterity" value="1" checked="checked" /><span></span>
|
||||
@@ -823,6 +840,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_StaminaFavored" value="1"/><span></span>
|
||||
<span class="attribute">Stamina</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Stamina" value="1" checked="checked" /><span></span>
|
||||
@@ -836,6 +854,7 @@
|
||||
|
||||
<div class="sheet-col">
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_CharismaFavored" value="1"/><span></span>
|
||||
<span class="attribute">Charisma</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Charisma" value="1" checked="checked" /><span></span>
|
||||
@@ -846,6 +865,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_ManipulationFavored" value="1"/><span></span>
|
||||
<span class="attribute">Manipulation</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Manipulation" value="1" checked="checked" /><span></span>
|
||||
@@ -856,6 +876,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_ApperanceFavored" value="1"/><span></span>
|
||||
<span class="attribute">Appearance</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Appearance" value="1" checked="checked" /><span></span>
|
||||
@@ -869,6 +890,7 @@
|
||||
|
||||
<div class="sheet-col">
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_IntelligenceFavored" value="1"/><span></span>
|
||||
<span class="attribute">Intelligence</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Intelligence" value="1" checked="checked" /><span></span>
|
||||
@@ -879,6 +901,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_WitsFavored" value="1"/><span></span>
|
||||
<span class="attribute">Wits</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Wits" value="1" checked="checked" /><span></span>
|
||||
@@ -889,6 +912,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="attribute">
|
||||
<input type="checkbox" name="attr_PerceptionFavored" value="1"/><span></span>
|
||||
<span class="attribute">Perception</span>
|
||||
<div class="dots">
|
||||
<input type="radio" name="attr_Perception" value="1" checked="checked" /><span></span>
|
||||
|
||||
Reference in New Issue
Block a user