2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Buttons
|
|
|
|
// --------------------------------------------------
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-26 11:10:07 -08:00
|
|
|
|
|
|
|
// Base styles
|
2012-01-30 20:50:51 -08:00
|
|
|
// --------------------------------------------------
|
2012-01-26 11:10:07 -08:00
|
|
|
|
2012-12-19 22:25:56 -08:00
|
|
|
// Core styles
|
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2013-05-14 23:21:30 -07:00
|
|
|
padding: @padding-base-vertical @padding-base-horizontal;
|
2012-12-19 22:25:56 -08:00
|
|
|
margin-bottom: 0; // For input.btn
|
|
|
|
font-size: @font-size-base;
|
2013-08-05 16:03:10 -07:00
|
|
|
font-weight: @btn-font-weight;
|
2012-12-19 22:25:56 -08:00
|
|
|
line-height: @line-height-base;
|
2012-12-19 22:54:04 -08:00
|
|
|
text-align: center;
|
2012-12-19 22:25:56 -08:00
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
2013-05-07 18:07:06 -07:00
|
|
|
border: 1px solid transparent;
|
2012-12-19 22:25:56 -08:00
|
|
|
border-radius: @border-radius-base;
|
2013-02-28 21:19:02 -08:00
|
|
|
white-space: nowrap;
|
2013-07-29 14:09:41 +08:00
|
|
|
.user-select(none);
|
2012-12-19 22:25:56 -08:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
|
|
|
|
2013-02-05 19:53:44 -08:00
|
|
|
&:hover,
|
2012-07-07 23:20:50 +03:00
|
|
|
&:focus {
|
2013-08-05 09:02:59 -07:00
|
|
|
color: @btn-default-color;
|
2012-12-19 22:25:56 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
outline: 0;
|
2013-08-15 16:17:44 -07:00
|
|
|
background-image: none;
|
2013-01-12 17:51:57 -08:00
|
|
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2012-12-19 22:25:56 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2012-12-09 23:42:05 -08:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2013-08-14 18:20:28 -07:00
|
|
|
cursor: not-allowed;
|
2013-03-16 15:03:22 -07:00
|
|
|
pointer-events: none; // Future-proof disabling of clicks
|
2013-02-28 19:46:49 -08:00
|
|
|
.opacity(.65);
|
2012-12-19 22:25:56 -08:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-01-30 20:50:51 -08:00
|
|
|
|
|
|
|
// Alternate buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-05-07 18:07:06 -07:00
|
|
|
.btn-default {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
|
2012-12-19 23:37:33 -08:00
|
|
|
}
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-primary {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
|
2012-01-05 10:01:42 -08:00
|
|
|
}
|
2013-01-18 11:55:17 -04:00
|
|
|
// Warning appears as orange
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-warning {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
|
2012-01-30 20:50:51 -08:00
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-danger {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
|
2012-01-30 20:50:51 -08:00
|
|
|
}
|
|
|
|
// Success appears as green
|
2012-01-30 21:15:57 -08:00
|
|
|
.btn-success {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
|
2012-01-30 20:50:51 -08:00
|
|
|
}
|
2013-01-17 19:51:22 -08:00
|
|
|
// Info appears as blue-green
|
|
|
|
.btn-info {
|
2013-08-12 13:55:09 +02:00
|
|
|
.button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
|
2013-01-17 19:51:22 -08:00
|
|
|
}
|
2012-01-30 20:50:51 -08:00
|
|
|
|
2012-07-17 23:32:52 -07:00
|
|
|
|
|
|
|
// Link buttons
|
2013-05-07 18:07:06 -07:00
|
|
|
// -------------------------
|
2012-07-17 23:32:52 -07:00
|
|
|
|
|
|
|
// Make a button look and behave like a link
|
2012-08-18 16:30:47 -07:00
|
|
|
.btn-link {
|
2012-11-30 14:37:24 -08:00
|
|
|
color: @link-color;
|
2013-01-12 17:51:57 -08:00
|
|
|
font-weight: normal;
|
|
|
|
cursor: pointer;
|
2012-09-30 23:11:54 -07:00
|
|
|
border-radius: 0;
|
2013-07-06 22:13:37 -07: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-09 23:42:05 -08:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2013-02-05 19:53:44 -08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-28 17:32:08 +05:00
|
|
|
color: @btn-link-disabled-color;
|
2012-12-09 23:42:05 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2012-08-31 14:02:18 -07:00
|
|
|
}
|
2013-05-07 18:07:06 -07:00
|
|
|
|
|
|
|
|
|
|
|
// Button Sizes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-08-03 21:39:57 -07:00
|
|
|
.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-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
|
2013-05-07 18:07:06 -07:00
|
|
|
}
|
2013-08-03 21:39:57 -07:00
|
|
|
.btn-sm,
|
|
|
|
.btn-xs {
|
2013-08-12 14:07:19 +02: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 18:07:06 -07:00
|
|
|
}
|
2013-08-03 21:39:57 -07:00
|
|
|
.btn-xs {
|
2013-08-16 11:08:29 -07:00
|
|
|
padding: 1px 5px;
|
2013-07-29 17:08:04 -07:00
|
|
|
}
|
2013-05-07 18:07:06 -07: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%;
|
|
|
|
}
|
|
|
|
}
|