123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- @pagination-prefix-cls: rc-pagination;
- @primary-color: #1890ff;
- @pagination-item-bg: #fff;
- @pagination-item-size: 28px;
- @pagination-item-size-sm: 24px;
- @pagination-font-family: Arial;
- @pagination-font-weight-active: 500;
- @pagination-item-bg-active: #fff;
- @pagination-item-link-bg: #fff;
- @pagination-item-disabled-color-active: #fff;
- @pagination-item-disabled-bg-active: darken(hsv(0, 0, 96%), 10%);
- @pagination-item-input-bg: #fff;
- .@{pagination-prefix-cls} {
- display: flex;
- margin: 0;
- padding: 0;
- font-size: 14px;
- ul,
- ol {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- &-start {
- justify-content: start;
- }
- &-center {
- justify-content: center;
- }
- &-end {
- justify-content: end;
- }
- &::after {
- display: block;
- clear: both;
- height: 0;
- overflow: hidden;
- visibility: hidden;
- content: ' ';
- }
- &-total-text {
- display: inline-block;
- height: @pagination-item-size;
- margin-right: 8px;
- line-height: @pagination-item-size - 2px;
- vertical-align: middle;
- }
- &-item {
- display: inline-block;
- min-width: @pagination-item-size;
- height: @pagination-item-size;
- margin-right: 8px;
- font-family: @pagination-font-family;
- line-height: @pagination-item-size - 2px;
- text-align: center;
- vertical-align: middle;
- list-style: none;
- background-color: @pagination-item-bg;
- border: 1px solid #d9d9d9;
- border-radius: 2px;
- outline: 0;
- cursor: pointer;
- user-select: none;
- a {
- display: block;
- padding: 0 6px;
- color: rgba(0, 0, 0, 0.85);
- transition: none;
- &:hover {
- text-decoration: none;
- }
- }
- &:focus,
- &:hover {
- border-color: @primary-color;
- transition: all 0.3s;
- a {
- color: @primary-color;
- }
- }
- &-active {
- font-weight: @pagination-font-weight-active;
- background: @pagination-item-bg-active;
- border-color: @primary-color;
- a {
- color: @primary-color;
- }
- &:focus,
- &:hover {
- border-color: #40a9ff;
- }
- &:focus a,
- &:hover a {
- color: #40a9ff;
- }
- }
- }
- &-jump-prev,
- &-jump-next {
- outline: 0;
- button {
- background: transparent;
- border: none;
- cursor: pointer;
- color: #666;
- }
- button:after {
- display: block;
- content: '•••';
- }
- }
- &-prev,
- &-jump-prev,
- &-jump-next {
- margin-right: 8px;
- }
- &-prev,
- &-next,
- &-jump-prev,
- &-jump-next {
- display: inline-block;
- min-width: @pagination-item-size;
- height: @pagination-item-size;
- color: rgba(0, 0, 0, 0.85);
- font-family: @pagination-font-family;
- line-height: @pagination-item-size;
- text-align: center;
- vertical-align: middle;
- list-style: none;
- border-radius: 2px;
- cursor: pointer;
- transition: all 0.3s;
- }
- &-prev,
- &-next {
- outline: 0;
- button {
- color: rgba(0, 0, 0, 0.85);
- cursor: pointer;
- user-select: none;
- }
- &:hover button {
- border-color: #40a9ff;
- }
- .@{pagination-prefix-cls}-item-link {
- display: block;
- width: 100%;
- height: 100%;
- font-size: 12px;
- text-align: center;
- background-color: @pagination-item-link-bg;
- border: 1px solid #d9d9d9;
- border-radius: 2px;
- outline: none;
- transition: all 0.3s;
- }
- &:focus .@{pagination-prefix-cls}-item-link,
- &:hover .@{pagination-prefix-cls}-item-link {
- color: @primary-color;
- border-color: @primary-color;
- }
- }
- &-prev button:after {
- content: '‹';
- display: block;
- }
- &-next button:after {
- content: '›';
- display: block;
- }
- &-disabled {
- &,
- &:hover,
- &:focus {
- cursor: not-allowed;
- .@{pagination-prefix-cls}-item-link {
- color: fade(#000, 25%);
- border-color: #d9d9d9;
- cursor: not-allowed;
- }
- }
- }
- &-slash {
- margin: 0 10px 0 12px;
- }
- &-options {
- display: inline-block;
- margin-left: 16px;
- vertical-align: middle;
- // IE11 css hack. `*::-ms-backdrop,` is a must have
- @media all and (-ms-high-contrast: none) {
- *::-ms-backdrop,
- & {
- vertical-align: top;
- }
- }
- &-size-changer.rc-select {
- display: inline-block;
- width: auto;
- margin-right: 8px;
- }
- &-quick-jumper {
- display: inline-block;
- height: 28px;
- line-height: 28px;
- vertical-align: top;
- input {
- width: 50px;
- margin: 0 8px;
- }
- }
- }
- &-simple &-prev,
- &-simple &-next {
- height: @pagination-item-size-sm;
- line-height: @pagination-item-size-sm;
- vertical-align: top;
- .@{pagination-prefix-cls}-item-link {
- height: @pagination-item-size-sm;
- background-color: transparent;
- border: 0;
- &::after {
- height: @pagination-item-size-sm;
- line-height: @pagination-item-size-sm;
- }
- }
- }
- &-simple &-simple-pager {
- display: flex;
- align-items: center;
- height: @pagination-item-size-sm;
- margin-right: 8px;
- input {
- box-sizing: border-box;
- height: 100%;
- padding: 0 6px;
- text-align: center;
- background-color: @pagination-item-input-bg;
- border: 1px solid #d9d9d9;
- border-radius: 2px;
- outline: none;
- transition: border-color 0.3s;
- &:hover {
- border-color: @primary-color;
- }
- }
- }
- // ============================ Disabled ============================
- &&-disabled {
- cursor: not-allowed;
- .@{pagination-prefix-cls}-item {
- background: hsv(0, 0, 96%);
- border-color: #d9d9d9;
- cursor: not-allowed;
- a {
- color: fade(#000, 25%);
- background: transparent;
- border: none;
- cursor: not-allowed;
- }
- &-active {
- background: @pagination-item-disabled-bg-active;
- border-color: transparent;
- a {
- color: @pagination-item-disabled-color-active;
- }
- }
- }
- .@{pagination-prefix-cls}-item-link {
- color: fade(#000, 25%);
- background: hsv(0, 0, 96%);
- border-color: #d9d9d9;
- cursor: not-allowed;
- }
- .@{pagination-prefix-cls}-item-link-icon {
- opacity: 0;
- }
- .@{pagination-prefix-cls}-item-ellipsis {
- opacity: 1;
- }
- }
- }
- @media only screen and (max-width: 992px) {
- .@{pagination-prefix-cls}-item {
- &-after-jump-prev,
- &-before-jump-next {
- display: none;
- }
- }
- }
- @media only screen and (max-width: 576px) {
- .@{pagination-prefix-cls}-options {
- display: none;
- }
- }
|