mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Updated the background image for the system * Fixed so Weapon/Armor features are added again * Fixed so fear is available as a resource to be deducted by actions (#757) * Changed to use the config labels and src * Updated Weapons * Fixed so the decrease button of simple fear tracker is not visible when not hovered * Fixed so armor preUpdate doesn't fail if no system changes are made * Updated .gitignore and author details (#777) * Add author details and name mapping for chrisryan10 (#773) Co-authored-by: Chris Ryan <chrisr@blackhole> * Add build to ignore for my linux dev (#775) Co-authored-by: Chris Ryan <chrisr@blackhole> --------- Co-authored-by: Chris Ryan <chrisr@blackhole> * Corrected sneak attack active effect (#780) * Fixed a spelling error (#779) * Fix bardic rally showing in damage dialog when it should not (#783) * update spelling (#786) * Translating inventory descriptions (#782) * updated credits for 1.0.1 release (#797) * updated credits for 1.0.1 release * further updated artwork credits * Chagned handlebarhelper rollparsed to be more defensive (#794) * Added missing scene refreshType (#790) * Remove ability use buttons for not owned abilities (#795) * [Fix] PrayerDice Fixed (#799) * Fixed prayer dice, and wheelchair images * Fixed -settings data sources * Dragging features from one adversary to another (#788) * [Fix] Levelup Fixes (#787) * Fixed crash on experience selection. Fixed subclass error on multiclassing * Fixed so multiclasses do not gain the hope feature for the class * Fixed so Class/Subclass features are properly deleted on delevel * Removed automatic deletion of features on delevel when not using levelup auto * Fixed so custom domains can be selected in levelup when multiclassing * Changed so encounter countdowns is a button (#804) * Fixed so that dropping on class/subclass...creates the item on the character (#803) * [BUG] - Importing All Adversaries/Environments (#814) Fixes #774 Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com> * Bug/671 reaction roll chat title (#809) * Update Reaction Roll Chat Message Title * Removed console log --------- Co-authored-by: WBHarry <williambjrklund@gmail.com> * Improve Trait tooltip display (#817) Fixes #806 Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com> * [BUG] - Combat Tracker d12 logo not found (#812) Fixes #764 Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com> * Compendium Browser (#821) * Corrected timbending description localization (#816) * [Fix] Compendium Item (#810) * Corrected Emberwoven Armor * Fixed subclass regression * Fixed so character's with wildcard images don't break beastform (#815) * Fix roll result based duality damage (#822) --------- Co-authored-by: Chris Ryan <73275196+chrisryan10@users.noreply.github.com> Co-authored-by: Chris Ryan <chrisr@blackhole> Co-authored-by: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Co-authored-by: IrkTheImp <41175833+IrkTheImp@users.noreply.github.com> Co-authored-by: CPTN_Cosmo <cptncosmo@gmail.com> Co-authored-by: Josh Q. <jshqntnr13@gmail.com> Co-authored-by: joaquinpereyra98 <24190917+joaquinpereyra98@users.noreply.github.com> Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com>
230 lines
6.3 KiB
Text
230 lines
6.3 KiB
Text
@import '../../../utils/colors.less';
|
|
@import '../../../utils/fonts.less';
|
|
@import '../../../utils/mixin.less';
|
|
|
|
// Theme header backgrounds
|
|
.appTheme({
|
|
.character-header-sheet {
|
|
.trait {
|
|
background: url(../assets/svg/trait-shield.svg) no-repeat;
|
|
}
|
|
|
|
.character-row .domains-section img {
|
|
filter: @golden-filter;
|
|
}
|
|
}
|
|
}, {
|
|
.character-header-sheet {
|
|
.trait {
|
|
background: url('../assets/svg/trait-shield-light.svg') no-repeat;
|
|
}
|
|
|
|
.character-row .domains-section img {
|
|
filter: brightness(0) saturate(100%);
|
|
}
|
|
}
|
|
});
|
|
|
|
.application.sheet.daggerheart.actor.dh-style.character {
|
|
.character-header-sheet {
|
|
padding: 0 15px;
|
|
padding-top: var(--header-height);
|
|
width: 100%;
|
|
|
|
.name-row {
|
|
display: flex;
|
|
gap: 5px;
|
|
align-items: end;
|
|
justify-content: space-between;
|
|
padding: 0;
|
|
padding-top: 5px;
|
|
flex: 1;
|
|
|
|
input[type='text'] {
|
|
font-size: 32px;
|
|
height: 42px;
|
|
text-align: start;
|
|
border: 1px solid transparent;
|
|
outline: 2px solid transparent;
|
|
transition: all 0.3s ease;
|
|
|
|
&:hover {
|
|
outline: 2px solid light-dark(@dark, @golden);
|
|
}
|
|
}
|
|
|
|
.level-div {
|
|
white-space: nowrap;
|
|
display: flex;
|
|
justify-content: end;
|
|
|
|
.label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
input {
|
|
width: 40px;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.level-button {
|
|
color: light-dark(@dark, @beige);
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
min-height: unset;
|
|
height: min-content;
|
|
padding: 4px;
|
|
font-family: 'Cinzel', serif;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
border-color: light-dark(@dark-blue, @golden);
|
|
background-color: light-dark(transparent, @deep-black);
|
|
|
|
&:hover {
|
|
background-image: none;
|
|
background-color: var(--color-warm-2);
|
|
filter: drop-shadow(0 0 3px lightgray);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.character-details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 5px 0;
|
|
margin-bottom: 10px;
|
|
font-size: 12px;
|
|
color: light-dark(@dark-blue, @golden);
|
|
|
|
.missing-header-feature {
|
|
opacity: 0.5;
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
span {
|
|
padding: 3px;
|
|
border-radius: 3px;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: light-dark(@dark-blue-40, @golden-40);
|
|
}
|
|
|
|
&.dot {
|
|
background: transparent;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
|
|
.character-row {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
margin-bottom: 15px;
|
|
|
|
.hope-section {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.downtime-section {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
margin-left: auto;
|
|
|
|
button {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.hope-section,
|
|
.domains-section {
|
|
position: relative;
|
|
display: flex;
|
|
gap: 10px;
|
|
background-color: light-dark(transparent, @dark-blue);
|
|
color: light-dark(@dark-blue, @golden);
|
|
padding: 5px 10px;
|
|
border: 1px solid light-dark(@dark-blue, @golden);
|
|
border-radius: 6px;
|
|
align-items: center;
|
|
width: fit-content;
|
|
height: 30px;
|
|
|
|
h4 {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: light-dark(@dark-blue, @golden);
|
|
}
|
|
|
|
.domain {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
.label {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: light-dark(@dark-blue, @golden);
|
|
}
|
|
|
|
img {
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
}
|
|
|
|
.hope-value {
|
|
display: flex;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.character-traits {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0;
|
|
margin-bottom: 15px;
|
|
|
|
.trait {
|
|
height: 60px;
|
|
width: 60px;
|
|
cursor: pointer;
|
|
|
|
.trait-name {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-top: 5px;
|
|
color: light-dark(@dark-blue, @golden);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 3px;
|
|
|
|
i {
|
|
line-height: 17px;
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
|
|
.trait-value {
|
|
font-family: @font-body;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|