aboutsummaryrefslogtreecommitdiff
path: root/less/pagination.less
blob: 48201b2ef24ef89c1a6a3ff79bcb533e608f22c3 (plain)
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
//
// Pagination (multiple pages)
// --------------------------------------------------
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: @line-height-computed 0;
  border-radius: @border-radius-base;
  
  > li {
    display: inline; // Remove list-style and block-level defaults
    > a,
    > span,{
      float: left; // Collapse white-space
      padding: 4px 12px;
      line-height: @line-height-base;
      text-decoration: none;
      background-color: @pagination-bg;
      border: 1px solid @pagination-border;
      border-left-width: 0;
    }
  }
  
  > li > a:hover,
  > li > a:focus,
  > .active > a,
  > .active > span {
    background-color: @pagination-active-bg;
  }
  > .active > a,
  > .active > span {
    color: @gray-light;
    cursor: default;
  }
  
  > .disabled {
    > span,
    > a,
    > a:hover,
    > a:focus {
      color: @gray-light;
      background-color: @pagination-bg;
      cursor: default;
    }
  }
  
  > li:first-child {
    > a,
    > span {
      border-left-width: 1px;
      .border-left-radius(@border-radius-base);
    }
  }
  
  > li:last-child {
    > a,
    > span {
      .border-right-radius(@border-radius-base);
    }
  }
}

// Sizing
// --------------------------------------------------

// Large
.pagination-large {
  > li > a,
  > li > span {
    padding: @padding-large-vertical @padding-large-horizontal;
    font-size: @font-size-large;
  }
  > li:first-child > a,
  > li:first-child > span {
    .border-left-radius(@border-radius-large);
  }
  > li:last-child > a,
  > li:last-child > span {
    .border-right-radius(@border-radius-large);
  }
}

// Small
.pagination-small {
  > li > a,
  > li > span {
    padding: @padding-small-vertical @padding-small-horizontal;
    font-size: @font-size-small;
  }
  > li:first-child > a,
  > li:first-child > span {
    .border-left-radius(@border-radius-small);
  }
  > li:last-child > a,
  > li:last-child > span {
    .border-right-radius(@border-radius-small);
  }
}