fix: List mouseover -> hover:bg-gray-200

This commit is contained in:
ISA
2025-07-07 14:52:53 +02:00
parent 8ee7c9c193
commit fdd38c74f0
10 changed files with 15 additions and 9 deletions

View File

@@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false
NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_EXPORT_STATIC=false
NEXT_PUBLIC_USE_CGI=false NEXT_PUBLIC_USE_CGI=false
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.547 NEXT_PUBLIC_APP_VERSION=1.6.548
NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter)

View File

@@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL
NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_EXPORT_STATIC=true
NEXT_PUBLIC_USE_CGI=true NEXT_PUBLIC_USE_CGI=true
# App-Versionsnummer # App-Versionsnummer
NEXT_PUBLIC_APP_VERSION=1.6.547 NEXT_PUBLIC_APP_VERSION=1.6.548
NEXT_PUBLIC_CPL_MODE=production NEXT_PUBLIC_CPL_MODE=production

View File

@@ -1,3 +1,8 @@
## [1.6.548] 2025-07-07
- fix: es soll dann nur wenn der Button Anziegen geklickt wird anzeigenund nicht automatisch nach ein Datumauswahl
---
## [1.6.547] 2025-07-07 ## [1.6.547] 2025-07-07
- refactor: API-Handler umbenannt zu messages.ts für klare REST-Struktur - refactor: API-Handler umbenannt zu messages.ts für klare REST-Struktur

View File

@@ -60,7 +60,7 @@ export default function Last20MessagesTable({ className }: Props) {
</thead> </thead>
<tbody> <tbody>
{filteredMessages.slice(0, 20).map((msg, index) => ( {filteredMessages.slice(0, 20).map((msg, index) => (
<tr key={index} className="hover:bg-gray-50"> <tr key={index} className="hover:bg-gray-200">
<td className="border p-2"> <td className="border p-2">
<div <div
className="w-4 h-4 rounded" className="w-4 h-4 rounded"

View File

@@ -49,7 +49,7 @@ export default function DigitalInputsWidget({
</thead> </thead>
<tbody> <tbody>
{inputs.map((input) => ( {inputs.map((input) => (
<tr key={input.id} className="border-b"> <tr key={input.id} className="border-b hover:bg-gray-200">
<td className="px-1 py-0"> <td className="px-1 py-0">
<div className="flex items-center gap-1 "> <div className="flex items-center gap-1 ">
<Icon <Icon

View File

@@ -69,7 +69,7 @@ export default function DigitalOutputsWidget({
</thead> </thead>
<tbody> <tbody>
{digitalOutputs.map((output) => ( {digitalOutputs.map((output) => (
<tr key={output.id} className="border-b"> <tr key={output.id} className="border-b hover:bg-gray-200">
<td className="flex items-center px-1 py-1"> <td className="flex items-center px-1 py-1">
<Icon <Icon
icon={outputIcon} icon={outputIcon}

View File

@@ -26,7 +26,7 @@ export default function MeldungenTabelle({
</thead> </thead>
<tbody> <tbody>
{messages.map((msg, index) => ( {messages.map((msg, index) => (
<tr key={index} className="hover:bg-gray-50"> <tr key={index} className="hover:bg-gray-200">
<td className="border p-2"> <td className="border p-2">
<div <div
className="w-4 h-4 rounded" className="w-4 h-4 rounded"

View File

@@ -18,3 +18,4 @@
- [ ] TODO: Alle Kabelüberwachungsmodule mit ein Button Updaten , in Einstellungen und in Kabelüberwachungsmodul Modal - [ ] TODO: Alle Kabelüberwachungsmodule mit ein Button Updaten , in Einstellungen und in Kabelüberwachungsmodul Modal
![Zusatzfunktionen Kai 25.06.2025](./TODOsScreenshots/Zusatzfunktionen_25-06-2025.png) ![Zusatzfunktionen Kai 25.06.2025](./TODOsScreenshots/Zusatzfunktionen_25-06-2025.png)
Zeit bis Ende August Zeit bis Ende August
- [ ] TODO: Überall Littwin-Blau und ausgewählt und grau wie bei Navigation bei Mouse over

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.547", "version": "1.6.548",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.547", "version": "1.6.548",
"dependencies": { "dependencies": {
"@fontsource/roboto": "^5.1.0", "@fontsource/roboto": "^5.1.0",
"@headlessui/react": "^2.2.4", "@headlessui/react": "^2.2.4",

View File

@@ -1,6 +1,6 @@
{ {
"name": "cpl-v4", "name": "cpl-v4",
"version": "1.6.547", "version": "1.6.548",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",