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