element-plus/packages/theme-chalk/src/pagination.scss

370 lines
8.0 KiB
SCSS

@use 'sass:map';
@use 'mixins/mixins' as *;
@use 'mixins/utils' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;
@mixin remove-margin {
& + button.btn-prev[type='button'] {
margin-left: 0;
}
& + .#{$namespace}-pager {
.number {
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
}
}
}
@mixin pagination-button {
display: flex;
justify-content: center;
align-items: center;
font-size: getCssVar('pagination-font-size');
min-width: getCssVar('pagination-button-width');
height: getCssVar('pagination-button-height');
line-height: getCssVar('pagination-button-height');
box-sizing: border-box;
}
@include b(pagination) {
@include set-component-css-var('pagination', $pagination);
white-space: nowrap;
padding: 2px 5px;
color: getCssVar('pagination-text-color');
font-weight: normal;
display: flex;
align-items: center;
@include utils-clearfix;
span:not([class*='suffix']),
button {
@include pagination-button;
}
.#{$namespace}-input__inner {
text-align: center;
-moz-appearance: textfield;
line-height: normal;
}
.#{$namespace}-select .#{$namespace}-input {
width: 128px;
}
button {
border: none;
padding: 0 6px;
background: transparent;
&:focus {
outline: none;
}
&:hover {
color: getCssVar('pagination-hover-color');
}
&:disabled {
color: getCssVar('pagination-button-disabled-color');
background-color: getCssVar('pagination-button-disabled-bg-color');
cursor: not-allowed;
}
}
.btn-prev,
.btn-next {
background: center center no-repeat;
background-size: 16px;
background-color: getCssVar('pagination-bg-color');
cursor: pointer;
margin: 0;
color: getCssVar('pagination-button-color');
.#{$namespace}-icon {
display: block;
font-size: 12px;
font-weight: bold;
width: inherit;
}
&:focus-visible {
outline: 1px solid getCssVar('pagination-hover-color');
color: getCssVar('pagination-hover-color');
}
}
.#{$namespace}-pager li.is-disabled {
color: getCssVar('text-color', 'placeholder');
cursor: not-allowed;
}
@include m(small) {
.btn-prev,
.btn-next,
.#{$namespace}-pager li,
.#{$namespace}-pager li.btn-quicknext,
.#{$namespace}-pager li.btn-quickprev,
.#{$namespace}-pager li:last-child {
border-color: transparent;
font-size: getCssVar('font-size-extra-small');
line-height: getCssVar('pagination-line-height-extra-small');
height: getCssVar('pagination-height-extra-small');
min-width: 24px;
}
.arrow.is-disabled {
visibility: hidden;
}
.more::before,
li.more::before {
line-height: getCssVar('pagination-line-height-extra-small');
}
span:not([class*='suffix']),
button {
height: getCssVar('pagination-height-extra-small');
line-height: getCssVar('pagination-line-height-extra-small');
font-size: getCssVar('font-size-extra-small');
}
@include e(editor) {
height: getCssVar('pagination-line-height-extra-small');
&.#{$namespace}-input .#{$namespace}-input__inner {
height: getCssVar('pagination-height-extra-small');
}
}
.#{$namespace}-input__inner,
.#{$namespace}-input--small {
height: getCssVar('pagination-height-extra-small') !important;
line-height: getCssVar('pagination-line-height-extra-small');
}
.#{$namespace}-input__suffix {
line-height: getCssVar('pagination-line-height-extra-small');
.#{$namespace}-input__suffix-inner {
line-height: getCssVar('pagination-line-height-extra-small');
i.#{$namespace}-select__caret {
line-height: getCssVar('pagination-line-height-extra-small');
}
}
}
.#{$namespace}-select .#{$namespace}-input {
width: 100px;
}
}
@include e(sizes) {
margin: 0 16px 0 0;
font-weight: normal;
color: getCssVar('text-color', 'regular');
@include remove-margin();
}
@include e(total) {
margin-right: 16px;
font-weight: normal;
color: getCssVar('text-color', 'regular');
@include remove-margin();
&[disabled='true'] {
color: getCssVar('text-color', 'placeholder');
}
}
@include e(jump) {
margin-left: 16px;
font-weight: normal;
color: getCssVar('text-color', 'regular');
.#{$namespace}-input__inner {
padding: 0 3px;
}
&[disabled='true'] {
color: getCssVar('text-color', 'placeholder');
}
}
@include e(rightwrapper) {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
}
@include e(editor) {
line-height: 18px;
margin: 0 8px;
height: getCssVar('pagination-button-height');
min-width: 56px;
text-align: center;
box-sizing: border-box;
border-radius: getCssVar('pagination-border-radius');
&.#{$namespace}-input {
width: 50px;
}
&.#{$namespace}-input .#{$namespace}-input__inner {
height: getCssVar('pagination-button-height');
}
.#{$namespace}-input__inner::-webkit-inner-spin-button,
.#{$namespace}-input__inner::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
}
@include when(background) {
.btn-prev,
.btn-next,
.#{$namespace}-pager li {
margin: 0 4px;
background-color: getCssVar('pagination-button-bg-color');
color: getCssVar('text-color', 'regular');
min-width: 32px;
border-radius: 2px;
&.is-disabled {
color: getCssVar('text-color', 'placeholder');
background-color: getCssVar('disabled-bg-color');
&.is-active {
color: getCssVar('text-color', 'secondary');
background-color: getCssVar('fill-color', 'dark');
}
}
@include when(first) {
margin-left: 0;
}
@include when(last) {
margin-right: 0;
}
}
.btn-prev,
.btn-next {
padding: 0;
&:disabled {
color: getCssVar('text-color', 'placeholder');
background-color: getCssVar('disabled-bg-color');
}
&:hover:not([disabled]) {
color: getCssVar('pagination-hover-color');
}
}
.#{$namespace}-pager li:not(.is-disabled) {
&:hover {
color: getCssVar('pagination-hover-color');
}
&.is-active {
background-color: getCssVar('color-primary');
color: getCssVar('color-white');
font-weight: bold;
}
}
&.#{$namespace}-pagination--small {
.btn-prev,
.btn-next,
.#{$namespace}-pager li {
min-width: 24px;
}
}
@include e(sizes) {
@include when(last) {
margin-left: 16px;
}
}
}
}
@include b(pager) {
user-select: none;
list-style: none;
font-size: 0;
padding: 0;
margin: 0;
display: flex;
align-items: center;
li {
padding: 0 4px;
background: getCssVar('pagination-bg-color');
@include pagination-button;
cursor: pointer;
text-align: center;
margin: 0 1px;
&.btn-quickprev:hover {
cursor: pointer;
}
&.btn-quicknext:hover {
cursor: pointer;
}
&.btn-quicknext,
&.btn-quickprev {
line-height: 32px;
color: getCssVar('pagination-button-color');
&.is-disabled {
color: getCssVar('text-color', 'placeholder');
cursor: not-allowed;
}
svg {
pointer-events: none;
}
&:focus-visible {
outline: 1px solid getCssVar('pagination-hover-color');
color: getCssVar('pagination-hover-color');
}
}
&.is-active + li {
border-left: 0;
}
&:focus-visible {
outline: 1px solid getCssVar('pagination-hover-color');
}
&:hover {
color: getCssVar('pagination-hover-color');
}
&.is-active {
color: getCssVar('pagination-hover-color');
cursor: default;
&.is-disabled {
font-weight: bold;
color: getCssVar('text-color', 'secondary');
}
}
}
& + button.btn-next[type='button'] {
margin-right: 0;
}
}