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

labels.less « less - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92fe8f89e2293803aff9a594d341d05692ec495c (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//
// Labels
// --------------------------------------------------

.label {
  display: inline;
  padding: .25em .6em;
  font-size: 75%;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: @gray-light;
  border-radius: .25em;

  // Add hover effects, but only for links 
  &[href] {
    &:hover,
    &:focus {
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      background-color: darken(@gray-light, 10%);
    }
  }
}

// Colors
// Contextual variations (linked labels get darker on :hover)
.label-danger {
  background-color: @label-danger-bg;
  &[href] {
    &:hover, 
    &:focus {
      background-color: darken(@label-danger-bg, 10%);
    }
  }
}

.label-success {
  background-color: @label-success-bg;
  &[href] {
    &:hover,
    &:focus {
      background-color: darken(@label-success-bg, 10%);
    }
  }
}

.label-warning {
  background-color: @label-warning-bg;
  &[href] {
    &:hover,
    &:focus {
      background-color: darken(@label-warning-bg, 10%);
    }
  }
}

.label-info {
  background-color: @label-info-bg;
  &[href] {
    &:hover,
    &:focus {
      background-color: darken(@label-info-bg, 10%);
    }
  }
}