twbs--bootstrap/less/buttons.less

176 lines
4.0 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-01-31 04:50:51 +00:00
// Core
.btn {
display: inline-block;
.ie7-inline-block();
padding: 4px 14px;
margin-bottom: 0; // For input.btn
font-size: 13px;
line-height: 20px;
2012-04-16 23:34:08 +00:00
*line-height: 20px;
text-align: center;
vertical-align: middle;
2012-04-16 23:34:08 +00:00
cursor: pointer;
.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
border: 1px solid @btnBorder;
2012-04-16 23:34:08 +00:00
*border: 0; // Remove the border to prevent IE7's black border on input:focus
border-bottom-color: darken(@btnBorder, 10%);
.border-radius(4px);
2012-04-16 23:34:08 +00:00
.ie7-restore-left-whitespace(); // Give IE7 some love
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
// Hover state
&:hover {
color: @grayDark;
text-decoration: none;
background-color: darken(@white, 10%);
*background-color: darken(@white, 15%); /* Buttons in IE7 don't get borders, so darken on hover */
background-position: 0 -15px;
// transition is only when going to hover, otherwise the background
// behind the gradient (there for IE<=9 fallback) gets mismatched
.transition(background-position .1s linear);
}
// Focus state for keyboard and accessibility
&:focus {
.tab-focus();
}
// Active state
&.active,
&:active {
background-color: darken(@white, 10%);
background-color: darken(@white, 15%) e("\9");
background-image: none;
outline: 0;
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
}
// Disabled state
&.disabled,
&[disabled] {
cursor: default;
background-color: darken(@white, 10%);
background-image: none;
.opacity(65);
.box-shadow(none);
}
2012-01-31 04:50:51 +00:00
}
2012-01-31 04:50:51 +00:00
// Button Sizes
// --------------------------------------------------
// Large
.btn-large {
2012-01-31 04:50:51 +00:00
padding: 9px 14px;
font-size: @baseFontSize + 2px;
line-height: normal;
.border-radius(5px);
}
.btn-large [class^="icon-"] {
2012-01-31 04:50:51 +00:00
margin-top: 1px;
}
// Small
.btn-small {
2012-01-31 04:50:51 +00:00
padding: 5px 9px;
font-size: @baseFontSize - 2px;
line-height: @baseLineHeight - 2px;
}
.btn-small [class^="icon-"] {
2012-01-31 04:50:51 +00:00
margin-top: -1px;
}
2012-02-17 05:28:16 +00:00
// Mini
.btn-mini {
padding: 2px 6px;
font-size: @baseFontSize - 2px;
line-height: @baseLineHeight - 4px;
}
2012-01-31 04:50:51 +00:00
// Alternate buttons
// --------------------------------------------------
// Provide *some* extra contrast for those who can get it
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
2012-02-09 22:08:14 +00:00
.btn-info.active,
2012-02-18 04:25:49 +00:00
.btn-inverse.active {
2012-01-31 04:50:51 +00:00
color: rgba(255,255,255,.75);
}
// Set the backgrounds
// -------------------------
.btn {
// reset here as of 2.0.3 due to Recess property order
border-color: #ccc;
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
}
.btn-primary {
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
}
2012-01-31 04:50:51 +00:00
// Warning appears are orange
.btn-warning {
.buttonBackground(@btnWarningBackground, @btnWarningBackgroundHighlight);
2012-01-31 04:50:51 +00:00
}
// Danger and error appear as red
.btn-danger {
.buttonBackground(@btnDangerBackground, @btnDangerBackgroundHighlight);
2012-01-31 04:50:51 +00:00
}
// Success appears as green
.btn-success {
.buttonBackground(@btnSuccessBackground, @btnSuccessBackgroundHighlight);
2012-01-31 04:50:51 +00:00
}
// Info appears as a neutral blue
.btn-info {
.buttonBackground(@btnInfoBackground, @btnInfoBackgroundHighlight);
2012-01-31 04:50:51 +00:00
}
// Inverse appears as dark gray
.btn-inverse {
.buttonBackground(@btnInverseBackground, @btnInverseBackgroundHighlight);
2012-02-09 22:08:14 +00:00
}
2012-01-31 04:50:51 +00:00
// Cross-browser Jank
// --------------------------------------------------
button.btn,
input[type="submit"].btn {
2012-02-12 21:20:08 +00:00
// Firefox 3.6 only I believe
&::-moz-focus-inner {
padding: 0;
2012-01-31 04:50:51 +00:00
border: 0;
}
// IE7 has some default padding on button controls
*padding-top: 2px;
*padding-bottom: 2px;
&.btn-large {
*padding-top: 7px;
*padding-bottom: 7px;
}
&.btn-small {
*padding-top: 3px;
*padding-bottom: 3px;
}
2012-03-12 19:44:47 +00:00
&.btn-mini {
*padding-top: 1px;
*padding-bottom: 1px;
}
}