twbs--bootstrap/scss/_buttons.scss

124 lines
2.2 KiB
SCSS
Raw Normal View History

2015-04-18 18:15:40 +00:00
//
// Base styles
2015-04-18 18:15:40 +00:00
//
2012-12-20 06:25:56 +00:00
.btn {
display: inline-block;
font-family: $btn-font-family;
2014-12-02 22:02:35 +00:00
font-weight: $btn-font-weight;
line-height: $btn-line-height;
2018-08-02 18:51:18 +00:00
color: $body-color;
2012-12-20 06:54:04 +00:00
text-align: center;
white-space: $btn-white-space;
2012-12-20 06:25:56 +00:00
vertical-align: middle;
cursor: if($enable-pointer-cursor-for-buttons, pointer, null);
user-select: none;
background-color: transparent;
border: $btn-border-width solid transparent;
@include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius);
@include transition($btn-transition);
2012-12-20 06:25:56 +00:00
&:hover {
2018-08-02 18:51:18 +00:00
color: $body-color;
text-decoration: none;
}
2017-12-28 00:42:59 +00:00
&:focus,
&.focus {
outline: 0;
box-shadow: $btn-focus-box-shadow;
2013-12-18 22:29:33 +00:00
}
&:active,
&.active {
2017-12-27 00:49:35 +00:00
@include box-shadow($btn-active-box-shadow);
&:focus {
2017-12-27 00:49:35 +00:00
@include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
}
}
&:disabled,
&.disabled,
fieldset:disabled & { // stylelint-disable-line selector-no-qualifying-type
pointer-events: none;
opacity: $btn-disabled-opacity;
@include box-shadow(none);
}
2012-12-20 06:25:56 +00:00
}
2012-01-31 04:50:51 +00:00
2015-04-18 18:15:40 +00:00
//
2012-01-31 04:50:51 +00:00
// Alternate buttons
2015-04-18 18:15:40 +00:00
//
2012-01-31 04:50:51 +00:00
@each $color, $value in $theme-colors {
.btn-#{$color} {
@include button-variant($value, $value);
}
2012-01-31 04:50:51 +00:00
}
@each $color, $value in $theme-colors {
.btn-outline-#{$color} {
2018-01-17 23:45:25 +00:00
@include button-outline-variant($value);
}
2015-08-10 05:48:48 +00:00
}
2015-04-18 18:15:40 +00:00
//
// Link buttons
2015-04-18 18:15:40 +00:00
//
// Make a button look and behave like a link
.btn-link {
font-weight: $font-weight-normal;
color: $btn-link-color;
text-decoration: $link-decoration;
2013-07-07 05:13:37 +00:00
&:hover {
color: $btn-link-hover-color;
text-decoration: $link-hover-decoration;
2013-07-07 05:13:37 +00:00
}
2013-07-07 05:13:37 +00:00
&:focus,
&.focus {
text-decoration: $link-hover-decoration;
box-shadow: none;
2013-07-07 05:13:37 +00:00
}
&:disabled,
&.disabled {
color: $btn-link-disabled-color;
}
// No need for an active state here
2012-08-31 21:02:18 +00:00
}
2015-04-18 18:15:40 +00:00
//
// Button Sizes
2015-04-18 18:15:40 +00:00
//
.btn-lg {
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-border-radius-lg);
}
2013-12-04 02:03:04 +00:00
.btn-sm {
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-border-radius-sm);
2013-07-30 00:08:04 +00:00
}
2015-04-18 18:15:40 +00:00
//
// Block button
2015-04-18 18:15:40 +00:00
//
.btn-block {
display: block;
width: 100%;
// Vertically space out multiple block buttons
+ .btn-block {
margin-top: $btn-block-spacing-y;
}
}