0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/less/_buttons.less

157 lines
3.3 KiB
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02:00
//
// Buttons
// --------------------------------------------------
// Base styles
2012-01-31 05:50:51 +01:00
// --------------------------------------------------
2012-12-20 07:25:56 +01:00
.btn {
display: inline-block;
margin-bottom: 0; // For input.btn
font-weight: @btn-font-weight;
2012-12-20 07:54:04 +01:00
text-align: center;
2012-12-20 07:25:56 +01:00
vertical-align: middle;
touch-action: manipulation;
2012-12-20 07:25:56 +01:00
cursor: pointer;
background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
2014-07-14 08:33:54 +02:00
border: @border-width solid transparent;
white-space: nowrap;
.button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);
user-select: none;
.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 {
&:focus,
&.focus {
2014-01-12 02:27:34 +01:00
.tab-focus();
}
2013-12-18 23:29:33 +01:00
}
&:hover,
&:focus,
&.focus {
2013-12-18 23:29:33 +01:00
text-decoration: none;
}
&:active,
&.active {
outline: 0;
background-image: none;
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
2013-12-18 23:29:33 +01:00
}
&.disabled,
&[disabled],
fieldset[disabled] & {
cursor: not-allowed;
pointer-events: none; // Future-proof disabling of clicks
opacity: .65;
.box-shadow(none);
2013-12-18 23:29:33 +01:00
}
2012-12-20 07:25:56 +01:00
}
2012-01-31 05:50:51 +01:00
// Alternate buttons
// --------------------------------------------------
.btn-primary {
.button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
}
.btn-secondary {
.button-variant(@btn-secondary-color; @btn-secondary-bg; @btn-secondary-border);
}
2014-07-09 02:30:11 +02:00
.btn-info {
.button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
}
.btn-success {
.button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
}
.btn-warning {
.button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
2012-01-31 05:50:51 +01:00
}
.btn-danger {
.button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
2012-01-31 05:50:51 +01:00
}
// Link buttons
// -------------------------
// Make a button look and behave like a link
.btn-link {
2012-11-30 23:37:24 +01:00
color: @link-color;
2013-01-13 02:51:57 +01:00
font-weight: normal;
border-radius: 0;
2013-07-07 07:13:37 +02:00
&,
&:active,
&.active,
2013-07-07 07:13:37 +02:00
&[disabled],
fieldset[disabled] & {
background-color: transparent;
.box-shadow(none);
2013-07-07 07:13:37 +02:00
}
&,
&:hover,
&:focus,
&:active {
border-color: transparent;
}
&:hover,
&:focus {
color: @link-hover-color;
text-decoration: underline;
background-color: transparent;
}
&[disabled],
fieldset[disabled] & {
&:hover,
&:focus {
color: @btn-link-disabled-color;
text-decoration: none;
}
}
2012-08-31 23:02:18 +02:00
}
// Button Sizes
// --------------------------------------------------
.btn-lg {
2013-08-12 14:07:19 +02:00
// line-height: ensure even-numbered height of button next to large input
.button-size(@padding-lg-vertical; @padding-lg-horizontal; @font-size-lg; @line-height-lg; @border-radius-lg);
}
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
.button-size(@padding-sm-vertical; @padding-smhorizontal; @font-size-sm; @line-height-sm; @border-radius-sm);
}
.btn-xs {
.button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-xs; @line-height-sm; @border-radius-sm);
2013-07-30 02:08:04 +02:00
}
// Block button
// --------------------------------------------------
.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%;
}
}