diff --git a/package.json b/package.json
index 888c400..8581cc6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "my-weekly-todo-list",
- "version": "1.105.1",
+ "version": "1.105.2",
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
"main": "index.js",
"scripts": {
diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx
index 0eeaf62..10a74da 100644
--- a/src/components/WeeklyView.tsx
+++ b/src/components/WeeklyView.tsx
@@ -5681,15 +5681,15 @@ export default function WeeklyView() {
top: 0,
bottom: 0,
width: "240px",
- background: darkMode ? "#1a1a2e" : "#fafafa",
- borderRight: `1px solid ${darkMode ? "#333" : "#e5e7eb"}`,
+ background: darkMode ? "#1a1a2e" : "var(--paper)",
+ borderRight: "1px solid var(--line)",
zIndex: 1000,
display: "flex",
flexDirection: "column",
padding: "16px 14px",
gap: "10px",
overflowY: "auto",
- boxShadow: "2px 0 12px rgba(0,0,0,0.08)",
+ boxShadow: "2px 0 8px rgba(0,0,0,0.04)",
}}
>
@@ -5697,7 +5697,7 @@ export default function WeeklyView() {
{/* Navigation Row */}
-
+
@@ -5720,11 +5720,11 @@ export default function WeeklyView() {
{/* Separator */}
-
+
{/* View Style */}
-
+
{profile.language === "de" ? "Ansicht" : "View"}
@@ -5736,7 +5736,7 @@ export default function WeeklyView() {
{ key: "priority", icon:
},
].map((v) => (
))}
@@ -5745,13 +5745,13 @@ export default function WeeklyView() {
{/* Columns / Days */}
-
+
{profile.language === "de" ? "Spalten" : "Days"}
{[1, 2, 3, 5, 7].map((num) => (
))}
@@ -5761,13 +5761,13 @@ export default function WeeklyView() {
{/* Slot Duration + sub-hour slots (only with time grid) */}
{profile.showTimeGrid && (
-
+
{profile.language === "de" ? "Zeitfenster" : "Slot"}
{(([15, 20, 30, 60] as CellDuration[])).map((d) => (
))}