twbs--bootstrap/scss/_buttons.scss

175 lines
3.4 KiB
SCSS
Raw Normal View History

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