Blame view

src/styles/components/page.less 5.58 KB
93064e3b   梁灏   add Page UI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  @page-prefix-cls: ~"@{css-prefix}page";
  
  .@{page-prefix-cls} {
      &:after {
          content: '';
          display: block;
          height: 0;
          clear: both;
          overflow: hidden;
          visibility: hidden;
      }
  
      &-item {
          float: left;
d9ef3d93   梁灏   optimize some style
15
16
17
          min-width: @btn-circle-size;
          height: @btn-circle-size;
          line-height: @btn-circle-size - 2px;
93064e3b   梁灏   add Page UI
18
19
20
21
          margin-right: 4px;
          text-align: center;
          list-style: none;
          background-color: #fff;
e2645048   jingsam   :fire: remove tra...
22
          user-select: none;
93064e3b   梁灏   add Page UI
23
24
25
26
          cursor: pointer;
          font-family: Arial;
          border: 1px solid @border-color-base;
          border-radius: @btn-border-radius;
e2645048   jingsam   :fire: remove tra...
27
          transition: all @transition-time @ease-in-out;
93064e3b   梁灏   add Page UI
28
29
30
31
32
  
          a {
              margin: 0 6px;
              text-decoration: none;
              color: @text-color;
e2645048   jingsam   :fire: remove tra...
33
              //transition: none;
93064e3b   梁灏   add Page UI
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
          }
  
          &:hover {
              border-color: @primary-color;
              a {
                  color: @primary-color;
              }
          }
  
          &-active {
              background-color: @primary-color;
              border-color: @primary-color;
  
              a, &:hover a {
                  color: #fff;
              }
          }
      }
  
      &-item-jump-prev, &-item-jump-next {
          &:after {
              content: "•••";
              display: block;
928033f0   梁灏   optimize Page style
57
              letter-spacing: 1px;
93064e3b   梁灏   add Page UI
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
              color: #ccc;
              text-align: center;
          }
  
          i{
              display: none;
          }
  
          &:hover {
              &:after{
                  display: none;
              }
              i{
                  display: inline;
              }
          }
      }
  
      &-item-jump-prev:hover {
          i:after {
              content: "\F3D2";
          }
      }
  
      &-item-jump-next:hover {
          i:after {
              content: "\F3D3";
          }
      }
  
928033f0   梁灏   optimize Page style
88
      &-prev{
93064e3b   梁灏   add Page UI
89
90
          margin-right: 8px;
      }
928033f0   梁灏   optimize Page style
91
92
93
94
95
96
97
98
99
100
  
      &-item-jump-prev,
      &-item-jump-next{
          margin-right: 4px;
      }
  
      &-next{
          margin-left: 4px;
      }
  
93064e3b   梁灏   add Page UI
101
102
103
104
105
106
      &-prev,
      &-next,
      &-item-jump-prev,
      &-item-jump-next {
          display: inline-block;
          float: left;
d9ef3d93   梁灏   optimize some style
107
108
109
          min-width: @btn-circle-size;
          height: @btn-circle-size;
          line-height: @btn-circle-size - 2px;
93064e3b   梁灏   add Page UI
110
111
112
113
114
          list-style: none;
          text-align: center;
          cursor: pointer;
          color: #666;
          font-family: Arial;
928033f0   梁灏   optimize Page style
115
          border: 1px solid @border-color-base;
93064e3b   梁灏   add Page UI
116
          border-radius: @btn-border-radius;
e2645048   jingsam   :fire: remove tra...
117
          transition: all @transition-time @ease-in-out;
93064e3b   梁灏   add Page UI
118
119
120
121
      }
  
      &-prev,
      &-next {
93064e3b   梁灏   add Page UI
122
123
124
125
          background-color: #fff;
  
          a {
              color: #666;
d9ef3d93   梁灏   optimize some style
126
              font-size: 14px;
93064e3b   梁灏   add Page UI
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
          }
  
          &:hover {
              border-color: @primary-color;
  
              a {
                  color: @primary-color;
              }
          }
      }
  
      &-disabled {
          cursor: @cursor-disabled;
          a {
              color: #ccc;
          }
          &:hover {
              border-color: @border-color-base;
              a {
                  color: #ccc;
                  cursor: @cursor-disabled;
              }
          }
      }
  
      &-options {
          float: left;
          margin-left: 15px;
          &-sizer {
              float: left;
              margin-right: 10px;
          }
  
          &-elevator {
              float: left;
d9ef3d93   梁灏   optimize some style
162
163
              height: @btn-circle-size;
              line-height: @btn-circle-size;
93064e3b   梁灏   add Page UI
164
165
166
167
168
169
170
171
172
173
174
175
  
              input {
                  .input;
                  border-radius: @btn-border-radius;
                  margin: 0 8px;
                  width: 50px;
              }
          }
      }
  
      &-total {
          float: left;
d9ef3d93   梁灏   optimize some style
176
177
          height: @btn-circle-size;
          line-height: @btn-circle-size;
93064e3b   梁灏   add Page UI
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
          margin-right: 10px;
      }
  
      &-simple &-prev,
      &-simple &-next {
          margin: 0;
          border: 0;
          height: 24px;
          line-height: 24px;
          font-size: 18px;
      }
  
      &-simple &-simple-pager {
          float: left;
          margin-right: 8px;
  
          input {
              width: 30px;
              height: 24px;
              margin: 0 8px;
              padding: 5px 8px;
              text-align: center;
              box-sizing: border-box;
              background-color: #fff;
              outline: none;
              border: 1px solid @border-color-base;
              border-radius: @btn-border-radius;
e2645048   jingsam   :fire: remove tra...
205
              transition: border-color @transition-time @ease-in-out;
93064e3b   梁灏   add Page UI
206
207
208
209
210
  
              &:hover {
                  border-color: @primary-color;
              }
          }
d9ef3d93   梁灏   optimize some style
211
212
213
214
  
          span{
              padding: 0 8px 0 2px;
          }
93064e3b   梁灏   add Page UI
215
216
217
218
219
      }
  }
  
  .@{page-prefix-cls} {
      &.mini &-total {
d9ef3d93   梁灏   optimize some style
220
221
          height: @btn-circle-size-small;
          line-height: @btn-circle-size-small;
93064e3b   梁灏   add Page UI
222
223
224
225
226
      }
  
      &.mini &-item {
          border: 0;
          margin: 0;
d9ef3d93   梁灏   optimize some style
227
228
229
          min-width: @btn-circle-size-small;
          height: @btn-circle-size-small;
          line-height: @btn-circle-size-small;
93064e3b   梁灏   add Page UI
230
231
232
233
234
235
          border-radius: @btn-border-radius-small;
      }
  
      &.mini &-prev,
      &.mini &-next {
          margin: 0;
d9ef3d93   梁灏   optimize some style
236
237
238
          min-width: @btn-circle-size-small;
          height: @btn-circle-size-small;
          line-height: @btn-circle-size-small;
93064e3b   梁灏   add Page UI
239
240
241
242
          border: 0;
  
          a {
              i:after {
d9ef3d93   梁灏   optimize some style
243
244
                  height: @btn-circle-size-small;
                  line-height: @btn-circle-size-small;
93064e3b   梁灏   add Page UI
245
246
247
248
249
250
              }
          }
      }
  
      &.mini &-item-jump-prev,
      &.mini &-item-jump-next {
d9ef3d93   梁灏   optimize some style
251
252
          height: @btn-circle-size-small;
          line-height: @btn-circle-size-small;
928033f0   梁灏   optimize Page style
253
254
          border: none;
          margin-right: 0;
93064e3b   梁灏   add Page UI
255
256
257
258
259
      }
  
      &.mini &-options {
          margin-left: 8px;
          &-elevator {
d9ef3d93   梁灏   optimize some style
260
261
              height: @btn-circle-size-small;
              line-height: @btn-circle-size-small;
93064e3b   梁灏   add Page UI
262
263
264
265
266
267
268
  
              input {
                  .input-small;
                  width: 44px;
              }
          }
      }
e2645048   jingsam   :fire: remove tra...
269
  }