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

@@ -60,7 +60,7 @@ export default function Last20MessagesTable({ className }: Props) {
</thead>
<tbody>
{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">
<div
className="w-4 h-4 rounded"

View File

@@ -49,7 +49,7 @@ export default function DigitalInputsWidget({
</thead>
<tbody>
{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">
<div className="flex items-center gap-1 ">
<Icon

View File

@@ -69,7 +69,7 @@ export default function DigitalOutputsWidget({
</thead>
<tbody>
{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">
<Icon
icon={outputIcon}

View File

@@ -26,7 +26,7 @@ export default function MeldungenTabelle({
</thead>
<tbody>
{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">
<div
className="w-4 h-4 rounded"