forked from olton/Metro-UI-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagination.less
83 lines (75 loc) · 1.71 KB
/
pagination.less
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
.pagination {
width: auto;
margin-bottom: 10px;
& > ul {
.unstyled;
margin: 0;
.clearfix;
li {
display: block;
float: left;
margin-right: 1px;
position: relative;
a {
.button;
color: inherit;
display: block;
float: left;
margin-right: 1px;
}
&.first, &.prev, &.next, &.last {
a {
//font-size: 20pt;
}
}
&.active {
a {
background-color: @lightBlue ;
color: @white;
}
}
&.disabled, &.spaces {
a {
background-color: darken(@white, 5%);
color: #1e1e1e;
cursor: not-allowed;
&:active {
top: 0;
left: 0;
}
}
}
&.disabled {
a {
color: #1e1e1e;
}
}
&.spaces {
a {
background-color: @white;
cursor: default;
}
}
}
}
&.small {
ul {
li {
a {
padding: 2px 10px;
font-size: 11.9px;
}
}
}
}
&.mini {
ul {
li {
a {
padding: 0px 6px;
font-size: 10.5px;
}
}
}
}
}