2012-01-05 19:01:42 +01:00
|
|
|
// BUTTON STYLES
|
|
|
|
// -------------
|
|
|
|
|
2012-01-26 20:10:07 +01:00
|
|
|
|
|
|
|
// Base styles
|
2012-01-31 05:50:51 +01:00
|
|
|
// --------------------------------------------------
|
2012-01-26 20:10:07 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Core
|
2012-01-05 19:01:42 +01:00
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2012-03-12 05:12:59 +01:00
|
|
|
.ie7-inline-block();
|
2012-01-26 22:02:27 +01:00
|
|
|
padding: 4px 10px 4px;
|
2012-02-07 08:34:03 +01:00
|
|
|
margin-bottom: 0; // For input.btn
|
2012-01-05 19:01:42 +01:00
|
|
|
font-size: @baseFontSize;
|
2012-01-26 22:02:27 +01:00
|
|
|
line-height: @baseLineHeight;
|
2012-01-22 00:24:06 +01:00
|
|
|
color: @grayDark;
|
2012-01-27 22:36:08 +01:00
|
|
|
text-align: center;
|
2012-01-05 19:01:42 +01:00
|
|
|
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
2012-02-07 08:34:03 +01:00
|
|
|
vertical-align: middle;
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnBackground, @btnBackgroundHighlight);
|
|
|
|
border: 1px solid @btnBorder;
|
|
|
|
border-bottom-color: darken(@btnBorder, 10%);
|
2012-01-05 19:01:42 +01:00
|
|
|
.border-radius(4px);
|
|
|
|
@shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
.box-shadow(@shadow);
|
|
|
|
cursor: pointer;
|
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Give IE7 some love
|
2012-01-28 01:40:14 +01:00
|
|
|
.ie7-restore-left-whitespace();
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
2012-01-27 20:17:06 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Hover state
|
|
|
|
.btn:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: darken(@white, 10%);
|
|
|
|
background-position: 0 -15px;
|
2012-01-26 19:01:03 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// 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);
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Focus state for keyboard and accessibility
|
|
|
|
.btn:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Active state
|
2012-01-31 08:16:27 +01:00
|
|
|
.btn.active,
|
2012-01-31 05:50:51 +01:00
|
|
|
.btn:active {
|
|
|
|
background-image: none;
|
|
|
|
@shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
.box-shadow(@shadow);
|
|
|
|
background-color: darken(@white, 10%);
|
|
|
|
background-color: darken(@white, 15%) e("\9");
|
|
|
|
outline: 0;
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
// Disabled state
|
2012-01-31 08:16:27 +01:00
|
|
|
.btn.disabled,
|
2012-01-31 05:50:51 +01:00
|
|
|
.btn[disabled] {
|
|
|
|
cursor: default;
|
|
|
|
background-image: none;
|
|
|
|
background-color: darken(@white, 10%);
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Button Sizes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Large
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-large {
|
2012-01-31 05:50:51 +01:00
|
|
|
padding: 9px 14px;
|
|
|
|
font-size: @baseFontSize + 2px;
|
|
|
|
line-height: normal;
|
|
|
|
.border-radius(5px);
|
|
|
|
}
|
2012-02-05 07:22:19 +01:00
|
|
|
.btn-large [class^="icon-"] {
|
2012-01-31 05:50:51 +01:00
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Small
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-small {
|
2012-01-31 05:50:51 +01:00
|
|
|
padding: 5px 9px;
|
|
|
|
font-size: @baseFontSize - 2px;
|
|
|
|
line-height: @baseLineHeight - 2px;
|
|
|
|
}
|
2012-02-05 07:22:19 +01:00
|
|
|
.btn-small [class^="icon-"] {
|
2012-01-31 05:50:51 +01:00
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
2012-02-17 06:28:16 +01:00
|
|
|
// Mini
|
|
|
|
.btn-mini {
|
|
|
|
padding: 2px 6px;
|
|
|
|
font-size: @baseFontSize - 2px;
|
|
|
|
line-height: @baseLineHeight - 4px;
|
|
|
|
}
|
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
|
|
|
|
// Alternate buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Set text color
|
|
|
|
// -------------------------
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-primary,
|
|
|
|
.btn-primary:hover,
|
|
|
|
.btn-warning,
|
|
|
|
.btn-warning:hover,
|
|
|
|
.btn-danger,
|
|
|
|
.btn-danger:hover,
|
|
|
|
.btn-success,
|
|
|
|
.btn-success:hover,
|
|
|
|
.btn-info,
|
2012-02-09 23:08:14 +01:00
|
|
|
.btn-info:hover,
|
2012-02-13 00:18:20 +01:00
|
|
|
.btn-inverse,
|
|
|
|
.btn-inverse:hover {
|
2012-01-31 05:50:51 +01:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
2012-02-02 03:18:39 +01:00
|
|
|
color: @white;
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Provide *some* extra contrast for those who can get it
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-primary.active,
|
|
|
|
.btn-warning.active,
|
|
|
|
.btn-danger.active,
|
|
|
|
.btn-success.active,
|
2012-02-09 23:08:14 +01:00
|
|
|
.btn-info.active,
|
2012-02-18 05:25:49 +01:00
|
|
|
.btn-inverse.active {
|
2012-01-31 05:50:51 +01:00
|
|
|
color: rgba(255,255,255,.75);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the backgrounds
|
|
|
|
// -------------------------
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-primary {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2012-01-31 05:50:51 +01:00
|
|
|
// Warning appears are orange
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-warning {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnWarningBackground, @btnWarningBackgroundHighlight);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-danger {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnDangerBackground, @btnDangerBackgroundHighlight);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Success appears as green
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-success {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnSuccessBackground, @btnSuccessBackgroundHighlight);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Info appears as a neutral blue
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-info {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnInfoBackground, @btnInfoBackgroundHighlight);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
2012-02-13 00:18:20 +01:00
|
|
|
// Inverse appears as dark gray
|
|
|
|
.btn-inverse {
|
2012-03-05 09:29:16 +01:00
|
|
|
.buttonBackground(@btnInverseBackground, @btnInverseBackgroundHighlight);
|
2012-02-09 23:08:14 +01:00
|
|
|
}
|
2012-01-31 05:50:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Cross-browser Jank
|
|
|
|
// --------------------------------------------------
|
2012-01-05 19:01:42 +01:00
|
|
|
|
|
|
|
button.btn,
|
2012-01-28 05:05:03 +01:00
|
|
|
input[type="submit"].btn {
|
2012-02-12 22:20:08 +01:00
|
|
|
|
|
|
|
// Firefox 3.6 only I believe
|
2012-01-05 19:01:42 +01:00
|
|
|
&::-moz-focus-inner {
|
2012-02-07 08:34:03 +01:00
|
|
|
padding: 0;
|
2012-01-31 05:50:51 +01:00
|
|
|
border: 0;
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2012-01-27 20:17:06 +01:00
|
|
|
|
|
|
|
// IE7 has some default padding on button controls
|
|
|
|
*padding-top: 2px;
|
|
|
|
*padding-bottom: 2px;
|
2012-02-20 22:16:49 +01:00
|
|
|
&.btn-large {
|
2012-01-27 20:17:06 +01:00
|
|
|
*padding-top: 7px;
|
|
|
|
*padding-bottom: 7px;
|
|
|
|
}
|
2012-02-20 22:16:49 +01:00
|
|
|
&.btn-small {
|
2012-01-27 20:17:06 +01:00
|
|
|
*padding-top: 3px;
|
|
|
|
*padding-bottom: 3px;
|
|
|
|
}
|
2012-03-12 20:44:47 +01:00
|
|
|
&.btn-mini {
|
|
|
|
*padding-top: 1px;
|
|
|
|
*padding-bottom: 1px;
|
|
|
|
}
|
2012-01-26 19:01:03 +01:00
|
|
|
}
|