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

bars.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f76842fec9f220ded80304b3a679484302811528 (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
// Bars
.bar {
  background: @core-border-color;
  border-radius: @border-radius;
  display: flex;
  flex-wrap: nowrap;
  height: 1.6rem;
  width: 100%;

  &.bar-sm {
    height: .4rem;
  }

  // TODO: attr() support
  .bar-item {
    background: @core-primary-color;
    color: @core-light-color;
    display: block;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
    height: 100%;
    padding: .2rem 0;
    text-align: center;
    width: 0;

    &:first-of-type {
      border-bottom-left-radius: @border-radius;
      border-top-left-radius: @border-radius;
    }
    &:last-of-type {
      border-bottom-right-radius: @border-radius;
      border-top-right-radius: @border-radius;
      flex-shrink: 1;
    }
  }
}