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