diff --git a/.env.development b/.env.development index 32c9ba8..19071d2 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_USE_CGI=false # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.876 +NEXT_PUBLIC_APP_VERSION=1.6.877 NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) diff --git a/.env.production b/.env.production index 9233132..9252754 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_USE_CGI=true # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.876 +NEXT_PUBLIC_APP_VERSION=1.6.877 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f6ae4..47f9853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.6.877] – 2025-09-08 + +- WIP: dark mode Modale + +--- ## [1.6.876] – 2025-09-08 - WIP: dark mode Baugrüppenträger sttus diff --git a/components/main/kabelueberwachung/KabelueberwachungView.tsx b/components/main/kabelueberwachung/KabelueberwachungView.tsx index e00a49f..e630044 100644 --- a/components/main/kabelueberwachung/KabelueberwachungView.tsx +++ b/components/main/kabelueberwachung/KabelueberwachungView.tsx @@ -129,7 +129,7 @@ function KabelueberwachungView() { className={`mr-2 px-2 py-1 rounded-sm text-sm font-medium transition-colors focus:outline-none focus:ring-2 focus:ring-accent/50 ${ isActive ? "btn-primary" - : "btn-muted text-fg-muted hover:text-fg" + : "btn-muted text-fg opacity-90 hover:opacity-100" }`} > Rack {rack} diff --git a/components/main/reports/MeldungenTabelle.tsx b/components/main/reports/MeldungenTabelle.tsx index f28067e..3965964 100644 --- a/components/main/reports/MeldungenTabelle.tsx +++ b/components/main/reports/MeldungenTabelle.tsx @@ -14,39 +14,29 @@ export default function MeldungenTabelle({ }) { return (
| - Prio - | -- Zeitstempel - | -- Quelle - | -- Meldung - | -- Status - | +Prio | +Zeitstempel | +Quelle | +Meldung | +Status |
|---|---|---|---|---|---|---|---|---|---|
| + | - | + | {new Date(msg.t).toLocaleString("de-DE", { day: "2-digit", month: "2-digit", @@ -56,21 +46,15 @@ export default function MeldungenTabelle({ second: "2-digit", })} | -- {msg.i} - | -- {msg.m} - | -- {msg.v} - | +{msg.i} | +{msg.m} | +{msg.v} |