[Gtk-3.18]: Readjust highlight hover color for scale slider. Fixes #392

pull/460/head
Khurshid Alam 2016-05-19 14:54:16 +05:30
parent f696652305
commit 704dc5f150
1 changed files with 19 additions and 10 deletions

View File

@ -156,18 +156,27 @@
&.vertical { margin: 0 7px; }
}
&.highlight {
&, &.left, &.bottom {
&.highlight.left {
&, .memuitem & {
@include linear-gradient($selected_bg_color);
border-color: $selected_bg_color;
&:insensitive {
@include linear-gradient(shade($bg_color, .8));
&:hover {
border-color: border_normal($selected_bg_color);
background-color: shade($selected_bg_color, .8);
}
border-color: shade($bg_color, .7);
&:insensitive {
@include linear-gradient(shade($bg_color, .9));
border-color: shade($bg_color, .85);
}
}
}
&.highlight.bottom {
@include linear-gradient($selected_bg_color);
border-color: $selected_bg_color;
}
}
}