diff options
| author | Mark Otto <[email protected]> | 2013-03-30 17:00:11 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-30 17:00:11 -0700 |
| commit | 6edd5f291aba8f66816fe2ca1dfb61daeaab0efe (patch) | |
| tree | ebc88ba36b45907fbe130beb1ba854d393604d17 | |
| parent | 1683669eaa75555e1454105460ed6b7bcaca9f11 (diff) | |
| download | bootstrap-6edd5f291aba8f66816fe2ca1dfb61daeaab0efe.tar.xz bootstrap-6edd5f291aba8f66816fe2ca1dfb61daeaab0efe.zip | |
not quite #fff on .list-group-item-text
| -rw-r--r-- | docs/assets/css/bootstrap.css | 7 | ||||
| -rw-r--r-- | less/list-group.less | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 8e5a3dbc5..dadd15845 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -2999,11 +2999,14 @@ a.list-group-item.active { border-color: #428bca; } -a.list-group-item.active .list-group-item-heading, -a.list-group-item.active .list-group-item-text { +a.list-group-item.active .list-group-item-heading { color: inherit; } +a.list-group-item.active .list-group-item-text { + color: #e1edf7; +} + .list-group-item > .badge, .list-group-item > .glyphicon-chevron-right { float: right; diff --git a/less/list-group.less b/less/list-group.less index 23ddb0d47..d37027d50 100644 --- a/less/list-group.less +++ b/less/list-group.less @@ -72,10 +72,12 @@ a.list-group-item.active { border-color: @list-group-active-border; // Force color to inherit for custom content - .list-group-item-heading, - .list-group-item-text { + .list-group-item-heading { color: inherit; } + .list-group-item-text { + color: lighten(@list-group-active-bg, 40%); + } } // Chevrons and badges within list items |
