Skip to content

Commit

Permalink
Removing border from names
Browse files Browse the repository at this point in the history
  • Loading branch information
mclemente committed Jan 17, 2022
1 parent 114a632 commit 4af022d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions style/party-overview.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ div.party-overview-window .table-row .num.party-overview-ellipsis {
border-right: 1px solid black;
}

.party-overview-ellipsis-no-border,
.party-overview-ellipsis:last-child {
border-right: none;
}
2 changes: 1 addition & 1 deletion templates/parts/DND5E-Proficiencies.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="text">{{localize "party-overview.NAME"}}</div>
{{#each actors as | actor | }}
{{> "modules/party-overview/templates/parts/ToggleVisibilityButton.html" actor=actor}}
<div class="num party-overview-ellipsis" title="{{ actor.shortestName }}">
<div class="num party-overview-ellipsis party-overview-ellipsis-no-border" title="{{ actor.shortestName }}">
{{ actor.shortestName }}
</div>
{{/each}}
Expand Down
2 changes: 1 addition & 1 deletion templates/parts/PF2e-Proficiencies.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="text">{{localize "party-overview.NAME"}}</div>
{{#each actors as | actor | }}
{{> "modules/party-overview/templates/parts/ToggleVisibilityButton.html" actor=actor}}
<div class="num party-overview-ellipsis" title="{{ actor.shortestName }}">
<div class="num party-overview-ellipsis party-overview-ellipsis-no-border" title="{{ actor.shortestName }}">
{{ actor.shortestName }}
</div>
{{/each}}
Expand Down

0 comments on commit 4af022d

Please sign in to comment.