HTMLテンプレートやBootstrapを追加
This commit is contained in:
58
app/assets/scss/material-dashboard/_pagination.scss
Normal file
58
app/assets/scss/material-dashboard/_pagination.scss
Normal file
@@ -0,0 +1,58 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user