pagination.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .ant-pagination {
  2. &.mini {
  3. .ant-pagination-prev,
  4. .ant-pagination-next {
  5. font-size: 12px;
  6. color: @text-color-base;
  7. border: 1px solid;
  8. }
  9. .ant-pagination-prev:hover,
  10. .ant-pagination-next:hover,
  11. .ant-pagination-item:focus,
  12. .ant-pagination-item:hover {
  13. a {
  14. color: @primary-color;
  15. }
  16. }
  17. .ant-pagination-prev,
  18. .ant-pagination-next,
  19. .ant-pagination-item {
  20. margin: 0 4px;
  21. background: #f4f4f5 !important;
  22. border: none;
  23. border-radius: none !important;
  24. a {
  25. margin-top: 1px;
  26. color: #606266;
  27. }
  28. &:last-child {
  29. margin-right: 0 !important;
  30. }
  31. }
  32. .ant-pagination-item-active {
  33. background: @primary-color !important;
  34. border: none;
  35. border-radius: none !important;
  36. a {
  37. color: @white !important;
  38. }
  39. }
  40. .ant-pagination-options {
  41. margin-left: 12px;
  42. }
  43. .ant-pagination-options-quick-jumper input {
  44. height: 22px;
  45. margin: 0 6px;
  46. line-height: 22px;
  47. text-align: center;
  48. }
  49. .ant-select-arrow {
  50. color: @border-color-shallow-dark;
  51. }
  52. }
  53. &-disabled {
  54. display: none;
  55. }
  56. }