twbs--bootstrap/less/buttons.less

176 lines
3.4 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;
2012-12-21 08:50:28 +00:00
padding: 7px 13px;
2012-12-20 06:25:56 +00:00
margin-bottom: 0; // For input.btn
font-size: @font-size-base;
2012-12-21 08:50:28 +00:00
font-weight: bold;
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;
2012-12-21 08:50:28 +00:00
border: 0;
2012-12-20 06:25:56 +00:00
border-radius: @border-radius-base;
2012-12-21 08:50:28 +00:00
//.box-shadow(inset 0 1px 0 rgba(255,255,255,.25));
2012-12-20 06:25:56 +00:00
&:focus {
.tab-focus();
}
&:hover {
text-decoration: none;
}
&:active,
&.active {
outline: 0;
2012-12-20 06:54:04 +00:00
background-image: none;
.box-shadow(~"inset 0 3px 5px rgba(0,0,0,.125), 0 1px 0 rgba(255,255,255,.1)");
2012-12-20 06:25:56 +00:00
}
&.disabled,
&[disabled],
fieldset[disabled] & {
2012-12-20 06:25:56 +00:00
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 {
2012-12-21 08:50:28 +00:00
color: #fff;
background-color: #ccc;
//.buttonBackground(@btn-background, @btn-background-highlight, @gray, 0 1px 0 rgba(255,255,255,.75));
}
// Primary appears as blue
.btn-primary {
2012-12-21 08:50:28 +00:00
background-color: @btn-background-primary;
//.buttonBackground(@btn-background-primary, @btn-background-primary-highlight);
}
2012-01-31 04:50:51 +00:00
// Warning appears are orange
.btn-warning {
2012-12-21 08:50:28 +00:00
background-color: @btn-background-warning;
//.buttonBackground(@btn-background-warning, @btn-background-warning-highlight);
2012-01-31 04:50:51 +00:00
}
// Danger and error appear as red
.btn-danger {
2012-12-21 08:50:28 +00:00
background-color: @btn-background-danger;
//.buttonBackground(@btn-background-danger, @btn-background-danger-highlight);
2012-01-31 04:50:51 +00:00
}
// Success appears as green
.btn-success {
2012-12-21 08:50:28 +00:00
background-color: @btn-background-success;
//.buttonBackground(@btn-background-success, @btn-background-success-highlight);
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 {
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;
}
.btn-link {
&[disabled],
fieldset[disabled] & {
&:hover {
color: @grayDark;
text-decoration: none;
}
}
2012-08-31 21:02:18 +00:00
}