]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Fix border color on hover
authorJoe Workman <joe@workmanmail.com>
Wed, 3 May 2017 19:50:45 +0000 (12:50 -0700)
committerJoe Workman <joe@workmanmail.com>
Wed, 3 May 2017 19:50:45 +0000 (12:50 -0700)
scss/components/_button.scss

index 6c94894744fe595c4695cdcecb131f9e5172d677..79c08588458ee34a92122900088cc57a9442c15f 100755 (executable)
@@ -164,6 +164,7 @@ table.button:active {
   table {
     td {
       background: darken($button-background, 10%);
+      border-color: darken($button-background, 10%);
       color: $button-color;
     }
   }
@@ -198,6 +199,7 @@ table.button.secondary:hover {
   table {
     td {
       background: lighten($secondary-color, 10%);
+      border-color: lighten($secondary-color, 10%);
       color: $button-color;
     }
 
@@ -248,6 +250,7 @@ table.button.success:hover {
   table {
     td {
       background: darken($success-color, 10%);
+      border-color: darken($success-color, 10%);
     }
 
     a {
@@ -273,6 +276,7 @@ table.button.alert:hover {
   table {
     td {
       background: darken($alert-color, 10%);
+      border-color: darken($alert-color, 10%);
     }
 
     a {
@@ -298,6 +302,7 @@ table.button.warning:hover {
   table {
     td {
       background: darken($warning-color, 10%);
+      border-color: darken($warning-color, 10%);
     }
 
     a {