-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pagination button disabled state. (#460)
- Loading branch information
1 parent
27664d0
commit f8609f3
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
11 changes: 6 additions & 5 deletions
11
app/assets/stylesheets/polaris_view_components/pagination.pcss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} | ||
} | ||
} |