Fix weirdness with list colors in light ui

This commit is contained in:
Ben Ogle 2013-09-04 17:06:21 -07:00
parent 35acd60c7f
commit 852cbe3529

View File

@ -51,13 +51,16 @@
&.select-list ol.list-group, .select-list ol.list-group { &.select-list ol.list-group, .select-list ol.list-group {
li.two-lines { li.two-lines {
.secondary-line { color: @text-color-subtle; } .secondary-line { color: @text-color-subtle; }
&.selected .secondary-line { color: lighten(@text-color-subtle, 10%); } &.selected .secondary-line {
color: lighten(@text-color-subtle, 10%);
text-shadow: none;
}
} }
// We want to highlight the background of the list items because we dont // We want to highlight the background of the list items because we dont
// know their size. // know their size.
li.selected { li.selected {
background-color: @background-color-highlight; background-color: @background-color-selected;
&:before{ display: none; } &:before{ display: none; }
} }