You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

302 lines
5.0 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../input/style/mixin";
@pagination-prefix-cls: ~"@{ant-prefix}-pagination";
.@{pagination-prefix-cls} {
font-size: @font-size-base;
&:after {
content: " ";
display: block;
height: 0;
clear: both;
overflow: hidden;
visibility: hidden;
}
&-total-text {
float: left;
height: 30px;
line-height: 30px;
margin-right: 10px;
}
&-item {
cursor: pointer;
border-radius: @border-radius-base;
user-select: none;
min-width: 28px;
height: 28px;
line-height: 28px;
text-align: center;
list-style: none;
float: left;
border: @border-width-base @border-style-base @border-color-base;
background-color: @component-background;
margin-right: 8px;
font-family: Arial;
a {
text-decoration: none;
8 years ago
color: @text-color;
transition: none;
margin: 0 6px;
}
&:hover {
transition: all 0.3s ease;
border-color: @primary-color;
a {
color: @primary-color;
}
}
&-active {
background-color: @primary-color;
border-color: @primary-color;
a,
&:hover a {
color: #fff;
}
}
}
&-jump-prev,
&-jump-next {
&:after {
content: "•••";
display: block;
letter-spacing: 2px;
color: @disabled-color;
text-align: center;
}
&:hover {
&:after {
color: @primary-color;
.iconfont-size-under-12px(8px);
letter-spacing: -1px;
font-family: "anticon";
}
}
}
&-jump-prev {
&:hover {
&:after {
content: "\e620\e620";
}
}
}
&-jump-next {
&:hover {
&:after {
content: "\e61f\e61f";
}
}
}
&-prev,
&-jump-prev,
&-jump-next {
margin-right: 8px;
}
&-prev,
&-next,
&-jump-prev,
&-jump-next {
font-family: Arial;
cursor: pointer;
8 years ago
color: @text-color;
9 years ago
border-radius: @border-radius-base;
list-style: none;
min-width: 28px;
height: 28px;
line-height: 28px;
float: left;
text-align: center;
transition: all 0.3s ease;
9 years ago
display: inline-block;
}
&-prev,
&-next {
border: @border-width-base @border-style-base @border-color-base;
background-color: @component-background;
a {
8 years ago
color: @text-color;
9 years ago
&:after {
9 years ago
.iconfont-size-under-12px(8px);
display: block;
9 years ago
height: 26px;
line-height: 26px;
9 years ago
font-family: "anticon";
text-align: center;
}
}
&:hover {
border-color: @primary-color;
a {
color: @primary-color;
}
}
}
9 years ago
&-prev {
a {
&:after {
margin-top: -.5px;
content: "\e620";
9 years ago
display: block;
}
}
}
&-next {
a {
&:after {
content: "\e61f";
9 years ago
display: block;
}
}
}
&-disabled {
&:hover {
border-color: @border-color-base;
a {
color: @disabled-color;
cursor: not-allowed;
}
}
cursor: not-allowed;
a {
color: @disabled-color;
}
}
&-slash {
margin: 0 10px 0 5px;
}
&-options {
float: left;
margin-left: 15px;
&-size-changer {
float: left;
margin-right: 10px;
}
&-quick-jumper {
float: left;
height: @input-height-base;
line-height: @input-height-base;
input {
.input;
margin: 0 8px;
width: 50px;
}
}
}
&-simple &-prev,
&-simple &-next {
border: 0;
height: 24px;
line-height: 24px;
margin: 0;
font-size: 18px;
}
&-simple &-simple-pager {
float: left;
margin-right: 8px;
input {
margin: 0 8px;
box-sizing: border-box;
background-color: @component-background;
9 years ago
border-radius: @border-radius-base;
border: @border-width-base @border-style-base @border-color-base;
outline: none;
padding: 5px 8px;
width: 30px;
height: 24px;
text-align: center;
transition: border-color 0.3s ease;
&:hover {
border-color: @primary-color;
}
}
}
}
.@{pagination-prefix-cls} {
&.mini &-total-text {
height: 20px;
line-height: 20px;
}
&.mini &-item {
border: 0;
margin: 0;
min-width: 20px;
height: 20px;
line-height: 20px;
}
&.mini &-prev,
&.mini &-next {
margin: 0;
min-width: 20px;
height: 20px;
line-height: 20px;
border: 0;
9 years ago
a {
&:after {
height: 20px;
line-height: 20px;
}
}
}
&.mini &-jump-prev,
&.mini &-jump-next {
height: 20px;
line-height: 20px;
}
&.mini &-options {
margin-left: 8px;
&-quick-jumper {
height: 20px;
line-height: 20px;
input {
.input-sm;
width: 44px;
}
}
}
}
@media only screen and (max-width: 1024px) {
.@{pagination-prefix-cls}-item {
&-after-jump-prev,
&-before-jump-next {
display: none;
}
}
}