From 81c3988777264dc922f0b9bc517b3b995090632b Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Tue, 24 Jun 2025 13:01:28 +1000 Subject: [PATCH] Give bottom pagination bar transparent background (#5958) --- ui/v2.5/src/components/List/styles.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/v2.5/src/components/List/styles.scss b/ui/v2.5/src/components/List/styles.scss index cc43bbecd..9a719b4b2 100644 --- a/ui/v2.5/src/components/List/styles.scss +++ b/ui/v2.5/src/components/List/styles.scss @@ -952,7 +952,7 @@ input[type="range"].zoom-slider { } .pagination-footer { - background-color: $body-bg; + background-color: transparent; bottom: $navbar-height; padding: 0.5rem 1rem; position: sticky; @@ -964,5 +964,10 @@ input[type="range"].zoom-slider { .pagination { margin-bottom: 0; + + .btn:disabled { + color: #888; + opacity: 1; + } } }