mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-22 23:43:37 +02:00
* Initial rolls working * Fixed reroll * more * More work * Added results section * . * Visual improvements * . * Removed traces of old TagTeamRoll * Added initiator handling * Added updating for other players * Fixed sync start * Completed finish method * Damage reroll * Fixed localization * Fixed crit damage * Fixes * Added visual of advantage and disadvantage dice
53 lines
1.3 KiB
Text
53 lines
1.3 KiB
Text
@import '../../../utils/colors.less';
|
|
@import '../../../utils/fonts.less';
|
|
@import '../../../utils/mixin.less';
|
|
|
|
.appTheme({
|
|
&.party {
|
|
background-image: url('../assets/parchments/dh-parchment-dark.png');
|
|
}
|
|
}, {
|
|
&.sheet.actor.dh-style.party {
|
|
background: url('../assets/parchments/dh-parchment-light.png');
|
|
|
|
.tab .actions-section .active-action {
|
|
animation: glow-dark 0.75s infinite alternate;
|
|
}
|
|
}
|
|
});
|
|
|
|
.application.sheet.daggerheart.actor.dh-style.party {
|
|
.tab {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|