This commit is contained in:
2025-08-03 13:06:21 +02:00
parent 1ce944b270
commit c100393675
5 changed files with 10 additions and 4 deletions

View File

@@ -65,6 +65,8 @@
.invisibleInput { .invisibleInput {
background: transparent; background: transparent;
color: inherit;
text-align: inherit;
} }
.advancementBox { .advancementBox {
@@ -94,6 +96,7 @@
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
text-align: center;
} }
.lvlValue { .lvlValue {

View File

@@ -55,6 +55,8 @@
} }
.pokemon.sheet.characterSheet .invisibleInput { .pokemon.sheet.characterSheet .invisibleInput {
background: transparent; background: transparent;
color: inherit;
text-align: inherit;
} }
.pokemon.sheet.characterSheet .advancementBox { .pokemon.sheet.characterSheet .advancementBox {
margin-left: 20px; margin-left: 20px;
@@ -79,6 +81,7 @@
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
text-align: center;
} }
.pokemon.sheet.characterSheet .lvlValue { .pokemon.sheet.characterSheet .lvlValue {
font-size: 25px; font-size: 25px;

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.0.17", "version": "0.0.18",
"id": "pokemon", "id": "pokemon",
"title": "Pokémon TTRPG", "title": "Pokémon TTRPG",
"description": "A Pokémon TTRPG", "description": "A Pokémon TTRPG",

Binary file not shown.

View File

@@ -1,16 +1,16 @@
<div class="headerBox"> <div class="headerBox">
<div class="charInfo"> <div class="charInfo">
<input class="inputText bigInputText" type="text" name="name" value="{{actor.name}}"> <input class="inputText bigInputText" type="text" name="name" value="{{actor.name}}">
<input class="inputText smallInputText" type="text" name="system.species" value="{{data.species}}"> <input class="inputText smallInputText" type="text" name="system.species" value="{{system.species}}">
</div> </div>
<div class="advancementBox"> <div class="advancementBox">
<div class="lvlBox"> <div class="lvlBox">
<div class="lvlLabel">{{localize "POKEMON.System.LevelShort"}}</div> <div class="lvlLabel">{{localize "POKEMON.System.LevelShort"}}</div>
<input class="invisibleInput" type="number" name="system.experience.level" value="{{data.experience.level}}"> <input class="invisibleInput" type="number" name="system.experience.level" value="{{system.experience.level}}">
</div> </div>
<div class="expBox"> <div class="expBox">
<div class="expLabel">{{localize "POKEMON.System.ExperienceShort"}}:</div> <div class="expLabel">{{localize "POKEMON.System.ExperienceShort"}}:</div>
<div class="expValue">{{system.experience.EXP}}</div> <input class="invisibleInput" type="number" name="system.experience.Exp" value="{{system.experience.Exp}}">
</div> </div>
</div> </div>
</div> </div>