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;
|
2014-12-03 06:02:35 +08:00
|
|
|
font-weight: $btn-font-weight;
|
2012-12-20 14:54:04 +08:00
|
|
|
text-align: center;
|
2014-12-12 04:05:29 +08:00
|
|
|
white-space: nowrap;
|
2012-12-20 14:25:56 +08:00
|
|
|
vertical-align: middle;
|
2014-12-12 04:05:29 +08:00
|
|
|
user-select: none;
|
2017-10-19 15:05:07 +08:00
|
|
|
border: $btn-border-width solid transparent;
|
|
|
|
@include button-size($btn-padding-y, $btn-padding-x, $font-size-base, $btn-line-height, $btn-border-radius);
|
2016-12-20 12:33:17 +08:00
|
|
|
@include transition($btn-transition);
|
2012-12-20 14:25:56 +08:00
|
|
|
|
2016-12-27 06:42:29 +08:00
|
|
|
// Share hover and focus styles
|
2015-01-01 17:05:01 +08:00
|
|
|
@include hover-focus {
|
|
|
|
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
|
|
|
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-26 07:15:21 +08:00
|
|
|
// Opinionated: add "hand" cursor to non-disabled .btn elements
|
2018-01-16 04:51:01 +08:00
|
|
|
&:not(:disabled):not(.disabled) {
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-26 07:15:21 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-01-16 04:51:01 +08:00
|
|
|
&:not(:disabled):not(.disabled):active,
|
|
|
|
&:not(:disabled):not(.disabled).active {
|
2016-12-27 06:42:29 +08:00
|
|
|
background-image: none;
|
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} {
|
2017-08-14 13:33:55 +08:00
|
|
|
@if $color == "light" {
|
|
|
|
@include button-outline-variant($value, $gray-900);
|
|
|
|
} @else {
|
|
|
|
@include button-outline-variant($value, $white);
|
|
|
|
}
|
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;
|
2014-12-12 04:05:29 +08:00
|
|
|
color: $link-color;
|
2017-08-14 05:55:28 +08:00
|
|
|
background-color: transparent;
|
2013-07-07 13:13:37 +08:00
|
|
|
|
2017-08-14 05:55:28 +08:00
|
|
|
@include hover {
|
|
|
|
color: $link-hover-color;
|
|
|
|
text-decoration: $link-hover-decoration;
|
2013-07-07 13:13:37 +08:00
|
|
|
background-color: transparent;
|
2017-08-14 05:55:28 +08:00
|
|
|
border-color: transparent;
|
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;
|
2013-07-07 13:13:37 +08:00
|
|
|
border-color: transparent;
|
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;
|
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 {
|
2017-10-19 15:05:07 +08:00
|
|
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-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 {
|
2017-10-19 15:05:07 +08:00
|
|
|
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $btn-line-height-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
|
|
|
}
|
|
|
|
|
|
|
|
// Specificity overrides
|
|
|
|
input[type="submit"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="button"] {
|
|
|
|
&.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|