ant-design-vue/components/pagination/style/index.less

343 lines
6.8 KiB
Plaintext
Raw Normal View History

2019-01-02 13:01:56 +00:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
@import '../../input/style/mixin';
2017-11-03 03:08:46 +00:00
2019-01-02 13:01:56 +00:00
@pagination-prefix-cls: ~'@{ant-prefix}-pagination';
2017-11-03 03:08:46 +00:00
.@{pagination-prefix-cls} {
2018-01-16 03:13:22 +00:00
.reset-component;
ul,
ol {
margin: 0;
padding: 0;
list-style: none;
}
2017-11-03 03:08:46 +00:00
2019-03-30 08:06:06 +00:00
&::after {
2017-11-03 03:08:46 +00:00
display: block;
clear: both;
2019-03-30 08:06:06 +00:00
height: 0;
2017-11-03 03:08:46 +00:00
overflow: hidden;
visibility: hidden;
2019-03-30 08:06:06 +00:00
content: ' ';
2017-11-03 03:08:46 +00:00
}
&-total-text {
display: inline-block;
2018-01-16 03:13:22 +00:00
height: @pagination-item-size;
2017-11-03 03:08:46 +00:00
margin-right: 8px;
2019-03-30 08:06:06 +00:00
line-height: @pagination-item-size - 2px;
vertical-align: middle;
2017-11-03 03:08:46 +00:00
}
&-item {
2019-03-30 08:06:06 +00:00
display: inline-block;
2018-01-16 03:13:22 +00:00
min-width: @pagination-item-size;
height: @pagination-item-size;
2019-03-30 08:06:06 +00:00
margin-right: 8px;
font-family: @pagination-font-family;
2018-01-16 03:13:22 +00:00
line-height: @pagination-item-size - 2px;
2017-11-03 03:08:46 +00:00
text-align: center;
vertical-align: middle;
2019-03-30 08:06:06 +00:00
list-style: none;
2017-11-03 03:08:46 +00:00
background-color: @component-background;
2019-03-30 08:06:06 +00:00
border: @border-width-base @border-style-base @border-color-base;
border-radius: @border-radius-base;
2017-11-03 03:08:46 +00:00
outline: 0;
2019-03-30 08:06:06 +00:00
cursor: pointer;
user-select: none;
2017-11-03 03:08:46 +00:00
a {
2019-03-30 08:06:06 +00:00
margin: 0 6px;
2017-11-03 03:08:46 +00:00
color: @text-color;
2019-03-30 08:06:06 +00:00
text-decoration: none;
2017-11-03 03:08:46 +00:00
transition: none;
}
&:focus,
&:hover {
border-color: @primary-color;
2019-03-30 08:06:06 +00:00
transition: all 0.3s;
2017-11-03 03:08:46 +00:00
a {
color: @primary-color;
}
}
&-active {
2018-04-07 06:29:59 +00:00
font-weight: @pagination-font-weight-active;
2019-03-30 08:06:06 +00:00
border-color: @primary-color;
2018-01-16 03:13:22 +00:00
a {
color: @primary-color;
}
2017-11-03 03:08:46 +00:00
&:focus,
&:hover {
border-color: @primary-5;
}
&:focus a,
&:hover a {
2018-01-16 03:13:22 +00:00
color: @primary-5;
2017-11-03 03:08:46 +00:00
}
}
}
&-jump-prev,
&-jump-next {
outline: 0;
2018-11-14 13:33:56 +00:00
.@{pagination-prefix-cls}-item-container {
position: relative;
2017-11-03 03:08:46 +00:00
2018-11-14 13:33:56 +00:00
.@{pagination-prefix-cls}-item-link-icon {
.iconfont-size-under-12px(12px);
2017-11-03 03:08:46 +00:00
color: @primary-color;
letter-spacing: -1px;
2018-11-14 13:33:56 +00:00
opacity: 0;
2019-01-02 13:01:56 +00:00
transition: all 0.2s;
2018-11-14 13:33:56 +00:00
&-svg {
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
2017-11-03 03:08:46 +00:00
}
2018-11-14 13:33:56 +00:00
.@{pagination-prefix-cls}-item-ellipsis {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
2019-03-30 08:06:06 +00:00
display: block;
2018-11-14 13:33:56 +00:00
margin: auto;
2019-03-30 08:06:06 +00:00
color: @disabled-color;
letter-spacing: 2px;
text-align: center;
text-indent: 0.13em;
opacity: 1;
transition: all 0.2s;
2017-11-03 03:08:46 +00:00
}
}
&:focus,
&:hover {
2018-11-14 13:33:56 +00:00
.@{pagination-prefix-cls}-item-link-icon {
opacity: 1;
}
.@{pagination-prefix-cls}-item-ellipsis {
opacity: 0;
2017-11-03 03:08:46 +00:00
}
}
}
&-prev,
&-jump-prev,
&-jump-next {
margin-right: 8px;
}
&-prev,
&-next,
&-jump-prev,
&-jump-next {
2019-03-30 08:06:06 +00:00
display: inline-block;
2018-01-16 03:13:22 +00:00
min-width: @pagination-item-size;
height: @pagination-item-size;
2019-03-30 08:06:06 +00:00
color: @text-color;
font-family: @pagination-font-family;
2018-01-16 03:13:22 +00:00
line-height: @pagination-item-size;
2017-11-03 03:08:46 +00:00
text-align: center;
vertical-align: middle;
2019-03-30 08:06:06 +00:00
list-style: none;
border-radius: @border-radius-base;
cursor: pointer;
transition: all 0.3s;
2017-11-03 03:08:46 +00:00
}
&-prev,
&-next {
outline: 0;
a {
color: @text-color;
user-select: none;
}
&:hover a {
2018-01-16 03:13:22 +00:00
border-color: @primary-5;
2017-11-03 03:08:46 +00:00
}
.@{pagination-prefix-cls}-item-link {
2019-03-30 08:06:06 +00:00
display: block;
height: 100%;
font-size: 12px;
text-align: center;
2017-11-03 03:08:46 +00:00
background-color: @component-background;
2019-03-30 08:06:06 +00:00
border: @border-width-base @border-style-base @border-color-base;
2017-11-03 03:08:46 +00:00
border-radius: @border-radius-base;
outline: none;
2019-01-02 13:01:56 +00:00
transition: all 0.3s;
2017-11-03 03:08:46 +00:00
}
&:focus .@{pagination-prefix-cls}-item-link,
&:hover .@{pagination-prefix-cls}-item-link {
color: @primary-color;
2019-03-30 08:06:06 +00:00
border-color: @primary-color;
2017-11-03 03:08:46 +00:00
}
}
&-disabled {
&,
&:hover,
&:focus {
cursor: not-allowed;
a,
.@{pagination-prefix-cls}-item-link {
color: @disabled-color;
2019-03-30 08:06:06 +00:00
border-color: @border-color-base;
2017-11-03 03:08:46 +00:00
cursor: not-allowed;
}
}
}
&-slash {
margin: 0 10px 0 5px;
}
&-options {
display: inline-block;
margin-left: 16px;
2019-03-30 08:06:06 +00:00
vertical-align: middle;
2017-11-03 03:08:46 +00:00
2018-01-16 03:13:22 +00:00
&-size-changer.@{ant-prefix}-select {
2017-11-03 03:08:46 +00:00
display: inline-block;
2018-11-14 13:33:56 +00:00
width: auto;
2017-11-03 03:08:46 +00:00
margin-right: 8px;
}
&-quick-jumper {
display: inline-block;
2018-01-16 03:13:22 +00:00
height: @input-height-base;
line-height: @input-height-base;
2019-03-30 08:06:06 +00:00
vertical-align: top;
2017-11-03 03:08:46 +00:00
input {
2018-01-16 03:13:22 +00:00
.input;
2017-11-03 03:08:46 +00:00
width: 50px;
2019-03-30 08:06:06 +00:00
margin: 0 8px;
2017-11-03 03:08:46 +00:00
}
}
}
&-simple &-prev,
&-simple &-next {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
vertical-align: top;
.@{pagination-prefix-cls}-item-link {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
2019-03-30 08:06:06 +00:00
border: 0;
&::after {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
}
}
}
&-simple &-simple-pager {
display: inline-block;
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
2019-03-30 08:06:06 +00:00
margin-right: 8px;
2017-11-03 03:08:46 +00:00
input {
box-sizing: border-box;
2019-03-30 08:06:06 +00:00
height: 100%;
margin-right: 8px;
padding: 0 6px;
text-align: center;
2017-11-03 03:08:46 +00:00
background-color: @component-background;
border: @border-width-base @border-style-base @border-color-base;
2019-03-30 08:06:06 +00:00
border-radius: @border-radius-base;
2017-11-03 03:08:46 +00:00
outline: none;
2019-01-02 13:01:56 +00:00
transition: border-color 0.3s;
2017-11-03 03:08:46 +00:00
&:hover {
border-color: @primary-color;
}
}
}
&.mini &-total-text,
&.mini &-simple-pager {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
}
&.mini &-item {
2018-01-16 03:13:22 +00:00
min-width: @pagination-item-size-sm;
height: @pagination-item-size-sm;
2019-03-30 08:06:06 +00:00
margin: 0;
2018-01-16 03:13:22 +00:00
line-height: @pagination-item-size-sm - 2px;
}
&.mini &-item:not(&-item-active) {
background: transparent;
border-color: transparent;
2017-11-03 03:08:46 +00:00
}
&.mini &-prev,
&.mini &-next {
2018-01-16 03:13:22 +00:00
min-width: @pagination-item-size-sm;
height: @pagination-item-size-sm;
2019-03-30 08:06:06 +00:00
margin: 0;
2018-01-16 03:13:22 +00:00
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
}
&.mini &-prev &-item-link,
&.mini &-next &-item-link {
2018-01-16 03:13:22 +00:00
background: transparent;
2019-03-30 08:06:06 +00:00
border-color: transparent;
&::after {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
}
}
&.mini &-jump-prev,
&.mini &-jump-next {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
margin-right: 0;
2019-03-30 08:06:06 +00:00
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
}
&.mini &-options {
2018-01-16 03:13:22 +00:00
margin-left: 2px;
2017-11-03 03:08:46 +00:00
&-quick-jumper {
2018-01-16 03:13:22 +00:00
height: @pagination-item-size-sm;
line-height: @pagination-item-size-sm;
2017-11-03 03:08:46 +00:00
input {
2018-01-16 03:13:22 +00:00
.input-sm;
2017-11-03 03:08:46 +00:00
width: 44px;
}
}
}
}
2018-01-16 03:13:22 +00:00
@media only screen and (max-width: @screen-lg) {
2017-11-03 03:08:46 +00:00
.@{pagination-prefix-cls}-item {
&-after-jump-prev,
&-before-jump-next {
display: none;
}
}
}
2017-12-20 02:56:21 +00:00
2018-01-16 03:13:22 +00:00
@media only screen and (max-width: @screen-sm) {
.@{pagination-prefix-cls}-options {
display: none;
2017-12-20 02:56:21 +00:00
}
}