Files
openfoodnetwork/app/webpacker/css/admin_v3/components/pagination.scss
2023-08-17 09:06:26 +02:00

66 lines
1.2 KiB
SCSS

.pagination {
text-align: center;
margin: 0 0 1em;
padding: 20px 0 28px 0;
background-color: $color-7;
display: flex;
justify-content: center;
gap: 8px;
.page {
width: 40px;
line-height: 40px;
text-align: center;
display: inline-block;
text-align: center;
background-color: $color-1;
@include defaultBoxShadow;
border-radius: 4px;
color: $color-8;
font-weight: 600;
cursor: default;
&.current {
background-color: $color-5;
color: $white;
}
&.prev {
margin-right: 28px; // 28+8 (the gap) = 36px : the space between the arrows and the numbers
}
&.next {
margin-left: 28px; // 28+8 (the gap) = 36px : the space between the arrows and the numbers
}
&:not(.disabled):not(.current) {
cursor: pointer;
}
&:hover:not(.disabled) {
background-color: $color-5;
color: $white;
}
}
button {
margin: 0 0.35em;
background-color: $white;
color: $near-black;
box-shadow: $color-btn-shadow;
&.active {
color: $white;
background-color: $red;
cursor: default;
}
&.disabled {
display: none;
}
}
}