Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To replace the Prev and Next with < and > in ngx-pagination - npm #411

Open
BHUWANESHWAR2210 opened this issue Aug 21, 2024 · 1 comment

Comments

@BHUWANESHWAR2210
Copy link

Here I'm customizing the pagination controls by overriding the CSS to use Material Icons. Here's how you can modify the icons and ensure that the display properties are correctly set.
Explanation
Clear Old Content: The rules explicitly clear any content in the ::before and ::after pseudo-elements for both the .pagination-next and .pagination-previous buttons.

Ensure All States Are Covered: The CSS targets both active and disabled states and includes extra rules to catch any other scenarios that might reintroduce the double arrows.

Override Everything: The CSS now has high specificity and uses !important to ensure that it overrides any conflicting styles from other sources.

Implementation
Replace the Existing CSS: Update your styles with this comprehensive CSS.
Clear Browser Cache: Clear the cache and reload the page to ensure the new styles take effect.

Try this:

.ngx-pagination .pagination-previous a::before,
.ngx-pagination .pagination-previous.disabled::before,
.ngx-pagination .pagination-previous.disabled a::before {
font-family: 'Material Icons' !important;
content: '\2039' !important;
vertical-align: middle !important;
display: inline !important;
}
.ngx-pagination .pagination-previous a::after,
.ngx-pagination .pagination-previous.disabled a::after {
content: '' !important;
}

.ngx-pagination .pagination-next a::before,
.ngx-pagination .pagination-next.disabled::before,
.ngx-pagination .pagination-next.disabled a::before {
font-family: 'Material Icons' !important;
content: '\203A' !important;
vertical-align: middle !important;
display: inline !important;
}
.ngx-pagination .pagination-next a::after,
.ngx-pagination .pagination-next.disabled a::after {
content: '' !important;
}

.ngx-pagination .pagination-next.disabled::after,
.ngx-pagination .pagination-previous.disabled::after {
content: '' !important;
}

.ngx-pagination .pagination-next a,
.ngx-pagination .pagination-previous a {
font-family: 'Material Icons' !important;
content: '' !important;
}

@michaelbromley
Copy link
Owner

Hi, is this an issue or are you just sharing your solution here to help others?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants