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-01-30 23:50:51 -05:00
|
|
|
// Core
|
2012-01-05 13:01:42 -05:00
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2012-10-01 03:19:29 -04:00
|
|
|
padding: 6px 12px;
|
2012-02-07 02:34:03 -05:00
|
|
|
margin-bottom: 0; // For input.btn
|
2012-11-30 17:45:25 -05:00
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
2012-01-27 16:36:08 -05:00
|
|
|
text-align: center;
|
2012-02-07 02:34:03 -05:00
|
|
|
vertical-align: middle;
|
2012-04-16 19:34:08 -04:00
|
|
|
cursor: pointer;
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-background, @btn-background-highlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
|
|
|
border: 1px solid @btn-border;
|
|
|
|
border-bottom-color: darken(@btn-border, 10%);
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-base;
|
2012-09-12 18:48:56 -04:00
|
|
|
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
2012-01-27 14:17:06 -05:00
|
|
|
|
2012-07-07 16:20:50 -04:00
|
|
|
// Hover state
|
|
|
|
&:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
background-position: 0 -15px;
|
2012-01-26 13:01:03 -05:00
|
|
|
|
2012-07-07 16:20:50 -04:00
|
|
|
// transition is only when going to hover, otherwise the background
|
|
|
|
// behind the gradient (there for IE<=9 fallback) gets mismatched
|
|
|
|
.transition(background-position .1s linear);
|
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-07-07 16:20:50 -04:00
|
|
|
// Focus state for keyboard and accessibility
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-07-07 16:20:50 -04:00
|
|
|
// Active state
|
|
|
|
&.active,
|
|
|
|
&:active {
|
|
|
|
background-image: none;
|
|
|
|
outline: 0;
|
2012-09-12 18:48:56 -04:00
|
|
|
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
2012-07-07 16:20:50 -04:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-07-07 16:20:50 -04:00
|
|
|
// Disabled state
|
|
|
|
&.disabled,
|
|
|
|
&[disabled] {
|
|
|
|
cursor: default;
|
|
|
|
background-image: none;
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Button Sizes
|
2012-11-02 04:20:06 -04:00
|
|
|
// -------------------------
|
2012-01-30 23:50:51 -05:00
|
|
|
|
|
|
|
// Large
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-large {
|
2012-11-30 17:45:25 -05:00
|
|
|
padding: @padding-large;
|
|
|
|
font-size: @font-size-large;
|
|
|
|
border-radius: @border-radius-large;
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Small
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-small {
|
2012-11-30 17:45:25 -05:00
|
|
|
padding: @padding-small;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
border-radius: @border-radius-small;
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
|
2012-02-17 00:28:16 -05:00
|
|
|
// Mini
|
|
|
|
.btn-mini {
|
2012-11-30 17:45:25 -05:00
|
|
|
padding: @padding-mini;
|
|
|
|
font-size: @font-size-mini;
|
|
|
|
border-radius: @border-radius-small;
|
2012-02-17 00:28:16 -05:00
|
|
|
}
|
|
|
|
|
2012-08-27 18:39:55 -04:00
|
|
|
|
2012-11-02 04:20:06 -04:00
|
|
|
// Icons in buttons
|
|
|
|
// -------------------------
|
|
|
|
|
2012-11-02 04:39:40 -04:00
|
|
|
.btn [class^="glyphicon-"]::before { vertical-align: -2px; }
|
|
|
|
.btn-small [class^="glyphicon-"]::before,
|
|
|
|
.btn-mini [class^="glyphicon-"]::before { vertical-align: -1px; }
|
2012-11-02 04:20:06 -04:00
|
|
|
|
|
|
|
|
2012-07-27 18:42:58 -04:00
|
|
|
// Block button
|
2012-08-27 18:39:55 -04:00
|
|
|
// -------------------------
|
|
|
|
|
2012-07-27 18:42:58 -04:00
|
|
|
.btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
.box-sizing(border-box);
|
|
|
|
}
|
2012-08-27 18:39:55 -04:00
|
|
|
|
|
|
|
// Vertically space out multiple block buttons
|
2012-07-29 03:30:15 -04:00
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-07-27 18:42:58 -04:00
|
|
|
|
2012-08-27 18:39:55 -04:00
|
|
|
// Specificity overrides
|
|
|
|
input[type="submit"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="button"] {
|
|
|
|
&.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-30 23:50:51 -05:00
|
|
|
|
|
|
|
// Alternate buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Provide *some* extra contrast for those who can get it
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-primary.active,
|
|
|
|
.btn-warning.active,
|
|
|
|
.btn-danger.active,
|
|
|
|
.btn-success.active,
|
2012-02-09 17:08:14 -05:00
|
|
|
.btn-info.active,
|
2012-02-17 23:25:49 -05:00
|
|
|
.btn-inverse.active {
|
2012-01-30 23:50:51 -05:00
|
|
|
color: rgba(255,255,255,.75);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the backgrounds
|
|
|
|
// -------------------------
|
2012-04-23 13:06:35 -04:00
|
|
|
.btn {
|
2012-04-24 04:46:20 -04:00
|
|
|
// reset here as of 2.0.3 due to Recess property order
|
2012-08-01 20:01:29 -04:00
|
|
|
border-color: #c5c5c5;
|
|
|
|
border-color: rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25);
|
2012-04-23 13:06:35 -04:00
|
|
|
}
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-primary {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-primary, @btn-backround-primary-highlight);
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-01-30 23:50:51 -05:00
|
|
|
// Warning appears are orange
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-warning {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-warning, @btn-backround-warning-highlight);
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-danger {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-danger, @btn-backround-danger-highlight);
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
// Success appears as green
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-success {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-success, @btn-backround-success-highlight);
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
|
|
|
// Info appears as a neutral blue
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-info {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-info, @btn-backround-info-highlight);
|
2012-01-30 23:50:51 -05:00
|
|
|
}
|
2012-02-12 18:18:20 -05:00
|
|
|
// Inverse appears as dark gray
|
|
|
|
.btn-inverse {
|
2012-11-30 18:05:23 -05:00
|
|
|
.buttonBackground(@btn-backround-inverse, @btn-backround-inverse-highlight);
|
2012-02-09 17:08:14 -05:00
|
|
|
}
|
2012-01-30 23:50:51 -05:00
|
|
|
|
|
|
|
|
2012-07-18 02:32:52 -04:00
|
|
|
|
|
|
|
// Link buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Make a button look and behave like a link
|
2012-08-18 19:30:47 -04:00
|
|
|
.btn-link,
|
2012-08-31 17:02:18 -04:00
|
|
|
.btn-link:active,
|
|
|
|
.btn-link[disabled] {
|
2012-07-18 02:32:52 -04:00
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
2012-08-19 23:32:29 -04:00
|
|
|
.box-shadow(none);
|
2012-08-18 19:30:47 -04:00
|
|
|
}
|
|
|
|
.btn-link {
|
2012-07-18 02:32:52 -04:00
|
|
|
border-color: transparent;
|
|
|
|
cursor: pointer;
|
2012-11-30 17:37:24 -05:00
|
|
|
color: @link-color;
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 0;
|
2012-07-18 02:32:52 -04:00
|
|
|
}
|
|
|
|
.btn-link:hover {
|
2012-11-30 17:37:24 -05:00
|
|
|
color: @link-color-hover;
|
2012-07-18 02:32:52 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2012-08-31 17:02:18 -04:00
|
|
|
.btn-link[disabled]:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|