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

chips.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b0292429fad0beb6937f8aece94c04bfa7084ae (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
// Chips
.chip {
  align-items: center;
  background: @core-border-color;
  border-radius: @border-radius;
  color: #666;
  display: inline-flex;
  height: 3rem;
  margin: .1rem .2rem .1rem 0;
  max-width: 100%;
  padding: .5rem .7rem;
  text-decoration: none;
  vertical-align: middle;

  &.is-selected {
    background: @core-color;
    color: @core-light-color;
  }

  .avatar {
    font-size: 1rem;
    height: 2rem;
    margin-right: .4rem;
    width: 2rem;
  }

  .btn-clear {
    &::before {
      color: currentColor;
      font-size: 1.6rem;
    }
  }
}