Bug 1551248 - Fixing dark vs light theme issue (#5027)

This commit is contained in:
ScottDowne 2019-05-16 18:22:06 -04:00 коммит произвёл Ed Lee
Родитель 5c9b03f880
Коммит 7e8f380714
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -206,7 +206,10 @@ $item-line-height: 20;
.ds-list-item-excerpt {
@include limit-visibile-lines(2, $item-line-height, $item-font-size);
color: $grey-10-80;
@include dark-theme-only {
color: $grey-10-80;
}
color: $grey-50;
margin: 4px 0 8px;
}