1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-13 23:02:23 +04:00
Files
tabler/scss/ui/_pagination.scss
T
2019-04-02 17:37:42 +02:00

53 lines
740 B
SCSS

.pagination {
user-select: none;
}
.page-link {
border-radius: $border-radius;
min-width: px2rem(26px);
&:hover {
background: transparent;
}
}
.page-item {
text-align: center;
&.page-prev,
&.page-next {
flex: 0 0 50%;
text-align: left;
}
&.page-next {
margin-left: auto;
text-align: right;
}
}
.page-item-subtitle {
color: $text-muted;
text-transform: uppercase;
font-size: 12px;
margin-bottom: 2px;
.page-item.disabled &{
color: $pagination-disabled-color;
}
}
.page-item-title {
color: $text-color;
font-weight: 400;
font-size: $h3-font-size;
.page-link:hover & {
color: $link-color;
}
.page-item.disabled &{
color: $pagination-disabled-color;
}
}