Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2013-05-08 07:01:57 +0400
committerMark Otto <otto@github.com>2013-05-08 07:01:57 +0400
commit86598cac6b525ab122aa4de92aa3be696fa62e6a (patch)
tree3d1825546ba09042da758a4480ff8496133ea869 /less
parentad5f88e1c5384d8312655298dcff429253ad2d9c (diff)
Fixes #7796: change @list-group-active-text to @list-group-active-color
Diffstat (limited to 'less')
-rw-r--r--less/list-group.less2
-rw-r--r--less/variables.less2
2 files changed, 2 insertions, 2 deletions
diff --git a/less/list-group.less b/less/list-group.less
index d37027d507..41b45f484a 100644
--- a/less/list-group.less
+++ b/less/list-group.less
@@ -67,7 +67,7 @@ a.list-group-item:focus {
// Active class on item itself, not parent
a.list-group-item.active {
z-index: 2; // Place active items above their siblings for proper border styling
- color: @list-group-active-text;
+ color: @list-group-active-color;
background-color: @list-group-active-bg;
border-color: @list-group-active-border;
diff --git a/less/variables.less b/less/variables.less
index 37d51e16e7..f6f59605a2 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -314,7 +314,7 @@
@list-group-border-radius: @border-radius-base;
@list-group-hover-bg: #f5f5f5;
-@list-group-active-text: #fff;
+@list-group-active-color: #fff;
@list-group-active-bg: @component-active-bg;
@list-group-active-border: @list-group-active-bg;