Skip to content

Commit

Permalink
CSS Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mclemente committed Jul 23, 2021
1 parent 485ddbf commit 3c5e263
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion module/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function registerSettings() {
game.settings.registerMenu("party-overview", "PartyOverviewSystemSettings", {
name: "Party Overview System Settings",
label: "Party Overview System Settings",
icon: "",
icon: "fas fa-users",
type: SystemProviderSettings,
restricted: true
});
Expand Down
2 changes: 1 addition & 1 deletion party-overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Hooks.on("renderActorDirectory", (app, html, data) => {
return;

let button = $(
`<button id="party-overview-button" class="${game.system.id}">Party Overview</button>`
`<button id="party-overview-button" class="${game.system.id}"><i class="fas fa-users"></i> Party Overview</button>`
);
button.on("click", (e) => {
party.render(true);
Expand Down
7 changes: 4 additions & 3 deletions style/party-overview.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ div.party-overview nav .item.active {
}

#party-overview-button {
display: block;
flex: 0 0 32px;
height: 32px;
height: 28px;
line-height: 26px;
margin: 4px;
width: 97%;
}

div.party-overview .table-row {
Expand Down

0 comments on commit 3c5e263

Please sign in to comment.