0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/scss/_buttons.scss

143 lines
2.6 KiB
SCSS
Raw Normal View History

2017-10-03 06:34:56 +03:00
// stylelint-disable selector-no-qualifying-type
2016-02-06 12:28:18 -08:00
2015-04-18 11:15:40 -07:00
//
// Base styles
2015-04-18 11:15:40 -07:00
//
2012-12-19 22:25:56 -08:00
.btn {
display: inline-block;
font-family: $btn-font-family;
2014-12-02 14:02:35 -08:00
font-weight: $btn-font-weight;
2018-08-02 20:51:18 +02:00
color: $body-color;
2012-12-19 22:54:04 -08:00
text-align: center;
text-decoration: if($link-decoration == none, null, none);
white-space: $btn-white-space;
2012-12-19 22:25:56 -08:00
vertical-align: middle;
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-line-height, $btn-border-radius);
@include transition($btn-transition);
2012-12-19 22:25:56 -08:00
@include hover() {
2018-08-02 20:51:18 +02:00
color: $body-color;
text-decoration: none;
}
2017-12-27 16:42:59 -08:00
&:focus,
&.focus {
outline: 0;
box-shadow: $btn-focus-box-shadow;
2013-12-18 14:29:33 -08:00
}
// Disabled comes first so active can properly restyle
2013-12-18 14:29:33 -08:00
&.disabled,
&:disabled {
opacity: $btn-disabled-opacity;
2014-12-02 14:02:35 -08:00
@include box-shadow(none);
2013-12-18 14:29:33 -08:00
}
2020-02-03 19:54:29 +01:00
&:not(:disabled):not(.disabled) {
cursor: if($enable-pointer-cursor-for-buttons, pointer, null);
2020-02-03 19:54:29 +01:00
&:active,
&.active {
@include box-shadow($btn-active-box-shadow);
&:focus {
@include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
}
}
}
2015-03-29 00:12:19 -07:00
}
2015-03-29 00:12:19 -07:00
// Future-proof disabling of clicks on `<a>` elements
2015-08-19 23:09:17 +01:00
a.btn.disabled,
fieldset:disabled a.btn {
2015-03-29 00:12:19 -07:00
pointer-events: none;
2012-12-19 22:25:56 -08:00
}
2012-01-30 20:50:51 -08:00
2015-04-18 11:15:40 -07:00
//
2012-01-30 20:50:51 -08:00
// Alternate buttons
2015-04-18 11:15:40 -07:00
//
2012-01-30 20:50:51 -08:00
@each $color, $value in $theme-colors {
.btn-#{$color} {
@include button-variant($value, $value);
}
2012-01-30 20:50:51 -08:00
}
@each $color, $value in $theme-colors {
.btn-outline-#{$color} {
2018-01-17 15:45:25 -08:00
@include button-outline-variant($value);
}
2015-08-09 22:48:48 -07:00
}
2015-04-18 11:15:40 -07:00
//
// Link buttons
2015-04-18 11:15:40 -07:00
//
// Make a button look and behave like a link
.btn-link {
font-weight: $font-weight-normal;
color: $link-color;
text-decoration: $link-decoration;
2013-07-06 22:13:37 -07:00
@include hover() {
color: $link-hover-color;
text-decoration: $link-hover-decoration;
2013-07-06 22:13:37 -07:00
}
2013-07-06 22:13:37 -07:00
&:focus,
&.focus {
text-decoration: $link-hover-decoration;
2013-07-06 22:13:37 -07:00
}
&:disabled,
&.disabled {
color: $btn-link-disabled-color;
pointer-events: none;
}
// No need for an active state here
2012-08-31 14:02:18 -07:00
}
2015-04-18 11:15:40 -07:00
//
// Button Sizes
2015-04-18 11:15:40 -07:00
//
.btn-lg {
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
}
2013-12-03 18:03:04 -08:00
.btn-sm {
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-line-height-sm, $btn-border-radius-sm);
2013-07-29 17:08:04 -07:00
}
2015-04-18 11:15:40 -07:00
//
// Block button
2015-04-18 11:15:40 -07:00
//
.btn-block {
display: block;
width: 100%;
// Vertically space out multiple block buttons
+ .btn-block {
margin-top: $btn-block-spacing-y;
}
}
// Specificity overrides
input[type="submit"],
input[type="reset"],
input[type="button"] {
&.btn-block {
width: 100%;
}
}