add zig build for compendium packs
move document types from template.json into system.json change Talents into Items add rolls for Talents change the fallback language to german
This commit is contained in:
+48
-21
@@ -42,6 +42,11 @@
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
& .fit-content {
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
& .row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@@ -117,14 +122,14 @@
|
||||
&.editable-number {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
& .placeholder {
|
||||
font-size: 0.8em;
|
||||
border-top: 1px solid;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
& .placeholder {
|
||||
font-size: 0.8em;
|
||||
border-top: 1px solid;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
& .character-image {
|
||||
@@ -153,10 +158,15 @@
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
&.die-type {
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
}
|
||||
|
||||
&.die-courage { fill: #b22319; }
|
||||
&.die-cleverness { fill: #8158a3; }
|
||||
&.die-intuition { fill: #388834; }
|
||||
&.die-charisma { fill: #0c0c0c; }
|
||||
&.die-charisma { fill: #d96600; }
|
||||
&.die-dexterity { fill: #d4b366; }
|
||||
&.die-agility { fill: #678ec3; }
|
||||
&.die-constitution { fill: #a3a3a3; }
|
||||
@@ -164,10 +174,10 @@
|
||||
|
||||
&.die-attacke { fill: #b22319; }
|
||||
&.die-parade { fill: #388834; }
|
||||
&.die-trefferpunkte { fill: #0c0c0c; }
|
||||
&.die-trefferpunkte { fill: #a2a0ee; }
|
||||
|
||||
&.die-fernkampf-attacke { fill: #388834; }
|
||||
&.die-fernkampf-trefferpunkte { fill: #0c0c0c; }
|
||||
&.die-fernkampf-trefferpunkte { fill: #a2a0ee; }
|
||||
}
|
||||
|
||||
& .tabs {
|
||||
@@ -194,7 +204,7 @@
|
||||
& .list {
|
||||
display: grid;
|
||||
|
||||
background: #252830;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
|
||||
|
||||
& .item-image {
|
||||
@@ -226,11 +236,14 @@
|
||||
|
||||
align-items: center;
|
||||
|
||||
background: #252830;
|
||||
|
||||
padding: 0.25rem;
|
||||
border-bottom: 1px dotted;
|
||||
|
||||
&:last-child {
|
||||
border: none;
|
||||
border-radius: 0px 0px 5px 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -277,18 +290,14 @@
|
||||
}
|
||||
|
||||
&[data-tab="tab2"] {
|
||||
& .Kampftalente {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, max-content) repeat(5, minmax(0, 1fr));
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
grid-template-columns: minmax(0, max-content) repeat(2, minmax(0, 1fr)) min-content;
|
||||
|
||||
& > * {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
& .Talente {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, max-content) repeat(2, minmax(0, 1fr));
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
& .Kampftalente {
|
||||
grid-template-columns: minmax(0, max-content) repeat(5, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -322,3 +331,21 @@
|
||||
padding-top: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.talent_chat_message {
|
||||
& .info {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(min-content, 1fr));
|
||||
text-wrap: nowrap;
|
||||
|
||||
& > * {
|
||||
display: grid;
|
||||
grid-column: 1 / -1;
|
||||
grid-template-columns: subgrid;
|
||||
|
||||
& > *:not(:first-child) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user