Fix list-row

pull/224/head
Satyajit Sahoo 2014-12-13 20:09:58 +05:30
parent e8f4bef04c
commit da340ddb79
1 changed files with 16 additions and 13 deletions

View File

@ -11,22 +11,25 @@
color: $fg_color; color: $fg_color;
&-row { &-row {
border: none; &, &.button {
border-radius: 0; border: none;
padding: $spacing; border-radius: 0;
background-image: none; padding: $spacing;
background-color: transparent;
&:hover {
background-image: none; background-image: none;
background-color: shade($bg_color, 1.02); background-color: transparent;
} box-shadow: none;
&:selected { &:hover {
&, &:hover, &:focus {
background-image: none; background-image: none;
background-color: $selected_bg_color; background-color: shade($bg_color, 1.02);
color: $selected_fg_color; }
&:selected {
&, &:hover, &:focus {
background-image: none;
background-color: $selected_bg_color;
color: $selected_fg_color;
}
} }
} }
} }