]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Modify Button Background to Background Color 7582/head
authorCorbin Hesse <corbin@yellow7.com>
Wed, 16 Dec 2015 21:05:18 +0000 (15:05 -0600)
committerCorbin Hesse <corbin@yellow7.com>
Wed, 16 Dec 2015 21:05:18 +0000 (15:05 -0600)
scss/components/_button.scss

index 44bf8d449a80b0dfbf5ffb135aed6229120a90ed..71bbf4d324e39c8ff4a25910a2bc12ac3138c6d4 100644 (file)
@@ -113,11 +113,11 @@ $button-opacity-disabled: 0.25 !default;
     $color: $button-color;
   }
 
-  background: $background;
+  background-color: $background;
   color: $color;
 
   &:hover, &:focus {
-    background: $background-hover;
+    background-color: $background-hover;
     color: $color;
   }
 }
@@ -126,7 +126,7 @@ $button-opacity-disabled: 0.25 !default;
 @mixin button-hollow {
   &,
   &:hover, &:focus {
-    background: transparent;
+    background-color: transparent;
   }
 }