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

badges.less « less - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f1e71edae7b5c461751d49d61732b3c4752832c (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
//
// Badges
// --------------------------------------------------


// Base classes
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: @grayLight;
  border-radius: 10px;

  // Empty labels/badges collapse
  &:empty {
    display: none;
  }
}

// Hover state, but only for links
a.badge {
  &:hover,
  &:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
}

// Quick fix for labels/badges in buttons
.btn {
  .badge {
    position: relative;
    top: -1px;
  }
}
.btn-mini {
  .badge {
    top: 0;
  }
}

// Account for counters in navs
.nav-list > .active > a > .badge,
.nav-pills > .active > a > .badge {
  color: @link-color;
  background-color: #fff;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}