forked from feather-components/pager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
110 lines (94 loc) · 1.82 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.ui3-pager{
margin:5px auto;
font: 12px Tahoma,Helvetica Neue,Hiragino Sans GB,Microsoft Yahei,sans-serif;
overflow:auto;
}
.ui3-pager li{
float: left;
list-style: none;
}
.ui3-pager-item{
border: 1px solid #dfdfdf;
border-radius: 2px;
background-color: #fff;
margin: 0px 3px;
height: 28px;
line-height: 28px;
font-size: 12px;
}
.ui3-pager-item:hover{
border-color: #5986E1;
}
.ui3-pager-point{
border-color: transparent !important;
background: transparent !important;
}
.ui3-pager-item a{
display: inline-block;
text-align: center;
color: #666;
height: 28px;
width: 28px;
line-height: 28px;
text-decoration: none;
}
.ui3-pager-point a{
color: #a3a3a3;
letter-spacing: 0px;
width: 12px;
}
.ui3-pager-current{
background: #5986E1;
border-color: #5986E1;
}
.ui3-pager-current a{
color: #fff;
}
.ui3-pager-item-large a{
padding: 0px 4px;
}
.ui3-pager-previous a, .ui3-pager-next a{
width: 58px;
}
.ui3-pager-previous a:before{
content: '<';
font-family: consolas;
margin-right: 2px;
font-size: 16px;
}
.ui3-pager-next a:after{
content: '>';
margin-left: 2px;
font-family: consolas;
font-size: 16px;
}
.ui3-pager-current a, .ui3-pager-point a{
cursor: default;
}
.ui3-pager-shortcut{
height: 24px;
color: #a3a3a3;
padding: 3px;
}
.ui3-pager-shortcut input{
height: 23px;
width: 38px;
padding: 0px;
outline: none;
text-align: center;
margin: 0px;
border-radius: 3px;
border: 1px solid #a3a3a3;
}
.ui3-pager-shortcut-confirm{
border-radius: 3px;
background: #5986E1;
text-decoration: none;
text-align: center;
display: inline-block;
color: #fff;
width: 50px;
height: 24px;
line-height: 24px;
margin-left: 5px;
}