-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpager.css
64 lines (60 loc) · 1.16 KB
/
pager.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
/* Whole pager option table */
.pager.container {
display: inline-block;
vertical-align: middle;
font-size: 12pt;
}
table.pager td {
vertical-align: middle;
}
/* Associated pager image */
img.pager,
video.pager {
display: inline-block;
vertical-align: middle;
}
/* Option group labels */
.pager.label {
text-align: right;
font-weight: bold;
}
/* Option choices */
td.pager.options {
max-width: 300px;
text-align: left;
}
/* Generic styles for all options */
a.pager {
display: inline-block;
text-align: center;
padding: 2px 4px;
margin: 2px 0px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
/* Inactive options */
a.pager.inactive {
border: 1px solid #f0d0d0;
}
/* Styling for the active options */
a.pager.active {
background-color: #c0c0c0;
}
/* Remove borders, styling, etc from padding-only elements */
a.pager.pad {
border: 1px;
visibility: hidden;
}
/* Remove padding from a spinner */
form.pager {
margin: 0px;
padding: 0px;
}
td.pager.permalink {
border-bottom: 1px solid #ddd;
}
a.pager.permalink {
color: #ddd;
font-variant: small-caps;
}