From 10f84f0c1bf58e01f382561ca47a8201976dfe5e Mon Sep 17 00:00:00 2001 From: PaulVua Date: Wed, 7 Jan 2026 15:00:49 +0100 Subject: [PATCH] Fix most recent row highlighting by increasing CSS specificity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The light green background for the most recent data row wasn't displaying because Bootstrap's table striping was overriding it. Changed CSS from targeting the row to targeting individual cells: - .table .most-recent-row td - .table-striped .most-recent-row td Both with !important to override Bootstrap's table styles. Now the first row correctly displays with light green background. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- html/database.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html/database.html b/html/database.html index 1de359e..89e6ee2 100755 --- a/html/database.html +++ b/html/database.html @@ -27,7 +27,10 @@ z-index: 1040; } /* Highlight most recent data row with light green background */ - .most-recent-row { + .table .most-recent-row td { + background-color: #d4edda !important; + } + .table-striped .most-recent-row td { background-color: #d4edda !important; }