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

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