Blame view

src/design/ant/pagination.less 1.79 KB
Vben authored
1
2
3
4
5
6
html[data-theme='dark'] {
  .ant-pagination {
    &.mini {
      .ant-pagination-prev,
      .ant-pagination-next,
      .ant-pagination-item {
7
        background-color: rgb(255 255 255 / 4%) !important;
Vben authored
8
9
10
11
12
13
14
15
16
17
18

        a {
          color: #8b949e !important;
        }
      }

      .ant-select-arrow {
        color: @text-color-secondary !important;
      }

      .ant-pagination-item-active {
19
        background-color: @primary-color !important;
Vben authored
20
21
22
23
24
25
26
27
28
29
30
        border: none;
        border-radius: none !important;

        a {
          color: @white !important;
        }
      }
    }
  }
}
31
32
33
34
.ant-pagination {
  &.mini {
    .ant-pagination-prev,
    .ant-pagination-next {
35
36
      font-size: 12px;
      color: @text-color-base;
37
38
      border: 1px solid;
    }
陈文彬 authored
39
40
41
42
43
    .ant-pagination-prev:hover,
    .ant-pagination-next:hover,
    .ant-pagination-item:focus,
    .ant-pagination-item:hover {
44
45
46
      a {
        color: @primary-color;
      }
47
    }
陈文彬 authored
48
49
50
    .ant-pagination-prev,
    .ant-pagination-next,
51
    .ant-pagination-item {
vben authored
52
      margin: 0 4px !important;
53
      background-color: #f4f4f5 !important;
54
55
56
57
58
59
60
      border: none;
      border-radius: none !important;

      a {
        margin-top: 1px;
        color: #606266;
      }
陈文彬 authored
61
62
63
      &:last-child {
        margin-right: 0 !important;
陈文彬 authored
64
      }
65
    }
陈文彬 authored
66
67
    .ant-pagination-item-active {
68
      background-color: @primary-color !important;
69
70
      border: none;
      border-radius: none !important;
陈文彬 authored
71
72
      a {
73
        color: @white !important;
陈文彬 authored
74
      }
75
    }
陈文彬 authored
76
77
    .ant-pagination-options {
78
      margin-left: 12px;
79
    }
陈文彬 authored
80
81
    .ant-pagination-options-quick-jumper input {
82
      height: 22px;
83
      margin: 0 6px;
84
      line-height: 22px;
85
86
      text-align: center;
    }
陈文彬 authored
87
88
89
    .ant-select-arrow {
      color: @border-color-shallow-dark;
陈文彬 authored
90
91
    }
  }
92
93

  &-disabled {
vben authored
94
    display: none !important;
95
  }
陈文彬 authored
96
}