From 7633ac81449e00cadb742475c1701d14f256f343 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 26 Feb 2024 14:56:31 +0100 Subject: [PATCH] hover highlighting for the table --- styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles.css b/styles.css index bb7f205..2054ee1 100644 --- a/styles.css +++ b/styles.css @@ -60,6 +60,7 @@ .simple-time-tracker-table td, .simple-time-tracker-table th { + vertical-align: middle; border: none; } @@ -75,3 +76,7 @@ .simple-time-tracker-table-buttons { text-align: right !important; } + +.simple-time-tracker-table tr:hover { + background-color: var(--background-secondary-alt); +}