1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/buttons.less

176 lines
3.1 KiB
Text
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;
white-space: nowrap;
2012-12-20 01:25:56 -05:00
&:focus {
.tab-focus();
}
&:hover,
&:focus {
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;
2013-03-16 18:03:22 -04:00
pointer-events: none; // Future-proof disabling of clicks
.opacity(.65);
2012-12-20 01:25:56 -05:00
.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
}
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
// -------------------------
// TODO: figure this shit out
// Block button
// -------------------------
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
}
// 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;
2013-03-31 20:32:45 -04:00
.btn-pseudo-states(@btn-bg, @btn-border);
}
.btn-primary {
2013-03-31 20:32:45 -04:00
.btn-pseudo-states(@btn-primary-bg, @btn-primary-border);
}
// Warning appears as orange
.btn-warning {
.btn-pseudo-states(@btn-warning-bg, @btn-warning-border);
2012-01-30 23:50:51 -05:00
}
// Danger and error appear as red
.btn-danger {
.btn-pseudo-states(@btn-danger-bg, @btn-danger-border);
2012-01-30 23:50:51 -05:00
}
// Success appears as green
.btn-success {
.btn-pseudo-states(@btn-success-bg, @btn-success-border);
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-info-bg, @btn-info-border);
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:focus,
.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,
.btn-link:focus {
2013-03-31 20:27:22 -04:00
color: @link-hover-color;
text-decoration: underline;
background-color: transparent;
}
.btn-link {
&[disabled],
fieldset[disabled] & {
&:hover,
&:focus {
color: @gray-dark;
text-decoration: none;
}
}
2012-08-31 17:02:18 -04:00
}