Files
Max Lynch 0ba0343f11 Button bars and default styles for header buttons
Added a new segmented button bar that stretches, also set the default
styles for header buttons.
2013-09-09 11:59:03 -05:00

50 lines
1.3 KiB
SCSS

.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);
}
&.button-clear {
background: none;
border: none;
padding: $buttonClearPadding;
}
}
a.button {
text-decoration: none;
}
.button-transparent {
background: transparent;
}
.button-borderless [class^="icon-"] {
font-size: 24px;
}