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