From 13db8825a4558ef121f0cd51e08ff34c16b6a5a3 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Tue, 2 Nov 2021 17:22:29 -0500 Subject: [PATCH] Add styling to disabled pagination buttons --- assets/css/bobastyle.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/assets/css/bobastyle.css b/assets/css/bobastyle.css index 2ecffda..8f25359 100644 --- a/assets/css/bobastyle.css +++ b/assets/css/bobastyle.css @@ -278,9 +278,20 @@ h1 svg.icon { } .page-link:hover { + text-decoration: none; +} + +:not(li.disabled) > .page-link:hover { background-color: #444; color: white; - text-decoration: none; +} + +li.disabled { + opacity: .5; +} + +li.disabled > .page-link:hover { + cursor: not-allowed; }