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

tabs.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 781c2f2e745f361c6bc35131e0f41f4d138bd8f8 (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
// Tabs
.tab {
  align-items: center;
  display: flex;
  flex-wrap: wrap;

  .tab-item {
    margin-top: 0;

    &.tab-action {
      flex: 1 0 auto;
      text-align: right;
    }

    a {
      border-bottom: .2rem solid transparent;
      color: inherit;
      display: block;
      margin-top: 0;
      padding: .6rem 1.2rem .4rem 1.2rem;
      text-decoration: none;
      &:focus,
      &:hover {
        color: @link-color;
      }
    }
    &.active a,
    a.active {
      border-bottom-color: @primary-color;
      color: @link-color;
    }
  }

  &.tab-block {
    .tab-item {
      flex: 1 0 0;
      text-align: center;

      .badge {
        &[data-badge]::after {
          position: absolute;
          right: -.4rem;
          top: -.4rem;
          transform: translate(0, 0);
        }
      }
    }
  }

  &:not(.tab-block) {
    .badge {
      padding-right: .2rem;
    }
  }
}