mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-28 17:13:31 +01:00
7a4c198547
- fixes #9086 - cherry pick of #9087
35 lines
620 B
CSS
35 lines
620 B
CSS
.pagination {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.pagination-list {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.pagination-button,
|
|
.pagination-previous,
|
|
.pagination-next {
|
|
border: none;
|
|
background: none;
|
|
text-decoration: 2px solid underline;
|
|
text-decoration-color: #3beccd;
|
|
text-underline-offset: 3px;
|
|
}
|
|
|
|
.pagination-button[aria-current='page'] {
|
|
background-color: #40efc5;
|
|
}
|
|
|
|
body.theme-dark .pagination-button:not([aria-current]),
|
|
body.theme-dark .pagination-next,
|
|
body.theme-dark .pagination-previous {
|
|
color: #fff;
|
|
}
|