re-org themes folder

This commit is contained in:
Adam Bradley
2013-08-26 14:26:25 -05:00
parent e4a71a9f38
commit fb1cb94de3
14 changed files with 20 additions and 11 deletions

View File

@@ -0,0 +1,32 @@
.button {
color: $buttonColor;
border-radius: $buttonBorderRadius;
border-width: $buttonBorderWidth;
border-style: solid;
padding: $buttonPadding;
}
.button-default {
@include button-style($buttonDefaultBackground, $buttonDefaultBorder, $darkColor);
}
.button-secondary {
@include button-style($buttonSecondaryBackground, $buttonSecondaryBorder, $darkColor);
}
.button-primary {
@include button-style($buttonPrimaryBackground, $buttonPrimaryBorder, $lightColor);
}
.button-info {
@include button-style($buttonInfoBackground, $buttonInfoBorder, $lightColor);
}
.button-success {
@include button-style($buttonSuccessBackground, $buttonSuccessBorder, $lightColor);
}
.button-warning {
@include button-style($buttonWarningBackground, $buttonWarningBorder, $lightColor);
}
.button-danger {
@include button-style($buttonDangerBackground, $buttonDangerBorder, $lightColor);
}
.button-dark {
@include button-style($buttonDarkBackground, $buttonDarkBorder, $lightColor);
}