twbs--bootstrap/scss/mixins/_buttons.scss

100 lines
2.1 KiB
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00:00
// Button variants
//
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
@mixin button-variant($color, $background, $border) {
2015-08-23 02:05:43 +00:00
$active-background: darken($background, 10%);
$active-border: darken($border, 12%);
2014-12-02 22:02:35 +00:00
color: $color;
background-color: $background;
border-color: $border;
2016-01-09 23:27:56 +00:00
@include box-shadow($btn-box-shadow);
2014-12-02 22:02:35 +00:00
2015-08-23 02:05:43 +00:00
@include hover {
2014-12-02 22:02:35 +00:00
color: $color;
background-color: $active-background;
border-color: $active-border;
}
2015-08-23 02:05:43 +00:00
&:focus,
&.focus {
color: $color;
background-color: $active-background;
border-color: $active-border;
2014-12-02 22:02:35 +00:00
}
2015-08-23 02:05:43 +00:00
2014-12-02 22:02:35 +00:00
&:active,
&.active,
.open > &.dropdown-toggle {
2015-08-23 02:05:43 +00:00
color: $color;
background-color: $active-background;
border-color: $active-border;
2014-12-02 22:02:35 +00:00
// Remove the gradient for the pressed/active state
background-image: none;
@include box-shadow($btn-active-box-shadow);
2015-08-23 02:05:43 +00:00
&:hover,
&:focus,
&.focus {
color: $color;
background-color: darken($background, 17%);
border-color: darken($border, 25%);
}
2014-12-02 22:02:35 +00:00
}
2015-08-23 02:05:43 +00:00
2014-12-02 22:02:35 +00:00
&.disabled,
&:disabled {
2014-12-02 22:02:35 +00:00
&:focus,
2015-08-05 05:29:45 +00:00
&.focus {
2014-12-02 22:02:35 +00:00
background-color: $background;
border-color: $border;
}
@include hover {
background-color: $background;
border-color: $border;
}
2014-12-02 22:02:35 +00:00
}
}
2015-08-10 06:45:36 +00:00
@mixin button-outline-variant($color) {
color: $color;
background-image: none;
background-color: transparent;
2015-08-10 06:45:36 +00:00
border-color: $color;
&:focus,
&.focus,
&:active,
&.active,
.open > &.dropdown-toggle {
color: #fff;
background-color: $color;
border-color: $color;
}
@include hover {
color: #fff;
background-color: $color;
border-color: $color;
}
&.disabled,
&:disabled {
2015-08-10 06:45:36 +00:00
&:focus,
&.focus {
border-color: lighten($color, 20%);
}
@include hover {
border-color: lighten($color, 20%);
}
}
}
2014-12-02 22:02:35 +00:00
// Button sizes
@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
padding: $padding-y $padding-x;
2014-12-02 22:02:35 +00:00
font-size: $font-size;
@include border-radius($border-radius);
}