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

labels.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42d966ccdca128f6b2a97138a1d45447f77de8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Labels
.label {
  background: @core-border-color;
  color: lighten(@body-font-color, 20%);
  .label-base();

  &.label-primary {
    .label-variant(@core-color);
  }

  &.label-success {
    .label-variant(@control-color-success);
  }

  &.label-danger {
    .label-variant(@control-color-danger);
  }

  small& {
    font-size: 80%;
  }
}