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