Make sheet tab scrollbars stable and remove fieldsets

This commit is contained in:
Carlos Fernandez 2026-07-01 20:22:25 -04:00
parent cdf6e7fdd0
commit 8f86d29569
39 changed files with 577 additions and 562 deletions

View file

@ -1,4 +1,4 @@
@import './sheet.less';
@import './header.less';
@import './party-members.less';
@import './sheet.less';
@import './inventory.less';

View file

@ -8,10 +8,6 @@
display: flex;
flex-direction: column;
gap: 10px;
overflow-y: auto;
margin-top: 20px;
padding-bottom: 4px;
.with-scroll-shadows();
}
}
}

View file

@ -2,8 +2,30 @@
@import '../../../utils/fonts.less';
@import '../../../utils/mixin.less';
.application.sheet.daggerheart.actor.dh-style.party .tab.partyMembers {
overflow: auto;
.application.sheet.daggerheart.actor.dh-style.party .tab.partyMembers.active {
padding: var(--spacer-8) 4px 0 10px;
scrollbar-gutter: stable;
.with-scroll-shadows();
.actions-section {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
margin-bottom: 10px;
gap: 20px;
background-color: light-dark(@dark-blue-10, @golden-10);
button {
span {
font-size: 12px;
}
}
.active-action {
animation: glow 0.75s infinite alternate;
}
}
.actors-list {
display: flex;

View file

@ -17,35 +17,10 @@
});
.application.sheet.daggerheart.actor.dh-style.party {
.tab {
.tab.active {
overflow: auto;
display: flex;
flex-direction: column;
flex: 1;
overflow-y: auto;
scrollbar-gutter: stable;
&.active {
overflow: auto;
display: flex;
flex-direction: column;
}
.actions-section {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
margin-bottom: 10px;
gap: 20px;
background-color: light-dark(@dark-blue-10, @golden-10);
button {
span {
font-size: 12px;
}
}
.active-action {
animation: glow 0.75s infinite alternate;
}
}
}
}