mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Adjust details container calculation for overlaySummary based on left/right alignment
This commit is contained in:
parent
32dd160e35
commit
5a2bbd6463
@ -63,11 +63,14 @@ export class Et2Details extends Et2Widget(SlDetails)
|
|||||||
max-height: 15em;
|
max-height: 15em;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
.details.hoist .details__body.overlaySummary {
|
.details.hoist .details__body.overlaySummaryLeftAligned {
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 2em;
|
left: 2em;
|
||||||
width: calc(100% - 2em);
|
width: calc(100% - 2em);
|
||||||
}
|
}
|
||||||
|
.details.hoist .details__body.overlaySummaryRightAligned {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -149,7 +152,8 @@ export class Et2Details extends Et2Widget(SlDetails)
|
|||||||
}
|
}
|
||||||
if (this.overlaySummaryOnOpen)
|
if (this.overlaySummaryOnOpen)
|
||||||
{
|
{
|
||||||
this.shadowRoot.querySelector('.details__body').classList.add('overlaySummary');
|
this.shadowRoot.querySelector('.details__body').classList.add(this.toggleAlign === 'left' ?
|
||||||
|
'overlaySummaryLeftAligend' : 'overlaySummaryRightAligned');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user