refactor(button): changed border from short-hand syntax to make it easier to override

references #689
This commit is contained in:
Brandy Carney
2015-12-07 14:34:56 -05:00
parent ae19f65229
commit d1b9880a08
2 changed files with 6 additions and 6 deletions

View File

@ -115,7 +115,9 @@ $button-ios-small-icon-font-size: 1.3em !default;
// --------------------------------------------------
.button-outline {
border: 1px solid $button-ios-color;
border-width: 1px;
border-style: solid;
border-color: $button-ios-color;
background-color: transparent;
color: $button-ios-color;

View File

@ -41,11 +41,7 @@ $button-md-small-icon-font-size: 1.4em !default;
.button {
margin: $button-md-margin;
padding: $button-md-padding;
min-height: $button-md-height;
font-size: $button-md-font-size;
border: 0;
border-radius: $button-md-border-radius;
font-weight: 500;
@ -129,7 +125,9 @@ $button-md-small-icon-font-size: 1.4em !default;
// --------------------------------------------------
.button-outline {
border: 1px solid $button-md-color;
border-width: 1px;
border-style: solid;
border-color: $button-md-color;
background-color: transparent;
color: $button-md-color;
box-shadow: none;