fix mix function parameters (all of them)

(cherry picked from commit 69195f7)
This commit is contained in:
Dustin Falgout
2016-04-10 04:43:09 -05:00
parent 99ed561a80
commit 6f961342d9
4 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -241,12 +241,12 @@
@if $variant == 'light' { outline-color: transparentize($selected_fg_color, 0.7); }
&:disabled { color: mix($selected_fg_color, $selected_bg_color, 50%); }
&:disabled { color: mix($selected_fg_color, $selected_bg_color, .5); }
&:backdrop {
color: $backdrop_selected_fg_color;
&:disabled { color: mix($backdrop_selected_fg_color, $selected_bg_color, 30%); }
&:disabled { color: mix($backdrop_selected_fg_color, $selected_bg_color, .3); }
}
}
}