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;
|
2014-12-02 14:02:35 -08:00
|
|
|
font-weight: $btn-font-weight;
|
2012-12-19 22:54:04 -08:00
|
|
|
text-align: center;
|
2014-12-11 12:05:29 -08:00
|
|
|
white-space: nowrap;
|
2012-12-19 22:25:56 -08:00
|
|
|
vertical-align: middle;
|
2014-12-11 12:05:29 -08:00
|
|
|
user-select: none;
|
2017-10-19 10:05:07 +03: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 05:33:17 +01:00
|
|
|
@include transition($btn-transition);
|
2012-12-19 22:25:56 -08:00
|
|
|
|
2016-12-26 14:42:29 -08:00
|
|
|
// Share hover and focus styles
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
|
|
|
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
|
|
|
|
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-25 23:15:21 +00:00
|
|
|
// Opinionated: add "hand" cursor to non-disabled .btn elements
|
|
|
|
&:not([disabled]):not(.disabled) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-10-09 23:32:48 +01:00
|
|
|
&:not([disabled]):not(.disabled):active,
|
|
|
|
&:not([disabled]):not(.disabled).active {
|
2016-12-26 14:42:29 -08:00
|
|
|
background-image: none;
|
2017-12-26 16:49:35 -08:00
|
|
|
@include box-shadow($btn-active-box-shadow);
|
2017-12-23 20:33:41 -08:00
|
|
|
|
|
|
|
&:focus {
|
2017-12-26 16:49:35 -08:00
|
|
|
@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,
|
2015-03-29 00:12:19 -07:00
|
|
|
fieldset[disabled] a.btn {
|
|
|
|
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} {
|
2017-08-13 22:33:55 -07:00
|
|
|
@if $color == "light" {
|
|
|
|
@include button-outline-variant($value, $gray-900);
|
|
|
|
} @else {
|
|
|
|
@include button-outline-variant($value, $white);
|
|
|
|
}
|
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;
|
2017-08-13 14:55:28 -07:00
|
|
|
background-color: transparent;
|
2013-07-06 22:13:37 -07:00
|
|
|
|
2017-08-13 14:55:28 -07:00
|
|
|
@include hover {
|
|
|
|
color: $link-hover-color;
|
|
|
|
text-decoration: $link-hover-decoration;
|
2013-07-06 22:13:37 -07:00
|
|
|
background-color: transparent;
|
2017-08-13 14:55:28 -07:00
|
|
|
border-color: transparent;
|
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
|
|
|
border-color: transparent;
|
2017-07-05 10:54:26 +02:00
|
|
|
box-shadow: none;
|
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;
|
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 {
|
2017-10-19 10:05:07 +03: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-07 18:07:06 -07:00
|
|
|
}
|
2017-03-28 09:28:27 -07:00
|
|
|
|
2013-12-03 18:03:04 -08:00
|
|
|
.btn-sm {
|
2017-10-19 10:05:07 +03: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-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%;
|
|
|
|
}
|
|
|
|
}
|