Skip to content

Commit

Permalink
Update pagination colors to meet accessability requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
bbpennel committed Jan 6, 2025
1 parent 0e837fd commit c932ab7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion static/js/vue-cdr-access/src/components/pagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,17 @@ Pagination component for search results, listing pages, previous/next buttons, c

<style scoped lang="scss">
.is-current {
background-color: #007FAE;
background-color: #1A698C;
color: #FFFFFF;
}

.is-current:hover, .is-disabled:hover {
text-decoration: none;
}

.pagination-link.is-disabled, .pagination-next.is-disabled, .pagination-previous.is-disabled {
color: #494B55;
opacity: 1;
background-color: #E7E8EC;
}
</style>

0 comments on commit c932ab7

Please sign in to comment.