mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 13:11:08 +01:00
Added Journal tab on character sheet with input fields "notes", "allies", "enemies"
This commit is contained in:
parent
fd92540792
commit
0b6b711800
7 changed files with 127 additions and 2 deletions
38
styles/less/sheets/actors/character/journal.less
Normal file
38
styles/less/sheets/actors/character/journal.less
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
@import '../../../utils/colors.less';
|
||||
@import '../../../utils/fonts.less';
|
||||
|
||||
.application.sheet.daggerheart.actor.dh-style.character {
|
||||
.tab.journal {
|
||||
.items-section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
mask-image: linear-gradient(0deg, transparent 0%, black 10%, black 98%, transparent 100%);
|
||||
padding-bottom: 40px;
|
||||
height: 100%;
|
||||
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
||||
|
||||
fieldset {
|
||||
height: 100%;
|
||||
}
|
||||
.editor {
|
||||
max-height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.prosemirror {
|
||||
min-height: 4rem;
|
||||
}
|
||||
.editor-content {
|
||||
min-height: 4rem;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
word-break: break-word;
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
@import './actors/adversary/sidebar.less';
|
||||
|
||||
@import './actors/character/biography.less';
|
||||
@import './actors/character/journal.less';
|
||||
@import './actors/character/effects.less';
|
||||
@import './actors/character/features.less';
|
||||
@import './actors/character/header.less';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue