zengh
2022-06-13 7973e449e74aab353d632e0db2937b376d45a6be
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
.pagecontrol
{
    color: #CECECE;
    font-size:16px;
    text-align: center;
}
.pagecontrol > span, .pagecontrol >li
{
    cursor: pointer;
}
.pagecontrol >span, .pagecontrol >ul,.pagecontrol >ul>li
{
    display:inline-block;
    height:19px;
    vertical-align: middle;
}
 
.pagecontrol >ul>li
{
    font-family: Arial;
    cursor: pointer;
    margin-left: 5px;
    list-style: none;
    line-height: 19px;
    vertical-align: middle;
}
.pagecontrol>ul>:first-child
{
    margin-left: 0px;
}
.pagecontrol >li:hover
{
    color:#F4AA63;
}
.pagecontrol-selectpage
{
    color:#F4AA63;
}
.pagecontrol-selectpage:hover
{
    color:#F4AA63 !important;
}
.pagecontrol-disable
{
    color:#CECECE;
    cursor:default !important;
}
.pagecontrol-disable:hover
{
    color:#CECECE !important;
}
.pagecontrol-button
{
    width:19px;
    background-repeat: no-repeat;
    background-image: url("../../assets/images/pagebutton.png");
}
 
.pagecontrol-next
{
    background-position:-22px 0px;
}
.pagecontrol-next:hover
{
    background-position:-22px -19px;
}
.pagecontrol-next:active
{
    background-position:-22px -0px;
}
 
.pagecontrol-next-disable
{
    background-position: -22px -39px;
    cursor: default !important;
}
 
.pagecontrol-next-disable:hover
{
    background-position: -22px -39px;
}
 
.pagecontrol-pre
{
    background-position: 0px 0px;
}
.pagecontrol-pre:hover
{
    background-position: 0px -19px;
}
.pagecontrol-pre:active
{
    background-position: 0px 0px;
}
 
.pagecontrol-pre-disable
{
    background-position: 0px -39;
}
.pagecontrol-pre-disable:hover
{
    background-position: 0px -39;
    cursor: default !important;
}