Skip to content

Commit

Permalink
Fix pagination button disabled state. (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayelkaake authored Feb 4, 2025
1 parent 27664d0 commit f8609f3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
11 changes: 5 additions & 6 deletions app/assets/stylesheets/polaris_view_components.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions app/assets/stylesheets/polaris_view_components/pagination.pcss
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
html[class~="Polaris-Summer-Editions-2023"] [aria-label='Pagination'] {
.Polaris-Button {
background-color: var(--p-color-bg-fill-tertiary);
border: none !important;
box-shadow: none;

&:hover {
background-color: var(--p-color-bg-fill-tertiary-hover);
box-shadow: none;
border: none;
&:not([disabled]) {
background-color: var(--p-color-bg-fill-tertiary);

&:hover {
background-color: var(--p-color-bg-fill-tertiary-hover);
}
}
}
}

0 comments on commit f8609f3

Please sign in to comment.