Blame view

app/bower_components/bootstrap/less/pager.less 861 Bytes
f986e111b   TRUONG   add libs
1
2
3
4
5
6
7
8
9
10
  //
  // Pager pagination
  // --------------------------------------------------
  
  
  .pager {
    padding-left: 0;
    margin: @line-height-computed 0;
    list-style: none;
    text-align: center;
87c93a029   Dang YoungWorld   add modal
11
    &:extend(.clearfix all);
f986e111b   TRUONG   add libs
12
13
14
15
16
17
    li {
      display: inline;
      > a,
      > span {
        display: inline-block;
        padding: 5px 14px;
87c93a029   Dang YoungWorld   add modal
18
19
        background-color: @pager-bg;
        border: 1px solid @pager-border;
f986e111b   TRUONG   add libs
20
21
22
23
24
25
        border-radius: @pager-border-radius;
      }
  
      > a:hover,
      > a:focus {
        text-decoration: none;
87c93a029   Dang YoungWorld   add modal
26
        background-color: @pager-hover-bg;
f986e111b   TRUONG   add libs
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
      }
    }
  
    .next {
      > a,
      > span {
        float: right;
      }
    }
  
    .previous {
      > a,
      > span {
        float: left;
      }
    }
  
    .disabled {
      > a,
      > a:hover,
      > a:focus,
      > span {
        color: @pager-disabled-color;
87c93a029   Dang YoungWorld   add modal
50
51
        background-color: @pager-bg;
        cursor: @cursor-disabled;
f986e111b   TRUONG   add libs
52
53
      }
    }
f986e111b   TRUONG   add libs
54
  }