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