Skip to content

Commit

Permalink
1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jopeek committed May 3, 2020
1 parent a6a8725 commit 9ce2510
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions css/lootsheetnpc5e.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@
.loot-sheet-npc .gm-settings .sheet-type-info,
.loot-sheet-npc .gm-settings .permission-info {
color: #7a7971;
margin: 6px 0 6px 24px;
margin: 6px 6px 6px 24px;
display: none;
}

.loot-sheet-npc .gm-settings .help {
color: #7a7971;
font-size: 13px;
}

.loot-sheet-npc .gm-settings .permission,
Expand Down Expand Up @@ -115,7 +121,7 @@ section.sheet-content.content {
}

.loot-sheet-npc.sheet.actor .inventory-list .item-controls {
flex: 0 0 66px;
flex: 0 0 100px !important;
display: flex;
flex-direction: row;
flex-wrap: wrap;
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lootsheetnpc5e",
"title": "Loot Sheet NPC 5e",
"description": "This module adds an additional NPC sheet which can be used for loot containers such as chests or shopkeepers.",
"version": "1.6.1",
"version": "1.6.2",
"minimumCoreVersion": "0.5.5",
"compatibleCoreVersion": "0.5.5",
"author": "Jan Ole Peek (ChalkOne)",
Expand Down
8 changes: 4 additions & 4 deletions template/npc-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ <h3 class="gm-section">GM Settings</h3>

<!-- GM SETTINGS -->
<div class="gm-settings" data-group="sidebar" data-tab="gm-settings">
<h3 class="gm-header"><i class="fas fa-id-card"></i> Type</h3>
<h3 class="gm-header"><i class="fas fa-id-card"></i> Type <i class="fas fa-info-circle help" onclick="$('.sheet-type-info').toggle();"></i></h3>
<div class="sheet-type-info">{{sheetTypeDescription}}</div>
<div class="sheet-types">
<h4 class="sheet-name">Type of sheet: </h4>
<select class="sheet-type" name="data.lootsheettype">
Expand All @@ -45,10 +46,9 @@ <h4 class="sheet-name">Type of sheet: </h4>
{{/select}}
</select>
</div>
<div class="sheet-type-info"><i class="fas fa-info-circle"></i> {{sheetTypeDescription}}</div>

<h3 class="gm-header"><i class="fas fa-users"></i> Permissions</h3>
<div class="sheet-type-info"><i class="fas fa-info-circle"></i> Ensure players have selected a character via the Player Configuration (right-click player in bottom left) menu.</div>
<h3 class="gm-header"><i class="fas fa-users"></i> Permissions <i class="fas fa-info-circle help" onclick="$('.permission-info').toggle();"></i></h3>
<div class="permission-info">Ensure players have selected a character via the Player Configuration (right-click player in bottom left) menu.</div>
<ol class="permissions-list">
{{#each actor.flags.loot.players as |player p|}}
<li class="permission" data-skill="{{p}}">
Expand Down

0 comments on commit 9ce2510

Please sign in to comment.