twbs--bootstrap/less/buttons.less

175 lines
3.1 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Buttons
// --------------------------------------------------
// Base styles
2012-01-31 04:50:51 +00:00
// --------------------------------------------------
2012-12-20 06:25:56 +00:00
// Core styles
.btn {
display: inline-block;
2013-01-13 01:51:57 +00:00
padding: 6px 12px;
2012-12-20 06:25:56 +00:00
margin-bottom: 0; // For input.btn
font-size: @font-size-base;
font-weight: 500;
2012-12-20 06:25:56 +00:00
line-height: @line-height-base;
2012-12-20 06:54:04 +00:00
text-align: center;
2012-12-20 06:25:56 +00:00
vertical-align: middle;
cursor: pointer;
2013-01-13 01:51:57 +00:00
border: 1px solid @btn-border;
2012-12-20 06:25:56 +00:00
border-radius: @border-radius-base;
&:focus {
.tab-focus();
}
&:hover,
&:focus {
color: #fff;
2012-12-20 06:25:56 +00:00
text-decoration: none;
}
&:active,
&.active {
outline: 0;
2012-12-20 06:54:04 +00:00
background-image: none;
2013-01-13 01:51:57 +00:00
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
2012-12-20 06:25:56 +00:00
}
&.disabled,
&[disabled],
fieldset[disabled] & {
2012-12-20 06:25:56 +00:00
cursor: default;
.opacity(.65);
2012-12-20 06:25:56 +00:00
.box-shadow(none);
}
}
2012-01-31 04:50:51 +00:00
// Button Sizes
// -------------------------
2012-01-31 04:50:51 +00:00
// Large
.btn-large {
padding: @padding-large;
font-size: @font-size-large;
border-radius: @border-radius-large;
2012-01-31 04:50:51 +00:00
}
// Small
.btn-small {
padding: @padding-small;
font-size: @font-size-small;
border-radius: @border-radius-small;
2012-01-31 04:50:51 +00:00
}
2012-02-17 05:28:16 +00:00
// Mini
.btn-mini {
padding: @padding-mini;
font-size: @font-size-mini;
border-radius: @border-radius-small;
2012-02-17 05:28:16 +00:00
}
// Icons in buttons
// -------------------------
// TODO: figure this shit out
// Block button
// -------------------------
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
.box-sizing(border-box);
}
// Vertically space out multiple block buttons
2012-07-29 07:30:15 +00:00
.btn-block + .btn-block {
margin-top: 5px;
}
// Specificity overrides
input[type="submit"],
input[type="reset"],
input[type="button"] {
&.btn-block {
width: 100%;
}
}
2012-01-31 04:50:51 +00:00
// Alternate buttons
// --------------------------------------------------
.btn {
color: @btn-color;
.btn-pseudo-states(@btn-background, @btn-border);
}
.btn-primary {
.btn-pseudo-states(@btn-background-primary, @btn-border-primary);
}
// Warning appears as orange
.btn-warning {
.btn-pseudo-states(@btn-background-warning, @btn-border-warning);
2012-01-31 04:50:51 +00:00
}
// Danger and error appear as red
.btn-danger {
.btn-pseudo-states(@btn-background-danger, @btn-border-danger);
2012-01-31 04:50:51 +00:00
}
// Success appears as green
.btn-success {
.btn-pseudo-states(@btn-background-success, @btn-border-success);
2012-01-31 04:50:51 +00:00
}
2013-01-18 03:51:22 +00:00
// Info appears as blue-green
.btn-info {
.btn-pseudo-states(@btn-background-info, @btn-border-info);
2013-01-18 03:51:22 +00:00
}
2012-01-31 04:50:51 +00:00
// Link buttons
// --------------------------------------------------
// Make a button look and behave like a link
.btn-link,
2012-08-31 21:02:18 +00:00
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
background-image: none;
.box-shadow(none);
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
.btn-link {
2012-11-30 22:37:24 +00:00
color: @link-color;
2013-01-13 01:51:57 +00:00
font-weight: normal;
cursor: pointer;
border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
2012-11-30 22:37:24 +00:00
color: @link-color-hover;
text-decoration: underline;
background-color: transparent;
}
.btn-link {
&[disabled],
fieldset[disabled] & {
&:hover,
&:focus {
color: @grayDark;
text-decoration: none;
}
}
2012-08-31 21:02:18 +00:00
}