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
|
|
|
// Core styles
|
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2012-12-21 03:50:28 -05:00
|
|
|
padding: 7px 13px;
|
2012-12-20 01:25:56 -05:00
|
|
|
margin-bottom: 0; // For input.btn
|
|
|
|
font-size: @font-size-base;
|
2012-12-21 03:50:28 -05:00
|
|
|
font-weight: bold;
|
2012-12-20 01:25:56 -05:00
|
|
|
line-height: @line-height-base;
|
2012-12-20 01:54:04 -05:00
|
|
|
text-align: center;
|
2012-12-20 01:25:56 -05:00
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
2012-12-21 03:50:28 -05:00
|
|
|
border: 0;
|
2012-12-20 01:25:56 -05:00
|
|
|
border-radius: @border-radius-base;
|
2012-12-21 03:50:28 -05:00
|
|
|
//.box-shadow(inset 0 1px 0 rgba(255,255,255,.25));
|
2012-12-20 01:25:56 -05:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
outline: 0;
|
2012-12-20 01:54:04 -05:00
|
|
|
background-image: none;
|
2012-12-20 02:37:33 -05:00
|
|
|
.box-shadow(~"inset 0 3px 5px rgba(0,0,0,.125), 0 1px 0 rgba(255,255,255,.1)");
|
2012-12-20 01:25:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2012-12-10 02:42:05 -05:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2012-12-20 01:25:56 -05:00
|
|
|
cursor: default;
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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-12-07 12:51:01 -05:00
|
|
|
.btn-mini [class^="icon-"],
|
|
|
|
.btn-mini [class*=" icon-"] {
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
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
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-12-20 02:37:33 -05:00
|
|
|
.btn {
|
2012-12-21 03:50:28 -05:00
|
|
|
color: #fff;
|
|
|
|
background-color: #ccc;
|
|
|
|
//.buttonBackground(@btn-background, @btn-background-highlight, @gray, 0 1px 0 rgba(255,255,255,.75));
|
2012-12-20 02:37:33 -05:00
|
|
|
}
|
|
|
|
// Primary appears as blue
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-primary {
|
2012-12-21 03:50:28 -05:00
|
|
|
background-color: @btn-background-primary;
|
|
|
|
//.buttonBackground(@btn-background-primary, @btn-background-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-12-21 03:50:28 -05:00
|
|
|
background-color: @btn-background-warning;
|
|
|
|
//.buttonBackground(@btn-background-warning, @btn-background-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-12-21 03:50:28 -05:00
|
|
|
background-color: @btn-background-danger;
|
|
|
|
//.buttonBackground(@btn-background-danger, @btn-background-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-12-21 03:50:28 -05:00
|
|
|
background-color: @btn-background-success;
|
|
|
|
//.buttonBackground(@btn-background-success, @btn-background-success-highlight);
|
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,
|
2012-12-10 02:42:05 -05:00
|
|
|
.btn-link[disabled],
|
|
|
|
fieldset[disabled] .btn-link {
|
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-12-10 02:42:05 -05:00
|
|
|
.btn-link {
|
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
|
|
|
&:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2012-08-31 17:02:18 -04:00
|
|
|
}
|