summaryrefslogtreecommitdiff
path: root/superhero/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-07-30 11:02:33 -0400
committerThomas Park <thomas@thomaspark.me>2013-07-30 11:02:33 -0400
commiteb9feaf62ce95d3bd4409bad6bc78d2e5b332d2e (patch)
treeb85113f38d385da3c6a034b9e1ac80128478d701 /superhero/bootswatch.less
parent49a889991c32e94a9b376baa41c94659172c84a1 (diff)
superhero: add .label-inverse, .badge-inverse, fixes #120
Diffstat (limited to 'superhero/bootswatch.less')
-rwxr-xr-xsuperhero/bootswatch.less21
1 files changed, 16 insertions, 5 deletions
diff --git a/superhero/bootswatch.less b/superhero/bootswatch.less
index e3ae4056..8be20e43 100755
--- a/superhero/bootswatch.less
+++ b/superhero/bootswatch.less
@@ -547,27 +547,37 @@ label {
// ALERTS, LABELS, BADGES
// --------------------------------------------------
-.label {
+.label,
+.badge {
background-color: @blue;
color: @textColor;
}
-.label-important {
+.label-important,
+.badge-important {
background-color: @errorText;
}
-.label-warning {
+.label-warning,
+.badge-warning {
background-color: @orange;
}
-.label-success {
+.label-success,
+.badge-success {
background-color: @successText;
}
-.label-info {
+.label-info,
+.badge-info {
background-color: @infoText;
}
+.label-inverse,
+.badge-inverse {
+ background-color: @gray;
+}
+
.alert {
background-color: @blue;
border: none;
@@ -592,6 +602,7 @@ label {
background-color: @infoText;
}
+
// MISC
// --------------------------------------------------