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-07-03 12:53:23 +02:00
|
|
|
touch-action: manipulation;
|
2012-12-19 22:25:56 -08:00
|
|
|
cursor: pointer;
|
2014-12-11 12:05:29 -08:00
|
|
|
user-select: none;
|
2014-12-02 14:02:35 -08:00
|
|
|
border: $border-width solid transparent;
|
2015-08-13 23:04:16 -07:00
|
|
|
@include button-size($btn-padding-y, $btn-padding-x, $font-size-base, $line-height, $btn-border-radius);
|
2015-08-13 23:13:54 -07:00
|
|
|
@include transition(all .2s ease-in-out);
|
2012-12-19 22:25:56 -08:00
|
|
|
|
2014-01-11 17:27:34 -08:00
|
|
|
&,
|
|
|
|
&:active,
|
2014-02-08 16:56:59 -08:00
|
|
|
&.active {
|
2014-07-07 00:56:06 -07:00
|
|
|
&:focus,
|
|
|
|
&.focus {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include tab-focus();
|
2014-01-11 17:27:34 -08:00
|
|
|
}
|
2013-12-18 14:29:33 -08:00
|
|
|
}
|
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-07-07 00:56:06 -07:00
|
|
|
&.focus {
|
2013-12-18 14:29:33 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
background-image: none;
|
2014-12-11 12:05:29 -08:00
|
|
|
outline: 0;
|
2014-12-02 14:02:35 -08:00
|
|
|
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2013-12-18 14:29:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2014-12-22 13:33:58 -08:00
|
|
|
&:disabled,
|
2013-12-18 14:29:33 -08:00
|
|
|
fieldset[disabled] & {
|
2014-12-11 12:05:29 -08:00
|
|
|
cursor: $cursor-disabled;
|
2014-07-08 02:04:48 -07:00
|
|
|
opacity: .65;
|
2014-12-02 14:02:35 -08:00
|
|
|
@include box-shadow(none);
|
2013-12-18 14:29:33 -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
|
|
|
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-primary {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
2012-01-05 10:01:42 -08:00
|
|
|
}
|
2014-07-08 17:09:47 -07:00
|
|
|
.btn-secondary {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-secondary-color, $btn-secondary-bg, $btn-secondary-border);
|
2014-07-08 17:09:47 -07:00
|
|
|
}
|
2014-07-08 17:30:11 -07:00
|
|
|
.btn-info {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
2014-07-08 17:30:11 -07:00
|
|
|
}
|
2013-12-07 11:47:37 -08:00
|
|
|
.btn-success {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
2013-12-07 11:47:37 -08:00
|
|
|
}
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-warning {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
2012-01-30 20:50:51 -08:00
|
|
|
}
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-danger {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
2012-01-30 20:50:51 -08:00
|
|
|
}
|
|
|
|
|
2015-08-09 22:48:48 -07:00
|
|
|
// Remove all backgrounds
|
2015-08-09 23:45:36 -07:00
|
|
|
.btn-primary-outline {
|
|
|
|
@include button-outline-variant($btn-primary-bg);
|
|
|
|
}
|
|
|
|
.btn-secondary-outline {
|
|
|
|
@include button-outline-variant($btn-secondary-border);
|
|
|
|
}
|
|
|
|
.btn-info-outline {
|
|
|
|
@include button-outline-variant($btn-info-bg);
|
|
|
|
}
|
|
|
|
.btn-success-outline {
|
|
|
|
@include button-outline-variant($btn-success-bg);
|
|
|
|
}
|
|
|
|
.btn-warning-outline {
|
|
|
|
@include button-outline-variant($btn-warning-bg);
|
|
|
|
}
|
|
|
|
.btn-danger-outline {
|
|
|
|
@include button-outline-variant($btn-danger-bg);
|
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 {
|
2013-01-12 17:51:57 -08:00
|
|
|
font-weight: normal;
|
2014-12-11 12:05:29 -08:00
|
|
|
color: $link-color;
|
2012-09-30 23:11:54 -07:00
|
|
|
border-radius: 0;
|
2013-07-06 22:13:37 -07:00
|
|
|
|
|
|
|
&,
|
|
|
|
&:active,
|
2014-08-04 10:01:20 -07:00
|
|
|
&.active,
|
2014-12-22 13:33:58 -08:00
|
|
|
&:disabled,
|
2013-07-06 22:13:37 -07:00
|
|
|
fieldset[disabled] & {
|
|
|
|
background-color: transparent;
|
2014-12-02 14:02:35 -08:00
|
|
|
@include box-shadow(none);
|
2013-07-06 22:13:37 -07:00
|
|
|
}
|
|
|
|
&,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
@include hover-focus {
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $link-hover-color;
|
2015-01-19 14:48:12 -08:00
|
|
|
text-decoration: $link-hover-decoration;
|
2013-07-06 22:13:37 -07:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
2014-12-22 13:33:58 -08:00
|
|
|
&:disabled,
|
2012-12-09 23:42:05 -08:00
|
|
|
fieldset[disabled] & {
|
2015-01-01 01:05:01 -08:00
|
|
|
@include hover-focus {
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $btn-link-disabled-color;
|
2012-12-09 23:42:05 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2013-08-12 14:07:19 +02:00
|
|
|
// line-height: ensure even-numbered height of button next to large input
|
2015-08-13 23:04:16 -07:00
|
|
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $line-height-lg, $btn-border-radius-lg);
|
2013-05-07 18:07:06 -07:00
|
|
|
}
|
2013-12-03 18:03:04 -08:00
|
|
|
.btn-sm {
|
2013-08-12 14:07:19 +02:00
|
|
|
// line-height: ensure proper height of button next to small input
|
2015-08-13 23:04:16 -07:00
|
|
|
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $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%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vertically space out multiple block buttons
|
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Specificity overrides
|
|
|
|
input[type="submit"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="button"] {
|
|
|
|
&.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|