Event dialog now uses same week start day as the main calendar. Added transparency effect.

This commit is contained in:
Leo Vasanko 2025-08-22 22:15:23 -06:00
parent 8caaf33cb9
commit 6b8963c698

View File

@ -503,7 +503,11 @@ const recurrenceSummary = computed(() => {
/>
</div>
<div v-if="recurrenceFrequency === 'weeks'" @click.stop>
<WeekdaySelector v-model="recurrenceWeekdays" :fallback="fallbackWeekdays" />
<WeekdaySelector
v-model="recurrenceWeekdays"
:fallback="fallbackWeekdays"
:first-day="calendarStore.config.first_day"
/>
</div>
</div>
</div>
@ -562,7 +566,8 @@ const recurrenceSummary = computed(() => {
}
.ec-modal {
background: var(--panel);
background: color-mix(in srgb, var(--panel) 85%, transparent);
backdrop-filter: blur(0.1em);
color: var(--ink);
border-radius: 0.6rem;
min-width: 320px;