twbs--bootstrap/less/buttons.less

178 lines
3.2 KiB
Plaintext
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Buttons
// --------------------------------------------------
// Base styles
2012-01-30 23:50:51 -05:00
// --------------------------------------------------
2012-12-20 01:25:56 -05:00
// Core styles
.btn {
display: inline-block;
2013-01-12 20:51:57 -05:00
padding: 6px 12px;
2012-12-20 01:25:56 -05:00
margin-bottom: 0; // For input.btn
font-size: @font-size-base;
font-weight: 500;
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;
2013-01-12 20:51:57 -05:00
border: 1px solid @btn-border;
2012-12-20 01:25:56 -05:00
border-radius: @border-radius-base;
&:focus {
.tab-focus();
}
&:hover {
color: #fff;
2012-12-20 01:25:56 -05:00
text-decoration: none;
}
&:active,
&.active {
outline: 0;
2012-12-20 01:54:04 -05: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,
&[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-01-30 23:50:51 -05:00
// Large
.btn-large {
padding: @padding-large;
font-size: @font-size-large;
border-radius: @border-radius-large;
2012-01-30 23:50:51 -05:00
}
// Small
.btn-small {
padding: @padding-small;
font-size: @font-size-small;
border-radius: @border-radius-small;
2012-01-30 23:50:51 -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 {
padding: @padding-mini;
font-size: @font-size-mini;
border-radius: @border-radius-small;
2012-02-17 00:28:16 -05:00
}
// Icons in buttons
// -------------------------
.btn [class^="glyphicon-"]::before { vertical-align: -2px; }
.btn-small [class^="glyphicon-"]::before,
.btn-mini [class^="glyphicon-"]::before { vertical-align: -1px; }
// 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 03:30:15 -04: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-30 23:50:51 -05: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-30 23:50:51 -05:00
}
// Danger and error appear as red
.btn-danger {
.btn-pseudo-states(@btn-background-danger, @btn-border-danger);
2012-01-30 23:50:51 -05:00
}
// Success appears as green
.btn-success {
.btn-pseudo-states(@btn-background-success, @btn-border-success);
2012-01-30 23:50:51 -05:00
}
2013-01-17 22:51:22 -05:00
// Info appears as blue-green
.btn-info {
.btn-pseudo-states(@btn-background-info, @btn-border-info);
2013-01-17 22:51:22 -05:00
}
2012-01-30 23:50:51 -05:00
// Link buttons
// --------------------------------------------------
// Make a button look and behave like a link
.btn-link,
2012-08-31 17:02:18 -04: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:active {
border-color: transparent;
}
.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;
border-radius: 0;
}
.btn-link:hover {
2012-11-30 17:37:24 -05:00
color: @link-color-hover;
text-decoration: underline;
background-color: transparent;
}
.btn-link {
&[disabled],
fieldset[disabled] & {
&:hover {
color: @grayDark;
text-decoration: none;
}
}
2012-08-31 17:02:18 -04:00
}