Fix list text color on backdrop state

This commit is contained in:
EliverLara
2018-12-05 16:06:44 -06:00
parent 5576860714
commit d8d2560c95
3 changed files with 15 additions and 15 deletions

View File

@@ -38,20 +38,20 @@
color: #98abb2;
}
&:selected{
color: #fff;
color: $selected_fg_color;
// border-left: 4px solid $selected_bg_color;
&:backdrop{
color: $backdrop_selected_bg_color;
background: transparent;
color: $backdrop_selected_fg_color;
background: $backdrop_selected_bg_color;
label{
color: #fff;
color: $selected_fg_color;
}
}
&:hover{
// background-color: transparentize($selected_bg_color, 0.8);
}
label{
color: #fff;
color: $selected_fg_color;
}
}
}