forked from ElfFriend-DnD/foundryvtt-compactBeyond5eSheet
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* edited sheet to make items rollable in 5e 3.0 * change release action to work with new foundry admin system * Make hit point and hit dice config buttons clickable again
- Loading branch information
Showing
12 changed files
with
111 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
border-radius: $border-radius; | ||
flex: 1; // arbitrary | ||
border: $groove-border; | ||
min-width: 0%; | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,43 @@ | ||
<form class="{{cssClass}} flexcol limited" autocomplete="off"> | ||
{{!-- Sheet Header --}} | ||
<header class="sheet-header"> | ||
<img class="profile" src="{{actor.img}}" title="{{actor.name}}" data-edit="img" /> | ||
<form class='{{cssClass}} flexcol limited' autocomplete='off'> | ||
{{! Sheet Header }} | ||
<header class='sheet-header'> | ||
<img class='profile' src='{{actor.img}}' data-tooltip='{{actor.name}}' data-edit='img' /> | ||
|
||
<section class="header-details"> | ||
<section class='header-details'> | ||
<h1> | ||
{{actor.name}} | ||
</h1> | ||
</section> | ||
</header> | ||
|
||
{{!-- Sheet Body --}} | ||
<section class="sheet-body"> | ||
{{! Sheet Body }} | ||
<section class='sheet-body'> | ||
|
||
{{!-- Biography Tab --}} | ||
<div class="tab biography flexrow"> | ||
<div class="note-entries"> | ||
{{! Biography Tab }} | ||
<div class='tab biography flexrow'> | ||
<div class='note-entries'> | ||
<article> | ||
<h4 class="section-titles biopage">{{ localize "DND5E.Appearance" }}</h4> | ||
{{editor content=system.details.appearance target="system.details.appearance" button=true owner=owner | ||
editable=editable}} | ||
<h4 class='section-titles biopage'>{{localize 'DND5E.Appearance'}}</h4> | ||
{{editor | ||
content=system.details.appearance | ||
target='system.details.appearance' | ||
button=true | ||
owner=owner | ||
editable=editable | ||
}} | ||
</article> | ||
<article class="biography-notes big-bio"> | ||
<h4 class="section-titles">{{ localize "DND5E.Background" }}</h4> | ||
{{editor content=system.details.biography.value target="system.details.biography.value" button=true | ||
owner=owner editable=editable}} | ||
<article class='biography-notes big-bio'> | ||
<h4 class='section-titles'>{{localize 'DND5E.Background'}}</h4> | ||
{{editor | ||
content=system.details.biography.value | ||
target='system.details.biography.value' | ||
button=true | ||
owner=owner | ||
editable=editable | ||
}} | ||
</article> | ||
</div> | ||
</div> | ||
|
||
</section> | ||
</form> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.