static/less/labels.less
changeset 53 3416f82943ea
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/static/less/labels.less	Fri Dec 20 22:30:44 2013 +0100
     1.3 @@ -0,0 +1,64 @@
     1.4 +//
     1.5 +// Labels
     1.6 +// --------------------------------------------------
     1.7 +
     1.8 +.label {
     1.9 +  display: inline;
    1.10 +  padding: .2em .6em .3em;
    1.11 +  font-size: 75%;
    1.12 +  font-weight: bold;
    1.13 +  line-height: 1;
    1.14 +  color: @label-color;
    1.15 +  text-align: center;
    1.16 +  white-space: nowrap;
    1.17 +  vertical-align: baseline;
    1.18 +  border-radius: .25em;
    1.19 +
    1.20 +  // Add hover effects, but only for links
    1.21 +  &[href] {
    1.22 +    &:hover,
    1.23 +    &:focus {
    1.24 +      color: @label-link-hover-color;
    1.25 +      text-decoration: none;
    1.26 +      cursor: pointer;
    1.27 +    }
    1.28 +  }
    1.29 +
    1.30 +  // Empty labels collapse automatically (not available in IE8)
    1.31 +  &:empty {
    1.32 +    display: none;
    1.33 +  }
    1.34 +
    1.35 +  // Quick fix for labels in buttons
    1.36 +  .btn & {
    1.37 +    position: relative;
    1.38 +    top: -1px;
    1.39 +  }
    1.40 +}
    1.41 +
    1.42 +// Colors
    1.43 +// Contextual variations (linked labels get darker on :hover)
    1.44 +
    1.45 +.label-default {
    1.46 +  .label-variant(@label-default-bg);
    1.47 +}
    1.48 +
    1.49 +.label-primary {
    1.50 +  .label-variant(@label-primary-bg);
    1.51 +}
    1.52 +
    1.53 +.label-success {
    1.54 +  .label-variant(@label-success-bg);
    1.55 +}
    1.56 +
    1.57 +.label-info {
    1.58 +  .label-variant(@label-info-bg);
    1.59 +}
    1.60 +
    1.61 +.label-warning {
    1.62 +  .label-variant(@label-warning-bg);
    1.63 +}
    1.64 +
    1.65 +.label-danger {
    1.66 +  .label-variant(@label-danger-bg);
    1.67 +}
Impressum Datenschutzerklärung