aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--less/list-group.less2
-rw-r--r--less/variables.less24
2 files changed, 13 insertions, 13 deletions
diff --git a/less/list-group.less b/less/list-group.less
index 73786a984..ed3bfa5a5 100644
--- a/less/list-group.less
+++ b/less/list-group.less
@@ -79,7 +79,7 @@ a.list-group-item {
color: inherit;
}
.list-group-item-text {
- color: @list-group-link-text-active-color;
+ color: @list-group-active-text-color;
}
}
}
diff --git a/less/variables.less b/less/variables.less
index 39f1f4d86..faccd927c 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -499,18 +499,18 @@
// List group
// -------------------------
-@list-group-bg: #fff;
-@list-group-border: #ddd;
-@list-group-border-radius: @border-radius-base;
-
-@list-group-hover-bg: #f5f5f5;
-@list-group-active-color: @component-active-color;
-@list-group-active-bg: @component-active-bg;
-@list-group-active-border: @list-group-active-bg;
-
-@list-group-link-color: #555;
-@list-group-link-heading-color: #333;
-@list-group-link-text-active-color: lighten(@list-group-active-bg, 40%);
+@list-group-bg: #fff;
+@list-group-border: #ddd;
+@list-group-border-radius: @border-radius-base;
+
+@list-group-hover-bg: #f5f5f5;
+@list-group-active-color: @component-active-color;
+@list-group-active-bg: @component-active-bg;
+@list-group-active-border: @list-group-active-bg;
+@list-group-active-text-color: lighten(@list-group-active-bg, 40%);
+
+@list-group-link-color: #555;
+@list-group-link-heading-color: #333;
// Panels
// -------------------------