mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-16 05:31:07 +01:00
Added max-height and overflow
This commit is contained in:
parent
83709e334d
commit
5fc04909de
3 changed files with 8 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ export default class CountdownEdit extends HandlebarsApplicationMixin(Applicatio
|
||||||
static PARTS = {
|
static PARTS = {
|
||||||
countdowns: {
|
countdowns: {
|
||||||
template: 'systems/daggerheart/templates/ui/countdown-edit.hbs',
|
template: 'systems/daggerheart/templates/ui/countdown-edit.hbs',
|
||||||
scrollable: ['.expanded-view']
|
scrollable: ['.expanded-view', '.edit-content']
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,11 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 8px;
|
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 {
|
.countdown-edit-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,8 @@
|
||||||
.window-content {
|
.window-content {
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
padding-bottom: 16px;
|
padding-bottom: 16px;
|
||||||
|
overflow: auto;
|
||||||
|
max-height: 312px;
|
||||||
|
|
||||||
.countdowns-container {
|
.countdowns-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue