From 8fe3dae1b8284579f368c6cb2d4ca47b5b0583e6 Mon Sep 17 00:00:00 2001 From: coon Date: Tue, 5 Dec 2023 02:58:47 +0100 Subject: [PATCH] static: highlight table rows when hovering with mouse --- static/flexbox/sanic.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/flexbox/sanic.css b/static/flexbox/sanic.css index f633feb..6797f27 100644 --- a/static/flexbox/sanic.css +++ b/static/flexbox/sanic.css @@ -105,6 +105,10 @@ table tr:nth-child(even) td { background-color: #490b00; } +table tr:hover td { + background-color: #354158 !important; /* TODO: remove !important */ +} + #flexbox-container { display: flex; flex-direction: column;