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