Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pagination.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 055c528cb8218b34ce5fbe98e834e26f00e5d525 (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
// Pagination
.pagination {
  display: flex;

  .page-item {
    margin: 1rem .1rem;

    span {
      display: inline-block;
      padding: .6rem .4rem;
    }

    a {
      border-radius: @border-radius;
      color: @dark-gray-color;
      display: inline-block;
      padding: .6rem .8rem;
      text-decoration: none;
      &:focus,
      &:hover {
        color: @primary-color;
      }
      &[disabled],
      &.disabled {
        cursor: default;
        opacity: .5;
        pointer-events: none;
      }
    }

    &.active {
      a {
        background: @primary-color;
        color: @light-color;
      }
    }

    &.page-prev,
    &.page-next {
      flex: 1 0 50%;
    }

    &.page-next {
      text-align: right;
    }

    .page-item-title {
      margin: 0;
    }

    .page-item-meta {
      margin: 0;
      opacity: .5;
    }
  }
}