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;
|
|
|
|
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);
|
2013-07-29 02:09:41 -04:00
|
|
|
.user-select(none);
|
2012-12-20 01:25:56 -05:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
|
|
|
|
2013-02-05 22:53:44 -05:00
|
|
|
&:hover,
|
2012-07-07 16:20:50 -04:00
|
|
|
&:focus {
|
2013-08-05 12:02:59 -04:00
|
|
|
color: @btn-default-color;
|
2012-12-20 01:25:56 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
outline: 0;
|
2013-08-15 19:17:44 -04:00
|
|
|
background-image: none;
|
2013-01-12 20:51:57 -05:00
|
|
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2012-12-20 01:25:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2012-12-10 02:42:05 -05:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2013-08-14 21:20:28 -04:00
|
|
|
cursor: not-allowed;
|
2013-03-16 18:03:22 -04:00
|
|
|
pointer-events: none; // Future-proof disabling of clicks
|
2013-02-28 22:46:49 -05:00
|
|
|
.opacity(.65);
|
2012-12-20 01:25:56 -05:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-30 23:50:51 -05:00
|
|
|
|
|
|
|
// Alternate buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-05-07 21:07:06 -04:00
|
|
|
.btn-default {
|
2013-08-12 07:55:09 -04:00
|
|
|
.button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
|
2012-12-20 02:37:33 -05:00
|
|
|
}
|
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
|
|
|
}
|
2013-12-07 14:47:37 -05:00
|
|
|
// Success appears as green
|
|
|
|
.btn-success {
|
|
|
|
.button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
|
|
|
|
}
|
2013-01-18 10:55:17 -05:00
|
|
|
// Warning appears as orange
|
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
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
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
|
|
|
}
|
2013-01-17 22:51:22 -05:00
|
|
|
// Info appears as blue-green
|
|
|
|
.btn-info {
|
2013-08-12 07:55:09 -04:00
|
|
|
.button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
|
2013-01-17 22:51:22 -05:00
|
|
|
}
|
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;
|
|
|
|
cursor: pointer;
|
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;
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
&,
|
|
|
|
&: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 {
|
2013-12-03 21:03:04 -05:00
|
|
|
.button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @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%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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%;
|
|
|
|
}
|
|
|
|
}
|