- Created description tab
-Added background - Redesign of base_value and skill tab
This commit is contained in:
@@ -6,13 +6,14 @@ const preloadTemplates = async (): Promise<Handlebars.TemplateDelegate<any>[]> =
|
||||
// const templates = [ rootPath + "actor/actor-sheet.hbs" ]
|
||||
// This would map to our local folder of /Assets/Templates/Actor/actor-sheet.hbs
|
||||
const templates: Array<string> = [
|
||||
"sheets/character/description.hbs",
|
||||
"sheets/character/attribute.hbs",
|
||||
"sheets/character/base_values.hbs",
|
||||
"sheets/character/main.hbs",
|
||||
"sheets/character/skills.hbs",
|
||||
"sheets/character/gear.hbs",
|
||||
"sheets/character/spells.hbs",
|
||||
"sheets/character/kampfkuenste.hbs",
|
||||
"sheets/character/combat.hbs",
|
||||
"sheets/character/effects.hbs",
|
||||
"sheets/partial/mod.hbs",
|
||||
"sheets/item/rolls.hbs",
|
||||
|
||||
@@ -197,13 +197,9 @@
|
||||
font-style: italic;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
color: rgba(255, 255, 255);
|
||||
|
||||
button {
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
button.roll-button {
|
||||
.roll-button {
|
||||
background: url(/icons/svg/d20-black.svg) no-repeat;
|
||||
background-size: 1rem 1rem;
|
||||
border: #000000 solid 0px;
|
||||
@@ -211,6 +207,17 @@
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
.learn-button {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 1rem;
|
||||
width: 4rem;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
font-size: smaller;
|
||||
text-align: center;
|
||||
line-height: 0.8rem;
|
||||
}
|
||||
|
||||
span.spell-process {
|
||||
color: rgb(93, 93, 93);
|
||||
font-style: italic;
|
||||
@@ -261,15 +268,23 @@
|
||||
}
|
||||
}
|
||||
|
||||
.biography {
|
||||
margin: 0.5rem 0.5rem 0.5rem 0.5rem;
|
||||
height: 180px;
|
||||
background-color: #eaead7;
|
||||
}
|
||||
|
||||
.attributes {
|
||||
padding: 0.5rem 0.5rem 0.5rem 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-bottom: 0.5rem;
|
||||
background-color: beige;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
.attribute {
|
||||
flex: 0 0 7rem;
|
||||
flex: 0 0 6rem;
|
||||
margin: 0;
|
||||
border: 1px solid @attributeBorderColor;
|
||||
//border-bottom: none;
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"characterDescription": {
|
||||
"info": {
|
||||
"description": "",
|
||||
"background": "",
|
||||
"class": "",
|
||||
"race": "",
|
||||
"magicUsing": false,
|
||||
@@ -203,7 +204,7 @@
|
||||
},
|
||||
"equippable": {
|
||||
"equippable": false,
|
||||
"equipped": true
|
||||
"equipped": false
|
||||
},
|
||||
"valuable": {
|
||||
"valuable": false,
|
||||
|
||||
Reference in New Issue
Block a user