Skip to content

Commit

Permalink
skill overflow rework
Browse files Browse the repository at this point in the history
  • Loading branch information
EndlesNights committed Oct 18, 2023
1 parent cfa6851 commit 64ef5e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion styles/dnd4eBeta.css
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ textarea{
margin-left:15px;
border-right:var(--border-heavy);
height:100%;
overflow-y:auto;
/* overflow-y:auto; */
}
.dnd4eBeta .section--abilities{
margin-right:15px;
Expand Down Expand Up @@ -464,6 +464,8 @@ textarea{
.dnd4eBeta .section--skills{
margin-right:15px;
margin-top:10px;
overflow-y: auto;
height:calc(100% - 195px);
}
.dnd4eBeta .section--skills .skill--block{
min-height:27px;
Expand Down
3 changes: 2 additions & 1 deletion templates/actor-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,10 @@ <h4 class="skill-name rollable">{{skill.label}}</h4>
<label class="skill-mod skill-bonus rollable">{{numberFormat skill.total decimals=0 sign=true }}</label>
</div>
{{/each}}
<a class="custom-roll-descriptions" data-tooltip="{{localize 'DND4EBETA.CheckDescsLong'}}">{{localize 'DND4EBETA.CheckDescs'}}</a>

</section>

<a class="custom-roll-descriptions" data-tooltip="{{localize 'DND4EBETA.CheckDescsLong'}}">{{localize 'DND4EBETA.CheckDescs'}}</a>
</section>

<section class="section section--main flexcol">
Expand Down

0 comments on commit 64ef5e6

Please sign in to comment.