twbs--bootstrap/less/buttons.less

161 lines
2.9 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;
padding: 7px 13px;
margin-bottom: 0; // For input.btn
font-size: @font-size-base;
font-weight: bold;
line-height: @line-height-base;
text-align: center;
color: @gray;
2012-12-20 06:25:56 +00:00
vertical-align: middle;
cursor: pointer;
background-color: #eee;
2012-12-20 06:25:56 +00:00
border: 0;
border-radius: @border-radius-base;
.transition(all .075s ease-in-out);
2012-12-20 06:25:56 +00:00
&:focus {
.tab-focus();
}
&:hover {
text-decoration: none;
background-color: #ddd;
2012-12-20 06:25:56 +00:00
}
&:active,
&.active {
outline: 0;
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255,.1)");
2012-12-20 06:25:56 +00:00
}
&.disabled,
&[disabled] {
cursor: default;
.opacity(65);
.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
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
margin-top: -1px;
}
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
// -------------------------
.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 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-primary {
2012-12-20 06:25:56 +00:00
.buttonBackground(@btn-backround-primary);
}
2012-01-31 04:50:51 +00:00
// Warning appears are orange
.btn-warning {
2012-12-20 06:25:56 +00:00
.buttonBackground(@btn-backround-warning);
2012-01-31 04:50:51 +00:00
}
// Danger and error appear as red
.btn-danger {
2012-12-20 06:25:56 +00:00
.buttonBackground(@btn-backround-danger);
2012-01-31 04:50:51 +00:00
}
// Success appears as green
.btn-success {
2012-12-20 06:25:56 +00:00
.buttonBackground(@btn-backround-success);
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] {
background-color: transparent;
background-image: none;
.box-shadow(none);
}
.btn-link {
border-color: transparent;
cursor: pointer;
2012-11-30 22:37:24 +00:00
color: @link-color;
border-radius: 0;
}
.btn-link:hover {
2012-11-30 22:37:24 +00:00
color: @link-color-hover;
text-decoration: underline;
background-color: transparent;
}
2012-08-31 21:02:18 +00:00
.btn-link[disabled]:hover {
color: @grayDark;
text-decoration: none;
}