fix(calendar): fix QuickEventOverlay z-index stacking issue

- Add portal action to move overlay to body, escaping parent stacking contexts
- Set z-index: 99999 via inline style to ensure overlay appears above all UI elements
- Remove z-index: 0 from main-content that was creating a stacking context
- Overlay now correctly displays above DateStrip, Toolbar, and InputBar

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2025-12-12 12:15:01 +01:00
parent 8a75b349dc
commit f51708d75a
5 changed files with 44 additions and 20 deletions

View file

@ -184,6 +184,16 @@ export class EventService {
conditions.push(inArray(events.calendarId, query.calendarIds));
}
// Search filter - search in title and description
if (query.search) {
conditions.push(
or(
ilike(events.title, `%${query.search}%`),
ilike(events.description, `%${query.search}%`)
) as any
);
}
const result = await this.db
.select({
event: events,