Fixes für Darkmode

This commit is contained in:
2026-03-23 22:51:44 +01:00
parent 7bca90b17c
commit 907519c6d2
2 changed files with 37 additions and 4 deletions

View File

@@ -821,11 +821,11 @@ function renderWeek() {
<tr>
<td colspan="6" style="padding: 0; border: none;">
<div class="weekend-section" style="margin-top: 10px;">
<div class="collapsible-header" onclick="toggleWeekendSection()" style="cursor: pointer; padding: 12px; background-color: #f5f5f5; border: 1px solid #ddd; border-radius: 4px; display: flex; justify-content: space-between; align-items: center;">
<h4 style="margin: 0; font-size: 14px; font-weight: 600;">Wochenende</h4>
<div class="collapsible-header" onclick="toggleWeekendSection()" style="cursor: pointer; padding: 12px; background-color: var(--bg-soft); border: 1px solid var(--border-color); border-radius: 4px; display: flex; justify-content: space-between; align-items: center;">
<h4 style="margin: 0; font-size: 14px; font-weight: 600; color: var(--text-strong);">Wochenende</h4>
<span id="weekendToggleIcon" style="font-size: 16px; transition: transform 0.3s;">▼</span>
</div>
<div id="weekendContent" style="display: none; border: 1px solid #ddd; border-top: none; border-radius: 0 0 4px 4px; background-color: #fff;">
<div id="weekendContent" style="display: none; border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 4px 4px; background-color: var(--bg-surface);">
<table style="width: 100%; border-collapse: collapse;">
<tbody>
`;