2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Buttons
|
|
|
|
// --------------------------------------------------
|
2012-01-05 19:01:42 +01:00
|
|
|
|
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-10-01 09:19:29 +02:00
|
|
|
padding: 6px 12px;
|
2012-02-07 08:34:03 +01:00
|
|
|
margin-bottom: 0; // For input.btn
|
2012-07-30 21:52:44 +02:00
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2012-01-27 22:36:08 +01:00
|
|
|
text-align: center;
|
2012-02-07 08:34:03 +01:00
|
|
|
vertical-align: middle;
|
2012-04-17 01:34:08 +02:00
|
|
|
cursor: pointer;
|
2012-07-10 09:45:44 +02:00
|
|
|
.buttonBackground(@btnBackground, @btnBackgroundHighlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
2012-03-05 09:29:16 +01:00
|
|
|
border: 1px solid @btnBorder;
|
|
|
|
border-bottom-color: darken(@btnBorder, 10%);
|
2012-11-02 17:36:51 +01:00
|
|
|
border-radius: @baseBorderRadius;
|
2012-09-13 00:48:56 +02:00
|
|
|
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
2012-01-27 20:17:06 +01:00
|
|
|
|
2012-07-07 22:20:50 +02:00
|
|
|
// Hover state
|
|
|
|
&:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
background-position: 0 -15px;
|
2012-01-26 19:01:03 +01:00
|
|
|
|
2012-07-07 22:20:50 +02: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-07-07 22:20:50 +02:00
|
|
|
// Focus state for keyboard and accessibility
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-07-07 22:20:50 +02:00
|
|
|
// Active state
|
|
|
|
&.active,
|
|
|
|
&:active {
|
|
|
|
background-image: none;
|
|
|
|
outline: 0;
|
2012-09-13 00:48:56 +02:00
|
|
|
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
2012-07-07 22:20:50 +02:00
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-07-07 22:20:50 +02:00
|
|
|
// Disabled state
|
|
|
|
&.disabled,
|
|
|
|
&[disabled] {
|
|
|
|
cursor: default;
|
|
|
|
background-image: none;
|
|
|
|
.opacity(65);
|
|
|
|
.box-shadow(none);
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Button Sizes
|
2012-11-02 09:20:06 +01:00
|
|
|
// -------------------------
|
2012-01-31 05:50:51 +01:00
|
|
|
|
|
|
|
// Large
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-large {
|
2012-09-19 05:56:20 +02:00
|
|
|
padding: @paddingLarge;
|
|
|
|
font-size: @fontSizeLarge;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: @borderRadiusLarge;
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Small
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-small {
|
2012-09-19 05:56:20 +02:00
|
|
|
padding: @paddingSmall;
|
|
|
|
font-size: @fontSizeSmall;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: @borderRadiusSmall;
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
2012-02-17 06:28:16 +01:00
|
|
|
// Mini
|
|
|
|
.btn-mini {
|
2012-09-19 05:56:20 +02:00
|
|
|
padding: @paddingMini;
|
|
|
|
font-size: @fontSizeMini;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: @borderRadiusSmall;
|
2012-02-17 06:28:16 +01:00
|
|
|
}
|
|
|
|
|
2012-08-28 00:39:55 +02:00
|
|
|
|
2012-11-02 09:20:06 +01:00
|
|
|
// Icons in buttons
|
|
|
|
// -------------------------
|
|
|
|
|
2012-11-02 09:39:40 +01:00
|
|
|
.btn [class^="glyphicon-"]::before { vertical-align: -2px; }
|
|
|
|
.btn-small [class^="glyphicon-"]::before,
|
|
|
|
.btn-mini [class^="glyphicon-"]::before { vertical-align: -1px; }
|
2012-11-02 09:20:06 +01:00
|
|
|
|
|
|
|
|
2012-07-28 00:42:58 +02:00
|
|
|
// Block button
|
2012-08-28 00:39:55 +02:00
|
|
|
// -------------------------
|
|
|
|
|
2012-07-28 00:42:58 +02:00
|
|
|
.btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
.box-sizing(border-box);
|
|
|
|
}
|
2012-08-28 00:39:55 +02:00
|
|
|
|
|
|
|
// Vertically space out multiple block buttons
|
2012-07-29 09:30:15 +02:00
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-07-28 00:42:58 +02:00
|
|
|
|
2012-08-28 00:39:55 +02:00
|
|
|
// Specificity overrides
|
|
|
|
input[type="submit"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="button"] {
|
|
|
|
&.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-31 05:50:51 +01:00
|
|
|
|
|
|
|
// Alternate buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// 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-04-23 19:06:35 +02:00
|
|
|
.btn {
|
2012-04-24 10:46:20 +02:00
|
|
|
// reset here as of 2.0.3 due to Recess property order
|
2012-08-02 02:01:29 +02:00
|
|
|
border-color: #c5c5c5;
|
|
|
|
border-color: rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25);
|
2012-04-23 19:06:35 +02:00
|
|
|
}
|
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
|
|
|
|
|
|
|
|
2012-07-18 08:32:52 +02:00
|
|
|
|
|
|
|
// Link buttons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Make a button look and behave like a link
|
2012-08-19 01:30:47 +02:00
|
|
|
.btn-link,
|
2012-08-31 23:02:18 +02:00
|
|
|
.btn-link:active,
|
|
|
|
.btn-link[disabled] {
|
2012-07-18 08:32:52 +02:00
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
2012-08-20 05:32:29 +02:00
|
|
|
.box-shadow(none);
|
2012-08-19 01:30:47 +02:00
|
|
|
}
|
|
|
|
.btn-link {
|
2012-07-18 08:32:52 +02:00
|
|
|
border-color: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
color: @linkColor;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: 0;
|
2012-07-18 08:32:52 +02:00
|
|
|
}
|
|
|
|
.btn-link:hover {
|
|
|
|
color: @linkColorHover;
|
|
|
|
text-decoration: underline;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2012-08-31 23:02:18 +02:00
|
|
|
.btn-link[disabled]:hover {
|
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|