﻿/* Adding classes that are NOT defined in bootstrap, but these are related */

/* Make sure these .badge-* classes stay in sync with label-* classes */
.badge-default {
  background-color: #999999;
}
.badge-default[href]:hover,
.badge-default[href]:focus {
  background-color: #808080;
}
.badge-primary {
  background-color: #66665d;
}
.badge-primary[href]:hover,
.badge-primary[href]:focus {
  background-color: #085b72;
}
.badge-success {
  background-color: #5cb85c;
}
.badge-success[href]:hover,
.badge-success[href]:focus {
  background-color: #449d44;
}
.badge-info {
  background-color: #a84c00;
}
.badge-info[href]:hover,
.badge-info[href]:focus {
  background-color: #31b0d5;
}
.badge-warning {
  background-color: #f0ad4e;
}
.badge-warning[href]:hover,
.badge-warning[href]:focus {
  background-color: #ec971f;
}
.badge-danger {
  background-color: #d9534f;
}
.badge-danger[href]:hover,
.badge-danger[href]:focus {
  background-color: #cb333b;
}

/* Override the negative side margins when we want labels on inline forms */
.form-inline.with-labels .form-group {
    margin-left: 6px; margin-right: 6px;
}