123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- @use 'mixins/mixins' as *;
- @use 'mixins/utils' as *;
- @use 'mixins/var' as *;
- @use 'common/var' as *;
- @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');
- color: getCssVar('pagination-button-color');
- background: getCssVar('pagination-bg-color');
- padding: 0 4px;
- border: none;
- border-radius: getCssVar('pagination-border-radius');
- cursor: pointer;
- text-align: center;
- box-sizing: border-box;
- * {
- pointer-events: none;
- }
- &:focus {
- outline: none;
- }
- &:hover {
- color: getCssVar('pagination-hover-color');
- }
- &.is-active {
- color: getCssVar('pagination-hover-color');
- cursor: default;
- font-weight: bold;
- &.is-disabled {
- font-weight: bold;
- color: getCssVar('text-color', 'secondary');
- }
- }
- &:disabled,
- &.is-disabled {
- color: getCssVar('pagination-button-disabled-color');
- background-color: getCssVar('pagination-button-disabled-bg-color');
- cursor: not-allowed;
- }
- &:focus-visible {
- outline: 1px solid getCssVar('pagination-hover-color');
- outline-offset: -1px;
- }
- }
- @include b(pagination) {
- @include set-component-css-var('pagination', $pagination);
- white-space: nowrap;
- color: getCssVar('pagination-text-color');
- font-size: getCssVar('pagination-font-size');
- font-weight: normal;
- display: flex;
- align-items: center;
- .#{$namespace}-input__inner {
- text-align: center;
- -moz-appearance: textfield;
- }
- .#{$namespace}-select {
- width: 128px;
- }
- button {
- @include pagination-button;
- }
- .btn-prev,
- .btn-next {
- .#{$namespace}-icon {
- display: block;
- font-size: 12px;
- font-weight: bold;
- width: inherit;
- }
- }
- & > * {
- @include when(first) {
- margin-left: 0 !important;
- }
- @include when(last) {
- margin-right: 0 !important;
- }
- }
- .btn-prev {
- margin-left: getCssVar('pagination-item-gap');
- }
- @include e(sizes) {
- margin-left: getCssVar('pagination-item-gap');
- font-weight: normal;
- color: getCssVar('text-color', 'regular');
- }
- @include e(total) {
- margin-left: getCssVar('pagination-item-gap');
- font-weight: normal;
- color: getCssVar('text-color', 'regular');
- &[disabled='true'] {
- color: getCssVar('text-color', 'placeholder');
- }
- }
- @include e(jump) {
- display: flex;
- align-items: center;
- margin-left: getCssVar('pagination-item-gap');
- font-weight: normal;
- color: getCssVar('text-color', 'regular');
- &[disabled='true'] {
- color: getCssVar('text-color', 'placeholder');
- }
- @include e(goto) {
- margin-right: 8px;
- }
- @include e(editor) {
- text-align: center;
- box-sizing: border-box;
- &.#{$namespace}-input {
- width: 56px;
- }
- .#{$namespace}-input__inner::-webkit-inner-spin-button,
- .#{$namespace}-input__inner::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- }
- @include e(classifier) {
- margin-left: 8px;
- }
- }
- @include e(rightwrapper) {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- @include when(background) {
- .btn-prev,
- .btn-next,
- .#{$namespace}-pager li {
- margin: 0 4px;
- background-color: getCssVar('pagination-button-bg-color');
- &.is-active {
- background-color: getCssVar('color-primary');
- color: getCssVar('color-white');
- }
- &:disabled,
- &.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');
- }
- }
- }
- .btn-prev {
- margin-left: getCssVar('pagination-item-gap');
- }
- }
- @include m(small) {
- .btn-prev,
- .btn-next,
- .#{$namespace}-pager li {
- height: getCssVar('pagination-button-height-small');
- line-height: getCssVar('pagination-button-height-small');
- font-size: getCssVar('pagination-font-size-small');
- min-width: getCssVar('pagination-button-width-small');
- }
- span:not([class*='suffix']),
- button {
- font-size: getCssVar('pagination-font-size-small');
- }
- .#{$namespace}-select {
- width: 100px;
- }
- }
- @include m(large) {
- .btn-prev,
- .btn-next,
- .#{$namespace}-pager li {
- height: getCssVar('pagination-button-height-large');
- line-height: getCssVar('pagination-button-height-large');
- min-width: getCssVar('pagination-button-width-large');
- }
- .#{$namespace}-select .#{$namespace}-input {
- width: 160px;
- }
- }
- }
- @include b(pager) {
- user-select: none;
- list-style: none;
- font-size: 0;
- padding: 0;
- margin: 0;
- display: flex;
- align-items: center;
- li {
- @include pagination-button;
- }
- }
|