* Fixed #457 and implement spinbutton and entry osd style.

This commit is contained in:
Megax
2016-08-31 11:51:50 +02:00
parent 6cb9d03b04
commit 644e633a16
3 changed files with 68 additions and 3 deletions
+2 -2
View File
@@ -118,7 +118,7 @@
selection { &:focus, & { @extend %selected_items; } }
}
@mixin entry($bg, $fg) {
@mixin entry($bg, $fg, $border: $borders_color) {
@extend %entry;
@include linear-gradient($bg, to top);
@include border($bg);
@@ -128,7 +128,7 @@
color: $fg;
caret-color: $fg;
&:focus, &:active { border-color: border_focus($borders_color); }
&:focus, &:active { border-color: border_focus($border); }
&:disabled {
@include linear-gradient(shade($bg, .9), to top);