Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
This commit is contained in:
83
html/scss/free/_pagination.scss
Executable file
83
html/scss/free/_pagination.scss
Executable file
@@ -0,0 +1,83 @@
|
||||
// Pagination
|
||||
.pagination {
|
||||
.page-item {
|
||||
&.active {
|
||||
.page-link {
|
||||
box-shadow: $z-depth-1;
|
||||
transition: $pagination-active-transition;
|
||||
border-radius: $border-radius-base;
|
||||
background-color: $primary-color;
|
||||
color: $white-base;
|
||||
&:hover {
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.disabled {
|
||||
.page-link {
|
||||
color: $pagination-page-item-disabled-color;
|
||||
}
|
||||
}
|
||||
.page-link {
|
||||
transition: $pagination-page-link-transition;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
font-size: $pagination-page-link-font-size;
|
||||
color: $pagination-page-link-color;
|
||||
&:hover {
|
||||
transition: $pagination-page-link-transition;
|
||||
border-radius: $border-radius-base;
|
||||
background-color: $pagination-page-link-hover-bg-color;
|
||||
}
|
||||
&:focus {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-lg {
|
||||
.page-item {
|
||||
.page-link {
|
||||
font-size: $pagination-page-link-font-size-lg;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-sm {
|
||||
.page-item {
|
||||
.page-link {
|
||||
font-size: $pagination-page-link-font-size-sm;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-circle {
|
||||
.page-item {
|
||||
.page-link {
|
||||
margin-left: $pagination-circle-margin-x;
|
||||
margin-right: $pagination-circle-margin-x;
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
&:hover {
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
.page-link {
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@each $name, $color in $pagination-colors {
|
||||
&.pg-#{$name} {
|
||||
.page-item {
|
||||
&.active {
|
||||
.page-link {
|
||||
background-color: $color;
|
||||
&:hover {
|
||||
background-color: $color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user