More apparent color for highlighted items. Fix Microsoft/vscode#53027

This commit is contained in:
Pine Wu 2018-07-05 06:37:49 -07:00
Родитель b285450948
Коммит ef5a2af352
1 изменённых файлов: 5 добавлений и 3 удалений

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

@ -127,12 +127,14 @@ export default Vue.extend({
*/
.msg {
@include transition(background-color);
@include transition(all);
}
.msg:hover {
background-color: rgba(221, 221, 221, 0.3);
background-color: rgba(221, 221, 221, 0.7);
border-color: $active-bg;
}
.msg.current {
background-color: rgba(221, 221, 221, 0.3);
background-color: rgba(221, 221, 221, 0.7);
border-color: $active-bg;
}
</style>