Skip to content

Commit b586b7b

Browse files
authored
Merge pull request #13568 from christopherhopper/storypath-new-antagonist-fields
Storypath Scion Demigod new antagonist, birthright, and equipment fields
2 parents ccec7e0 + 2a06693 commit b586b7b

File tree

3 files changed

+517
-8
lines changed

3 files changed

+517
-8
lines changed

Storypath/Storypath.css

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@
241241
.sheet-rolltemplate-storypath h2.sheet-system-scion-demigod.subsystem-style,
242242
.sheet-rolltemplate-storypath .sheet-system-scion-demigod[aria-level="2"].subsystem-style {
243243
background-image: url("https://s3.amazonaws.com/files.d20.io/images/251360621/itDvmUX6IhfnSzD3D4aGnQ/original.png");
244-
/*reusing Hero for right now; don't see a demigod one? Assuming this is a recolor*/
245244
padding-top: var(--half-gap);
246245
}
247246

@@ -1560,6 +1559,10 @@ html {
15601559
position: relative;
15611560
gap: var(--grid-gap);
15621561
}
1562+
.ui-dialog .tab-content .charsheet .input-label > .adaptive,
1563+
.sheet-rolltemplate-storypath .input-label > .adaptive {
1564+
align-self: stretch;
1565+
}
15631566
.ui-dialog .tab-content .charsheet select,
15641567
.ui-dialog .tab-content .charsheet textarea,
15651568
.ui-dialog .tab-content .charsheet input,
@@ -3130,6 +3133,38 @@ html {
31303133
#equipment .display-target.short-equipment > * {
31313134
align-self: start;
31323135
}
3136+
#equipment .detail-container {
3137+
grid-column: 1/-1;
3138+
display: grid;
3139+
grid-template-columns: repeat(2, 1fr);
3140+
gap: var(--half-gap);
3141+
}
3142+
#equipment .name {
3143+
grid-area: name;
3144+
}
3145+
#equipment .rating {
3146+
grid-area: rating;
3147+
}
3148+
#equipment > h5 {
3149+
grid-column: 1/-1;
3150+
place-self: center start;
3151+
}
3152+
3153+
.expanded-control[value=boon] + .display-target .boon {
3154+
display: flex;
3155+
}
3156+
3157+
.expanded-control[value=marvel] + .display-target .marvel {
3158+
display: flex;
3159+
}
3160+
3161+
.expanded-control[value=special] + .display-target .special {
3162+
display: flex;
3163+
}
3164+
3165+
.expanded-control[value=scale] + .display-target .scale {
3166+
display: flex;
3167+
}
31333168

31343169
#notes {
31353170
grid-column-end: -1;

0 commit comments

Comments
 (0)