Sha256: c9eb4b591f9baa743a823613eda5f2cc17a1140b3cce5ef121f047a2854fd644

Contents?: true

Size: 1.99 KB

Versions: 5

Compression:

Stored size: 1.99 KB

Contents

/* Partial: twitter/bootstrap/_labels-badges.scss */
//
// Labels and badges
// --------------------------------------------------


// Base classes
.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: $baseFontSize * .846;
  font-weight: bold;
  line-height: 13px; // ensure proper line-height if floated
  color: $white;
  vertical-align: middle;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0,0,0,.25);
  background-color: $grayLight;
}
// Set unique padding and border-radii
.label {
  @include border-radius(3px);
}
.badge {
  padding-left: 9px;
  padding-right: 9px;
  @include border-radius(9px);
}

// Empty labels/badges collapse
.label,
.badge {
  &:empty {
    display: none;
  }
}

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

// Colors
// Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute)
@each $type in label, badge {
  // Important (red)
  .#{$type}-important        { background-color: $errorText; }
  .#{$type}-important:hover  { background-color: darken($errorText, 10%); }
  // Warnings (orange)
  .#{$type}-warning          { background-color: $orange; }
  .#{$type}-warning:hover    { background-color: darken($orange, 10%); }
  // Success (green)
  .#{$type}-success          { background-color: $successText; }
  .#{$type}-success:hover    { background-color: darken($successText, 10%); }
  // Info (turquoise)
  .#{$type}-info             { background-color: $infoText; }
  .#{$type}-info:hover       { background-color: darken($infoText, 10%); }
  // Inverse (black)
  .#{$type}-inverse          { background-color: $grayDark; }
  .#{$type}-inverse:hover    { background-color: darken($grayDark, 10%); }
}

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

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
bootstrap-sass-rails-2.3.1.2 vendor/assets/stylesheets/twitter/bootstrap/_labels-badges.scss
bootstrap-sass-rails-2.3.1.1 vendor/assets/stylesheets/twitter/bootstrap/_labels-badges.scss
bootstrap-sass-rails-rtl-2.3.1.0 vendor/assets/stylesheets/twitter/bootstrap/_labels-badges.scss
bootstrap-sass-rails-2.3.1.0 vendor/assets/stylesheets/twitter/bootstrap/_labels-badges.scss
bootstrap-sass-rails-2.3.0.0 vendor/assets/stylesheets/twitter/bootstrap/_labels-badges.scss