forked from arnemorken/anypaginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anyPaginator.css
122 lines (106 loc) · 2.91 KB
/
anyPaginator.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
111
112
113
114
115
116
117
118
119
120
121
122
/****************************************************************************************
*
* anyPaginator is copyright (C) 2021-2022 Arne D. Morken and Balanse Software.
*
* License: AGPLv3.0 for open source use or anyPaginator Commercial License for commercial use.
* Get licences here: http://balanse.info/anypaginator/license/ (coming soon).
*
* See also the anyList project: https://github.com/arnemorken/anylist
*
****************************************************************************************/
.any-paginator-container {
margin-top: 10px;
background: white;
font: 14px Verdana, sans-serif;
}
.any-paginator-btn {
margin-right: 1px;
min-width: 12px;
min-height: 20px !important;
max-height: 20px !important;
border-radius: 3px;
white-space: nowrap;
display: inline-block;
text-align: center;
color: #fc5200;
cursor: pointer;
}
.any-paginator-num {
min-width: 20px;
border: 1px solid #fc5200;
}
.any-paginator-ellipsis {
min-width: 20px;
border: 1px solid #eee;
color: #888;
cursor: default;
}
.any-paginator-inactive {
color: #888;
}
.any-paginator-page,
.any-paginator-item {
min-width: 20px;
white-space: nowrap;
display: inline-block;
text-align: center;
color: #333;
}
.any-paginator-prev {
margin-right: 5px;
font-size: 12px;
}
.any-paginator-next {
margin-left: 5px;
font-size: 12px;
}
.any-paginator-first {
font-size: 14px;
}
.any-paginator-last {
font-size: 14px;
}
.any-paginator-goto {
margin-left: 5px;
white-space: nowrap;
display: inline-block;
font-size: 14px;
}
.any-paginator-goto-inp {
min-width: 22px;
max-width: 22px;
min-height: 20px !important;
max-height: 20px !important;
line-height: 1 !important;
margin-right: 3px;
padding-top: 0px;
padding-bottom: 0px;
white-space: nowrap;
display: inline-block;
text-align: center;
font: 12px Verdana, sans-serif;
}
.any-paginator-goto-inp:focus {
outline: none;
}
.any-paginator-goto-btn {
min-width: 12px;
padding: 2px;
white-space: nowrap;
display: inline-block;
text-align: center;
cursor: pointer;
}
.any-paginator-goto-btn:hover {
padding: 1px;
border: 1px solid #ddd;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Currently supported by
Vivaldi, Opera, Chrome, Edge and Firefox */
}