From: Stephanie Leary Date: Tue, 2 May 2023 18:36:59 +0000 (+0000) Subject: LP2018326 Contrast fix for catalog pagination X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=34444f7b0881e1f834bd9db7f180761a9bdb5b60 LP2018326 Contrast fix for catalog pagination Adds explicit background color styles in the staff catalog pagination component to prevent blue-on-blue links for the current page. Signed-off-by: Stephanie Leary Signed-off-by: Jane Sandberg --- diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.css b/Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.css index 0de2968..8c3f3bb 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.css +++ b/Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.css @@ -6,12 +6,20 @@ cursor: pointer; } -.pagination a, .pagination .page-item.active .page-link { - border-color: #0A58CA; - color: #0A58CA; +.pagination a { + background-color: #fff; + border-color: var(--primary); + color: var(--primary); +} + +.pagination .page-item.active .page-link { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } .pagination a:hover, .pagination .page-item.active .page-link:hover { + background-color: #0848A5; border-color: #0848A5; - color: #0848A5; + color: #fff; } \ No newline at end of file