From 83cc38d471296cc2983f91c782be90bdf8058436 Mon Sep 17 00:00:00 2001 From: Wally Hackenslacker Date: Fri, 1 May 2026 15:26:57 -0400 Subject: [PATCH] fix: make home table divider theming reliable --- views/index.php | 2 +- views/partials/theme.php | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/views/index.php b/views/index.php index c6fa35f..decb68e 100644 --- a/views/index.php +++ b/views/index.php @@ -106,7 +106,7 @@ Last Service - + diff --git a/views/partials/theme.php b/views/partials/theme.php index ed7ad9d..29fe2ed 100644 --- a/views/partials/theme.php +++ b/views/partials/theme.php @@ -88,6 +88,14 @@ if ($themeSection === 'head'): border-color: var(--theme-border); } + .theme-row-dividers > tr { + border-bottom: 1px solid var(--theme-border); + } + + .theme-row-dividers > tr:last-child { + border-bottom-width: 0; + } + .theme-input { background-color: var(--theme-surface); border-color: var(--theme-border);