2020-08-22 13:20:08 +02:00
|
|
|
.pagination {
|
|
|
|
|
display: flex;
|
2026-03-05 12:29:48 +01:00
|
|
|
@include card-style;
|
2020-08-22 13:20:08 +02:00
|
|
|
overflow: hidden;
|
2020-09-06 14:18:38 +02:00
|
|
|
|
2020-08-22 13:20:08 +02:00
|
|
|
.page-link {
|
2025-12-21 17:21:02 -06:00
|
|
|
padding: 16px 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
min-width: 48px;
|
|
|
|
|
color: var(--card-text-color-secondary);
|
|
|
|
|
text-decoration: none;
|
2020-08-22 13:20:08 +02:00
|
|
|
|
2025-12-21 17:21:02 -06:00
|
|
|
&:first-child,
|
|
|
|
|
&:last-child {
|
|
|
|
|
flex: 0 0 48px;
|
|
|
|
|
padding: 16px;
|
2020-08-22 13:20:08 +02:00
|
|
|
}
|
|
|
|
|
|
2025-12-21 17:21:02 -06:00
|
|
|
&:hover:not(.current):not(.disabled) {
|
|
|
|
|
background-color: var(--card-background-selected);
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
|
background-color: var(--card-background-selected);
|
|
|
|
|
color: var(--card-text-color-main);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
color: var(--card-text-color-secondary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
2020-08-22 13:20:08 +02:00
|
|
|
}
|
2025-12-21 17:21:02 -06:00
|
|
|
}
|