mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Set up DhLevelTier datamodel * Added Levelup data model and started at the render * Fixed data handling in the LevelUp view * Added back the save function * Finalised levelup selections and propagating to PC * Added level advancement selection data * Added DomainCard selection * Css merge commit * Added PC level/delevel benefits of leveling up * Fixed sticky previous selections on continous leveling * Fixed up Summary. Fixed multiclass/subclass blocking on selection * Removed unused level.hbs * Fixed attribute base for PC * Improved naming of attribute properties * Renamed/structured resources/evasion/proficiency * Improved trait marking * Rework to level up once at a time * Added markers * Removed tabs when in Summary * Fixed multilevel buttons * Improved multiclass/subclass recognition * Fixed tagify error on selection * Review fixes
80 lines
1.7 KiB
Text
Executable file
80 lines
1.7 KiB
Text
Executable file
@import '../utils/colors.less';
|
|
@import '../utils/fonts.less';
|
|
|
|
.application.sheet.dh-style .window-header {
|
|
background: transparent;
|
|
border-bottom: none;
|
|
justify-content: end;
|
|
|
|
h1 {
|
|
color: light-dark(@dark-blue, @beige);
|
|
font-family: @font-body;
|
|
}
|
|
|
|
button {
|
|
background: light-dark(transparent, @deep-black);
|
|
color: light-dark(@dark-blue, @beige);
|
|
border: 1px solid light-dark(@dark-blue, transparent);
|
|
padding: 0;
|
|
|
|
&:hover {
|
|
border: 1px solid light-dark(@dark-blue, @golden);
|
|
color: light-dark(@dark-blue, @golden);
|
|
}
|
|
}
|
|
}
|
|
|
|
.application.sheet.dh-style:not(.minimized) {
|
|
.window-title,
|
|
.window-icon {
|
|
display: none;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
}
|
|
|
|
.application.sheet.dh-style.minimized {
|
|
.window-content {
|
|
display: none;
|
|
opacity: 0;
|
|
transition: opacity 0.1s ease;
|
|
}
|
|
}
|
|
|
|
.application.sheet.dh-style:not(.minimized) {
|
|
.window-content {
|
|
opacity: 1;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
}
|
|
|
|
.application.sheet.dh-style .window-content {
|
|
overflow: initial;
|
|
backdrop-filter: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.theme-dark {
|
|
.application.sheet.dh-style {
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
}
|
|
|
|
.theme-light {
|
|
.application.sheet.dh-style {
|
|
background-image: url('../assets/parchments/dh-parchment-light.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
}
|
|
|
|
.application.sheet.daggerheart.dh-style {
|
|
.window-content {
|
|
position: relative;
|
|
top: -36px;
|
|
|
|
.tab {
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
}
|