From 2334a695a86454691bd9d801e429fccba8f3d01a Mon Sep 17 00:00:00 2001 From: "Marin @Home" Date: Wed, 12 Nov 2025 20:20:27 -0500 Subject: [PATCH] adds back CSS hiding disabled prev/next for similar pagination components --- app/webpacker/css/admin/components/pagination.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/webpacker/css/admin/components/pagination.scss b/app/webpacker/css/admin/components/pagination.scss index 19bb7b5ced..f2588fe728 100644 --- a/app/webpacker/css/admin/components/pagination.scss +++ b/app/webpacker/css/admin/components/pagination.scss @@ -39,6 +39,10 @@ color: $white; } + &.disabled { + display: none; + } + &.prev { margin-right: 28px; // 28+8 (the gap) = 36px : the space between the arrows and the numbers & > i { @@ -53,7 +57,7 @@ } } - &:hover:not(.gap), + &:hover:not(.gap):not(.disabled), &[href]:hover { background-color: $color-5; color: $white;