mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
289 lines
5.0 KiB
Plaintext
289 lines
5.0 KiB
Plaintext
|
@prefixClass: rc-pagination;
|
|||
|
|
|||
|
.@{prefixClass} {
|
|||
|
font-size: 12px;
|
|||
|
font-family: 'Arial';
|
|||
|
user-select: none;
|
|||
|
padding: 0;
|
|||
|
|
|||
|
> li {
|
|||
|
list-style: none;
|
|||
|
}
|
|||
|
|
|||
|
&-total-text {
|
|||
|
float: left;
|
|||
|
height: 30px;
|
|||
|
line-height: 30px;
|
|||
|
list-style: none;
|
|||
|
padding: 0;
|
|||
|
margin: 0 8px 0 0;
|
|||
|
}
|
|||
|
|
|||
|
&:after {
|
|||
|
content: " ";
|
|||
|
display: block;
|
|||
|
height: 0;
|
|||
|
clear: both;
|
|||
|
overflow: hidden;
|
|||
|
visibility: hidden;
|
|||
|
}
|
|||
|
|
|||
|
&-item {
|
|||
|
cursor: pointer;
|
|||
|
border-radius: 6px;
|
|||
|
min-width: 28px;
|
|||
|
height: 28px;
|
|||
|
line-height: 28px;
|
|||
|
text-align: center;
|
|||
|
list-style: none;
|
|||
|
float: left;
|
|||
|
border: 1px solid #d9d9d9;
|
|||
|
background-color: #fff;
|
|||
|
margin-right: 8px;
|
|||
|
|
|||
|
a {
|
|||
|
text-decoration: none;
|
|||
|
color: #666;
|
|||
|
}
|
|||
|
|
|||
|
&:hover {
|
|||
|
border-color: #2db7f5;
|
|||
|
a {
|
|||
|
color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-active {
|
|||
|
background-color: #2db7f5;
|
|||
|
border-color: #2db7f5;
|
|||
|
|
|||
|
a {
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
|
|||
|
&:hover {
|
|||
|
a {
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-jump-prev, &-jump-next {
|
|||
|
&:after {
|
|||
|
content: "•••";
|
|||
|
display: block;
|
|||
|
letter-spacing: 2px;
|
|||
|
color: #ccc;
|
|||
|
font-size: 12px;
|
|||
|
margin-top: 1px;
|
|||
|
}
|
|||
|
|
|||
|
&:hover {
|
|||
|
&:after {
|
|||
|
color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-jump-prev {
|
|||
|
&:hover {
|
|||
|
&:after {
|
|||
|
content: "«";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-jump-next {
|
|||
|
&:hover {
|
|||
|
&:after {
|
|||
|
content: "»";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-prev, &-jump-prev, &-jump-next {
|
|||
|
margin-right: 8px;
|
|||
|
}
|
|||
|
&-prev, &-next, &-jump-prev, &-jump-next {
|
|||
|
cursor: pointer;
|
|||
|
color: #666;
|
|||
|
font-size: 10px;
|
|||
|
border-radius: 6px;
|
|||
|
list-style: none;
|
|||
|
min-width: 28px;
|
|||
|
height: 28px;
|
|||
|
line-height: 28px;
|
|||
|
float: left;
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
|
|||
|
&-prev {
|
|||
|
a {
|
|||
|
&:after {
|
|||
|
content: "‹";
|
|||
|
display: block;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-next {
|
|||
|
a {
|
|||
|
&:after {
|
|||
|
content: "›";
|
|||
|
display: block;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-prev, &-next {
|
|||
|
border: 1px solid #d9d9d9;
|
|||
|
font-size: 18px;
|
|||
|
a {
|
|||
|
color: #666;
|
|||
|
&:after {
|
|||
|
margin-top: -1px;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-disabled {
|
|||
|
cursor: not-allowed;
|
|||
|
a {
|
|||
|
color: #ccc;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-options {
|
|||
|
float: left;
|
|||
|
margin-left: 15px;
|
|||
|
&-size-changer {
|
|||
|
float: left;
|
|||
|
width: 80px;
|
|||
|
}
|
|||
|
|
|||
|
&-quick-jumper {
|
|||
|
float: left;
|
|||
|
margin-left: 16px;
|
|||
|
height: 28px;
|
|||
|
line-height: 28px;
|
|||
|
|
|||
|
input {
|
|||
|
margin: 0 8px;
|
|||
|
box-sizing: border-box;
|
|||
|
background-color: #fff;
|
|||
|
border-radius: 6px;
|
|||
|
border: 1px solid #d9d9d9;
|
|||
|
outline: none;
|
|||
|
padding: 3px 12px;
|
|||
|
width: 50px;
|
|||
|
height: 28px;
|
|||
|
|
|||
|
&:hover {
|
|||
|
border-color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
button {
|
|||
|
display: inline-block;
|
|||
|
margin: 0 8px;
|
|||
|
font-weight: 500;
|
|||
|
text-align: center;
|
|||
|
touch-action: manipulation;
|
|||
|
cursor: pointer;
|
|||
|
background-image: none;
|
|||
|
border: 1px solid transparent;
|
|||
|
white-space: nowrap;
|
|||
|
padding: 0 15px;
|
|||
|
font-size: 12px;
|
|||
|
border-radius: 6px;
|
|||
|
height: 28px;
|
|||
|
user-select: none;
|
|||
|
transition: all .3s cubic-bezier(.645, .045, .355, 1);
|
|||
|
position: relative;
|
|||
|
color: rgba(0, 0, 0, .65);
|
|||
|
background-color: #fff;
|
|||
|
border-color: #d9d9d9;
|
|||
|
|
|||
|
&:hover, &:active, &:focus {
|
|||
|
color: #2db7f5;
|
|||
|
background-color: #fff;
|
|||
|
border-color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
&-simple {
|
|||
|
.@{prefixClass}-prev, .@{prefixClass}-next {
|
|||
|
border: none;
|
|||
|
height: 24px;
|
|||
|
line-height: 24px;
|
|||
|
margin: 0;
|
|||
|
font-size: 18px;
|
|||
|
}
|
|||
|
|
|||
|
.@{prefixClass}-simple-pager {
|
|||
|
float: left;
|
|||
|
margin-right: 8px;
|
|||
|
list-style: none;
|
|||
|
|
|||
|
.@{prefixClass}-slash {
|
|||
|
margin: 0 10px;
|
|||
|
}
|
|||
|
|
|||
|
input {
|
|||
|
margin: 0 8px;
|
|||
|
box-sizing: border-box;
|
|||
|
background-color: #fff;
|
|||
|
border-radius: 6px;
|
|||
|
border: 1px solid #d9d9d9;
|
|||
|
outline: none;
|
|||
|
padding: 5px 8px;
|
|||
|
min-height: 20px;
|
|||
|
|
|||
|
&:hover {
|
|||
|
border-color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
button {
|
|||
|
display: inline-block;
|
|||
|
margin: 0 8px;
|
|||
|
font-weight: 500;
|
|||
|
text-align: center;
|
|||
|
touch-action: manipulation;
|
|||
|
cursor: pointer;
|
|||
|
background-image: none;
|
|||
|
border: 1px solid transparent;
|
|||
|
white-space: nowrap;
|
|||
|
padding: 0 8px;
|
|||
|
font-size: 12px;
|
|||
|
border-radius: 6px;
|
|||
|
height: 26px;
|
|||
|
user-select: none;
|
|||
|
transition: all .3s cubic-bezier(.645, .045, .355, 1);
|
|||
|
position: relative;
|
|||
|
color: rgba(0, 0, 0, .65);
|
|||
|
background-color: #fff;
|
|||
|
border-color: #d9d9d9;
|
|||
|
|
|||
|
&:hover, &:active, &:focus {
|
|||
|
color: #2db7f5;
|
|||
|
background-color: #fff;
|
|||
|
border-color: #2db7f5;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
@media only screen and (max-width: 1024px) {
|
|||
|
.@{prefixClass}-item {
|
|||
|
&-after-jump-prev,
|
|||
|
&-before-jump-next {
|
|||
|
display: none;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|