2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Buttons
|
|
|
|
// --------------------------------------------------
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-26 20:10:07 +01:00
|
|
|
|
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;
|
2014-12-02 23:02:35 +01:00
|
|
|
font-weight: $btn-font-weight;
|
2012-12-20 07:54:04 +01:00
|
|
|
text-align: center;
|
2014-12-11 21:05:29 +01:00
|
|
|
white-space: nowrap;
|
2012-12-20 07:25:56 +01:00
|
|
|
vertical-align: middle;
|
2014-07-03 12:53:23 +02:00
|
|
|
touch-action: manipulation;
|
2012-12-20 07:25:56 +01:00
|
|
|
cursor: pointer;
|
2014-12-11 21:05:29 +01:00
|
|
|
user-select: none;
|
2014-12-02 23:02:35 +01:00
|
|
|
border: $border-width solid transparent;
|
2015-06-23 08:24:32 +02:00
|
|
|
@include button-size($padding-y, $padding-x, $font-size-base, $line-height, $btn-border-radius);
|
2014-12-02 23:02:35 +01:00
|
|
|
transition: all .2s ease-in-out;
|
2012-12-20 07:25:56 +01:00
|
|
|
|
2014-01-12 02:27:34 +01:00
|
|
|
&,
|
|
|
|
&:active,
|
2014-02-09 01:56:59 +01:00
|
|
|
&.active {
|
2014-07-07 09:56:06 +02:00
|
|
|
&:focus,
|
|
|
|
&.focus {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include tab-focus();
|
2014-01-12 02:27:34 +01:00
|
|
|
}
|
2013-12-18 23:29:33 +01:00
|
|
|
}
|
|
|
|
|
2015-01-01 10:05:01 +01:00
|
|
|
@include hover-focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-07-07 09:56:06 +02:00
|
|
|
&.focus {
|
2013-12-18 23:29:33 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
background-image: none;
|
2014-12-11 21:05:29 +01:00
|
|
|
outline: 0;
|
2014-12-02 23:02:35 +01:00
|
|
|
@include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2013-12-18 23:29:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2014-12-22 22:33:58 +01:00
|
|
|
&:disabled,
|
2013-12-18 23:29:33 +01:00
|
|
|
fieldset[disabled] & {
|
2014-12-11 21:05:29 +01:00
|
|
|
cursor: $cursor-disabled;
|
2014-07-08 11:04:48 +02:00
|
|
|
opacity: .65;
|
2014-12-02 23:02:35 +01:00
|
|
|
@include box-shadow(none);
|
2013-12-18 23:29:33 +01:00
|
|
|
}
|
2015-03-29 09:12:19 +02:00
|
|
|
}
|
2015-03-17 18:24:31 +01:00
|
|
|
|
2015-03-29 09:12:19 +02:00
|
|
|
// Future-proof disabling of clicks on `<a>` elements
|
|
|
|
a.btn.disaabled,
|
|
|
|
fieldset[disabled] a.btn {
|
|
|
|
pointer-events: 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
|
|
|
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-primary {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-primary-color, $btn-primary-bg, $btn-primary-border);
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2014-07-09 02:09:47 +02:00
|
|
|
.btn-secondary {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-secondary-color, $btn-secondary-bg, $btn-secondary-border);
|
2014-07-09 02:09:47 +02:00
|
|
|
}
|
2014-07-09 02:30:11 +02:00
|
|
|
.btn-info {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-info-color, $btn-info-bg, $btn-info-border);
|
2014-07-09 02:30:11 +02:00
|
|
|
}
|
2013-12-07 20:47:37 +01:00
|
|
|
.btn-success {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-success-color, $btn-success-bg, $btn-success-border);
|
2013-12-07 20:47:37 +01:00
|
|
|
}
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-warning {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-warning-color, $btn-warning-bg, $btn-warning-border);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-danger {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include button-variant($btn-danger-color, $btn-danger-bg, $btn-danger-border);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
2015-08-10 07:48:48 +02:00
|
|
|
// Remove all backgrounds
|
|
|
|
.btn-outline {
|
|
|
|
background-color: $body-bg;
|
|
|
|
background-image: transparent;
|
|
|
|
}
|
|
|
|
|
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 {
|
2013-01-13 02:51:57 +01:00
|
|
|
font-weight: normal;
|
2014-12-11 21:05:29 +01:00
|
|
|
color: $link-color;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: 0;
|
2013-07-07 07:13:37 +02:00
|
|
|
|
|
|
|
&,
|
|
|
|
&:active,
|
2014-08-04 19:01:20 +02:00
|
|
|
&.active,
|
2014-12-22 22:33:58 +01:00
|
|
|
&:disabled,
|
2013-07-07 07:13:37 +02:00
|
|
|
fieldset[disabled] & {
|
|
|
|
background-color: transparent;
|
2014-12-02 23:02:35 +01:00
|
|
|
@include box-shadow(none);
|
2013-07-07 07:13:37 +02:00
|
|
|
}
|
|
|
|
&,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
2015-01-01 10:05:01 +01:00
|
|
|
@include hover {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
@include hover-focus {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $link-hover-color;
|
2015-01-19 23:48:12 +01:00
|
|
|
text-decoration: $link-hover-decoration;
|
2013-07-07 07:13:37 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
2014-12-22 22:33:58 +01:00
|
|
|
&:disabled,
|
2012-12-10 08:42:05 +01:00
|
|
|
fieldset[disabled] & {
|
2015-01-01 10:05:01 +01:00
|
|
|
@include hover-focus {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $btn-link-disabled-color;
|
2012-12-10 08:42:05 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2013-08-12 14:07:19 +02:00
|
|
|
// line-height: ensure even-numbered height of button next to large input
|
2015-06-23 01:33:17 +02:00
|
|
|
@include button-size($padding-lg-y, $padding-lg-x, $font-size-lg, $line-height-lg, $btn-border-radius-lg);
|
2013-05-08 03:07:06 +02:00
|
|
|
}
|
2013-12-04 03:03:04 +01:00
|
|
|
.btn-sm {
|
2013-08-12 14:07:19 +02:00
|
|
|
// line-height: ensure proper height of button next to small input
|
2015-06-23 01:33:17 +02:00
|
|
|
@include button-size($padding-sm-y, $padding-sm-x, $font-size-sm, $line-height-sm, $btn-border-radius-sm);
|
2013-05-08 03:07:06 +02:00
|
|
|
}
|
2013-08-04 06:39:57 +02:00
|
|
|
.btn-xs {
|
2015-06-23 01:33:17 +02:00
|
|
|
@include button-size($padding-xs-y, $padding-xs-x, $font-size-xs, $line-height-sm, $btn-border-radius-sm);
|
2013-07-30 02:08:04 +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
|
|
|
// Block button
|
2015-04-18 20:15:40 +02:00
|
|
|
//
|
2013-05-08 03:07:06 +02: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%;
|
|
|
|
}
|
|
|
|
}
|