From b20988e534b2a33ae9b15c999c6af4faf77ce955 Mon Sep 17 00:00:00 2001 From: Edmond Lau Date: Fri, 26 Dec 2014 18:00:18 -0500 Subject: [PATCH 1/2] fixed a bracket typo bug in _buttons --- less/_buttons.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/_buttons.less b/less/_buttons.less index dd7b1197..c1f59134 100644 --- a/less/_buttons.less +++ b/less/_buttons.less @@ -41,7 +41,7 @@ font-size: 26px; width: 56px; height: 56px; - &, &:hover, &:active + &, &:hover, &:active { .variations(~"", background-color, transparent); } & { From b16d9d5af4778668c602df7bd113c2f9d5095b62 Mon Sep 17 00:00:00 2001 From: Edmond Lau Date: Fri, 26 Dec 2014 18:00:36 -0500 Subject: [PATCH 2/2] the default button doesn't get the right font color --- less/_mixins.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/less/_mixins.less b/less/_mixins.less index 38076cd1..601e7e13 100644 --- a/less/_mixins.less +++ b/less/_mixins.less @@ -9,6 +9,9 @@ .generic-variations(@extra, @default, { background-color: @material-color; color: @text-color; + & when (@material-color = @btn-default) { + color: @lightbg-text; + } }); }