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;
|
2019-08-30 09:42:41 +02:00
|
|
|
line-height: $btn-line-height;
|
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;
|
2020-04-14 02:48:19 +02:00
|
|
|
cursor: if($enable-button-pointers, pointer, null);
|
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;
|
2019-08-30 09:42:41 +02:00
|
|
|
@include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius);
|
2016-12-20 05:33:17 +01:00
|
|
|
@include transition($btn-transition);
|
2012-12-20 07:25:56 +01:00
|
|
|
|
2018-09-18 01:10:07 +02:00
|
|
|
&:hover {
|
2018-08-02 20:51:18 +02:00
|
|
|
color: $body-color;
|
2020-03-20 09:35:55 +01:00
|
|
|
text-decoration: if($link-hover-decoration == underline, none, null);
|
2015-01-01 10:05:01 +01:00
|
|
|
}
|
2017-12-28 01:42:59 +01:00
|
|
|
|
2020-06-04 15:59:24 +02:00
|
|
|
.btn-check:focus + &,
|
2020-05-02 11:11:24 +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
|
|
|
}
|
|
|
|
|
2020-06-04 15:59:24 +02:00
|
|
|
.btn-check:checked + &,
|
|
|
|
.btn-check:active + &,
|
2019-12-27 17:40:06 +01:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2017-12-27 01:49:35 +01:00
|
|
|
@include box-shadow($btn-active-box-shadow);
|
2017-12-24 05:33:41 +01:00
|
|
|
|
|
|
|
&:focus {
|
2017-12-27 01:49:35 +01:00
|
|
|
@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-17 18:24:31 +01:00
|
|
|
|
2019-12-27 17:40:06 +01:00
|
|
|
&:disabled,
|
|
|
|
&.disabled,
|
2020-06-12 10:11:36 +02:00
|
|
|
fieldset:disabled & {
|
2019-12-27 17:40:06 +01:00
|
|
|
pointer-events: none;
|
|
|
|
opacity: $btn-disabled-opacity;
|
|
|
|
@include box-shadow(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;
|
2019-04-23 15:12:51 +02:00
|
|
|
color: $btn-link-color;
|
2019-02-06 22:33:03 +01:00
|
|
|
text-decoration: $link-decoration;
|
2013-07-07 07:13:37 +02:00
|
|
|
|
2018-09-18 01:10:07 +02:00
|
|
|
&:hover {
|
2019-04-23 15:12:51 +02:00
|
|
|
color: $btn-link-hover-color;
|
2017-08-13 23:55:28 +02:00
|
|
|
text-decoration: $link-hover-decoration;
|
2013-07-07 07:13:37 +02:00
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2020-05-02 11:11:24 +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;
|
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 {
|
2019-08-30 09:42:41 +02:00
|
|
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-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 {
|
2019-08-30 09:42:41 +02:00
|
|
|
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-border-radius-sm);
|
2013-07-30 02:08:04 +02:00
|
|
|
}
|