2014-12-02 14:02:35 -08:00
|
|
|
// Button variants
|
|
|
|
//
|
|
|
|
// Easily pump out default styles, as well as :hover, :focus, :active,
|
|
|
|
// and disabled options for all buttons
|
|
|
|
|
2017-10-19 00:13:38 -07:00
|
|
|
@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {
|
|
|
|
color: color-yiq($background);
|
2017-10-19 09:03:33 -07:00
|
|
|
@include gradient-bg($background);
|
2014-12-02 14:02:35 -08:00
|
|
|
border-color: $border;
|
2016-01-09 15:27:56 -08:00
|
|
|
@include box-shadow($btn-box-shadow);
|
2014-12-02 14:02:35 -08:00
|
|
|
|
2017-08-13 14:55:28 -07:00
|
|
|
@include hover {
|
2017-10-19 00:13:38 -07:00
|
|
|
color: color-yiq($hover-background);
|
2017-10-19 09:03:33 -07:00
|
|
|
@include gradient-bg($hover-background);
|
2017-09-11 00:53:40 -03:00
|
|
|
border-color: $hover-border;
|
2015-01-01 01:05:01 -08:00
|
|
|
}
|
2017-06-18 10:53:27 -07:00
|
|
|
|
2015-08-22 19:05:43 -07:00
|
|
|
&:focus,
|
|
|
|
&.focus {
|
2016-12-27 14:50:33 -08:00
|
|
|
// Avoid using mixin so we can pass custom focus shadow properly
|
|
|
|
@if $enable-shadows {
|
2017-10-25 12:30:29 -07:00
|
|
|
box-shadow: $btn-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
|
2016-12-27 14:50:33 -08:00
|
|
|
} @else {
|
2017-10-25 12:30:29 -07:00
|
|
|
box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
|
2016-12-27 14:50:33 -08:00
|
|
|
}
|
2016-12-26 14:42:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Disabled comes first so active can properly restyle
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
2018-01-13 08:50:25 +01:00
|
|
|
color: color-yiq($background);
|
2016-12-26 14:42:29 -08:00
|
|
|
background-color: $background;
|
|
|
|
border-color: $border;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2015-08-22 19:05:43 -07:00
|
|
|
|
2018-01-15 20:51:01 +00:00
|
|
|
&:not(:disabled):not(.disabled):active,
|
|
|
|
&:not(:disabled):not(.disabled).active,
|
2016-12-26 14:42:29 -08:00
|
|
|
.show > &.dropdown-toggle {
|
2017-10-19 09:03:33 -07:00
|
|
|
color: color-yiq($active-background);
|
2015-08-22 19:05:43 -07:00
|
|
|
background-color: $active-background;
|
2017-10-19 09:03:33 -07:00
|
|
|
@if $enable-gradients {
|
|
|
|
background-image: none; // Remove the gradient for the pressed/active state
|
|
|
|
}
|
2016-12-26 14:52:39 -08:00
|
|
|
border-color: $active-border;
|
2017-10-19 09:03:33 -07:00
|
|
|
|
2017-12-27 16:43:37 -08:00
|
|
|
&:focus {
|
|
|
|
// Avoid using mixin so we can pass custom focus shadow properly
|
|
|
|
@if $enable-shadows {
|
|
|
|
box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
|
|
|
|
} @else {
|
|
|
|
box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
|
|
|
|
}
|
2017-10-19 09:03:33 -07:00
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 15:45:25 -08:00
|
|
|
@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {
|
2015-08-09 23:45:36 -07:00
|
|
|
color: $color;
|
2015-08-17 23:43:25 -07:00
|
|
|
background-color: transparent;
|
2017-03-18 21:06:05 +01:00
|
|
|
background-image: none;
|
2015-08-09 23:45:36 -07:00
|
|
|
border-color: $color;
|
|
|
|
|
2017-11-24 18:42:40 -06:00
|
|
|
&:hover {
|
2018-01-17 15:45:25 -08:00
|
|
|
color: $color-hover;
|
2017-11-24 18:42:40 -06:00
|
|
|
background-color: $active-background;
|
|
|
|
border-color: $active-border;
|
2016-02-15 11:50:10 +00:00
|
|
|
}
|
|
|
|
|
2015-08-09 23:45:36 -07:00
|
|
|
&:focus,
|
2016-02-15 11:50:10 +00:00
|
|
|
&.focus {
|
2017-10-25 12:30:29 -07:00
|
|
|
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
|
2016-12-26 14:42:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
color: $color;
|
|
|
|
background-color: transparent;
|
2015-08-09 23:45:36 -07:00
|
|
|
}
|
2016-02-15 11:50:10 +00:00
|
|
|
|
2018-01-15 20:51:01 +00:00
|
|
|
&:not(:disabled):not(.disabled):active,
|
|
|
|
&:not(:disabled):not(.disabled).active,
|
2016-12-26 14:42:29 -08:00
|
|
|
.show > &.dropdown-toggle {
|
2017-12-30 20:55:35 -08:00
|
|
|
color: color-yiq($active-background);
|
2017-11-24 18:42:40 -06:00
|
|
|
background-color: $active-background;
|
|
|
|
border-color: $active-border;
|
2017-12-30 20:55:35 -08:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
// Avoid using mixin so we can pass custom focus shadow properly
|
2018-01-02 13:19:55 -08:00
|
|
|
@if $enable-shadows and $btn-active-box-shadow != none {
|
|
|
|
box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5);
|
|
|
|
} @else {
|
|
|
|
box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
|
|
|
|
}
|
2017-12-30 20:55:35 -08:00
|
|
|
}
|
2015-08-09 23:45:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
// Button sizes
|
2017-03-28 09:28:27 -07:00
|
|
|
@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
2015-08-13 23:04:16 -07:00
|
|
|
padding: $padding-y $padding-x;
|
2014-12-02 14:02:35 -08:00
|
|
|
font-size: $font-size;
|
2017-03-28 09:28:27 -07:00
|
|
|
line-height: $line-height;
|
2017-10-28 22:42:09 -07:00
|
|
|
// Manually declare to provide an override to the browser default
|
|
|
|
@if $enable-rounded {
|
|
|
|
border-radius: $border-radius;
|
|
|
|
} @else {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|