mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-07-31 07:25:38 +08:00
62 lines
1.2 KiB
SCSS
62 lines
1.2 KiB
SCSS
.page-item {
|
|
&.active .page-link {
|
|
box-shadow: $pagination-active-box-shadow;
|
|
}
|
|
|
|
.page-link,
|
|
span {
|
|
display: $page-link-display;
|
|
align-items: $page-link-align-items;
|
|
justify-content: $page-link-justify-content;
|
|
color: $secondary;
|
|
padding: 0;
|
|
margin: $page-link-margin;
|
|
border-radius: $page-link-radius !important;
|
|
width: $page-link-width;
|
|
height: $page-link-height;
|
|
font-size: $font-size-sm;
|
|
}
|
|
}
|
|
|
|
.pagination-lg {
|
|
.page-item {
|
|
.page-link,
|
|
span {
|
|
width: $page-link-width-lg;
|
|
height: $page-link-height-lg;
|
|
line-height: $page-link-line-height-lg;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pagination-sm {
|
|
.page-item {
|
|
.page-link,
|
|
span {
|
|
width: $page-link-width-sm;
|
|
height: $page-link-height-sm;
|
|
line-height: $page-link-line-height-sm;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Colors
|
|
.pagination {
|
|
@each $name, $value in $theme-gradient-colors {
|
|
&.pagination-#{$name} {
|
|
.page-item.active > .page-link {
|
|
&,
|
|
&:focus,
|
|
&:hover {
|
|
@include gradient-directional(
|
|
nth($value, 1) 0%,
|
|
nth($value, -1) 100%,
|
|
$deg: 195deg
|
|
);
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|