From: Stephanie Leary Date: Tue, 2 May 2023 18:36:59 +0000 (+0000) Subject: LP2018326 Contrast fix for catalog pagination X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cf455b905ef17c178e7033ec6556278b5fa2d48d;p=Evergreen.git 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 0de2968d4f..8c3f3bbec0 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