mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* start development * finish party members tab * start resources tab * finish resources tab * finish inventory tab and add inital template to projects tab * add resource buttons actions methods * add group roll dialog * Main implementation * Fixed costs * Minor fixes and tweaks for the party sheet (#1239) * Minor fixes and tweaks for the party sheet * Fix scroll restoration for party sheet tabs * Finished GroupRoll * Removed/commented-out not yet implemented things * Commented out Difficulty since it's not used yet * Re-render party when members update (#1242) * Fixed so style applies in preview chat message * Added the clown car * Fixed so items can be dropped into the Party sheet * Added delete icon to inventory * Fixed TokenHUD token property useage. Fixed skipping roll message * Added visible modifier to GroupRoll leader result * Leader roll displays the large result display right away after rolling * Corrected tokenHUD for non-player-tokens * Fixed clowncar tokenData * Fixed TagTeam roll message and sound * Removed final TagTeamRoll roll sound * [PR] [Party Sheets] Sidebar character sheet changes (#1249) * Something experimenting * I am silly (wearning Dunce hat) * Stressful task * Armor functional to be hit * CSS Changes to accomadate pip boy * last minute change to resource section for better visual feeling * restoring old css for toggle * Added setting to toggle pip/number display * toggle functionality added * Fixed light-mode in characterSheet * Fixed multi-row resource pips display for character * Fixed separators * Added pip-display to Adversary and Companion. Some fixing on armor display --------- Co-authored-by: WBHarry <williambjrklund@gmail.com> * Fixed party height and resource armor update * Fixed deletebutton padding * Only showing expand-me icon on InventoryItem if there is a description to show * . * Fixed menu icon to be beige instead of white in dark mode --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com>
142 lines
3.8 KiB
Text
142 lines
3.8 KiB
Text
@import '../../utils/colors.less';
|
|
@import '../../utils/fonts.less';
|
|
|
|
.theme-light .daggerheart.application.dh-style.countdown-edit {
|
|
background-image: url('../assets/parchments/dh-parchment-light.png');
|
|
}
|
|
|
|
.daggerheart.application.dh-style.countdown-edit {
|
|
color: light-dark(@dark, @beige);
|
|
background-image: url('../assets/parchments/dh-parchment-dark.png');
|
|
|
|
.edit-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
|
|
h2 {
|
|
text-align: center;
|
|
color: light-dark(@dark, @golden);
|
|
}
|
|
|
|
.header-tools {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 144px;
|
|
gap: 8px;
|
|
|
|
.hide-tools {
|
|
white-space: nowrap;
|
|
flex-wrap: nowrap;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
input {
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
}
|
|
|
|
.header-main-button {
|
|
height: 32px;
|
|
flex: 1;
|
|
}
|
|
|
|
.default-ownership-tools {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
select {
|
|
flex: 1;
|
|
background: light-dark(@beige, @dark-blue);
|
|
}
|
|
}
|
|
}
|
|
|
|
.edit-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
max-height: 500px;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
|
|
|
.countdown-edit-container {
|
|
display: grid;
|
|
grid-template-columns: 48px 1fr 64px;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
img {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.countdown-edit-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
|
|
.countdown-edit-subtext {
|
|
display: flex;
|
|
gap: 10px;
|
|
|
|
.countdown-edit-sub-tag {
|
|
padding: 3px 5px;
|
|
font-size: var(--font-size-12);
|
|
font: @font-body;
|
|
|
|
background: light-dark(@dark-15, @beige-15);
|
|
border: 1px solid light-dark(@dark, @beige);
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.countdown-edit-tools {
|
|
display: flex;
|
|
gap: 8px;
|
|
|
|
&.same-row {
|
|
margin-top: 17.5px;
|
|
}
|
|
|
|
a {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.countdown-edit-subrow {
|
|
display: flex;
|
|
gap: 16px;
|
|
margin: 0 72px 0 56px;
|
|
}
|
|
|
|
.countdown-edit-input {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 2px;
|
|
|
|
&.tiny {
|
|
flex: 0;
|
|
input {
|
|
min-width: 2.5rem;
|
|
}
|
|
}
|
|
|
|
input,
|
|
select {
|
|
background: light-dark(@beige, @dark-blue);
|
|
color: light-dark(@dark, @beige);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|