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

88 lines
2.0 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($background, $border) {
$active-background: darken($background, 7.5%);
$active-border: darken($border, 10%);
2015-08-23 02:05:43 +00:00
@include color-yiq($background);
2014-12-02 22:02:35 +00:00
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
// Hover and focus styles are shared
&:hover {
@include color-yiq($background);
background-color: $active-background;
border-color: $active-border;
}
2015-08-23 02:05:43 +00:00
&:focus,
&.focus {
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $btn-box-shadow, 0 0 0 3px rgba($border, .5);
} @else {
box-shadow: 0 0 0 3px rgba($border, .5);
}
}
// Disabled comes first so active can properly restyle
&.disabled,
&:disabled {
background-color: $background;
border-color: $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,
.show > &.dropdown-toggle {
2015-08-23 02:05:43 +00:00
background-color: $active-background;
background-image: none; // Remove the gradient for the pressed/active state
2016-12-26 22:52:39 +00:00
border-color: $active-border;
@include box-shadow($btn-active-box-shadow);
2014-12-02 22:02:35 +00:00
}
}
@mixin button-outline-variant($color, $color-hover: #fff) {
2015-08-10 06:45:36 +00:00
color: $color;
background-color: transparent;
background-image: none;
2015-08-10 06:45:36 +00:00
border-color: $color;
@include hover {
color: $color-hover;
background-color: $color;
border-color: $color;
}
2015-08-10 06:45:36 +00:00
&:focus,
&.focus {
box-shadow: 0 0 0 3px rgba($color, .5);
}
&.disabled,
&:disabled {
color: $color;
background-color: transparent;
2015-08-10 06:45:36 +00:00
}
&:active,
&.active,
.show > &.dropdown-toggle {
color: $color-hover;
2015-08-10 06:45:36 +00:00
background-color: $color;
border-color: $color;
2015-08-10 06:45:36 +00:00
}
}
2014-12-02 22:02:35 +00:00
// Button sizes
@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
padding: $padding-y $padding-x;
2014-12-02 22:02:35 +00:00
font-size: $font-size;
line-height: $line-height;
2014-12-02 22:02:35 +00:00
@include border-radius($border-radius);
}