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