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-12-20 07:25:56 +01:00
|
|
|
// Core styles
|
|
|
|
.btn {
|
|
|
|
display: inline-block;
|
2013-01-13 02:51:57 +01:00
|
|
|
padding: 6px 12px;
|
2012-12-20 07:25:56 +01:00
|
|
|
margin-bottom: 0; // For input.btn
|
|
|
|
font-size: @font-size-base;
|
2013-01-16 20:38:34 +01:00
|
|
|
font-weight: 500;
|
2012-12-20 07:25:56 +01:00
|
|
|
line-height: @line-height-base;
|
2012-12-20 07:54:04 +01:00
|
|
|
text-align: center;
|
2012-12-20 07:25:56 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
2013-01-13 02:51:57 +01:00
|
|
|
border: 1px solid @btn-border;
|
2012-12-20 07:25:56 +01:00
|
|
|
border-radius: @border-radius-base;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
|
|
|
|
2013-02-06 04:53:44 +01:00
|
|
|
&:hover,
|
2012-07-07 22:20:50 +02:00
|
|
|
&:focus {
|
2013-01-13 05:08:13 +01:00
|
|
|
color: #fff;
|
2012-12-20 07:25:56 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
outline: 0;
|
2012-12-20 07:54:04 +01:00
|
|
|
background-image: none;
|
2013-01-13 02:51:57 +01:00
|
|
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2012-12-20 07:25:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled,
|
2012-12-10 08:42:05 +01:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2012-12-20 07:25:56 +01:00
|
|
|
cursor: default;
|
2013-03-01 04:46:49 +01:00
|
|
|
.opacity(.65);
|
2012-12-20 07:25:56 +01:00
|
|
|
.box-shadow(none);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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-11-30 23:45:25 +01:00
|
|
|
padding: @padding-large;
|
|
|
|
font-size: @font-size-large;
|
|
|
|
border-radius: @border-radius-large;
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Small
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-small {
|
2012-11-30 23:45:25 +01:00
|
|
|
padding: @padding-small;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
border-radius: @border-radius-small;
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
|
2012-02-17 06:28:16 +01:00
|
|
|
// Mini
|
|
|
|
.btn-mini {
|
2012-11-30 23:45:25 +01:00
|
|
|
padding: @padding-mini;
|
|
|
|
font-size: @font-size-mini;
|
|
|
|
border-radius: @border-radius-small;
|
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
|
|
|
|
// -------------------------
|
|
|
|
|
2013-02-26 09:44:15 +01:00
|
|
|
// TODO: figure this shit out
|
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
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-12-20 08:37:33 +01:00
|
|
|
.btn {
|
2013-02-02 22:03:18 +01:00
|
|
|
color: @btn-color;
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background, @btn-border);
|
2012-12-20 08:37:33 +01:00
|
|
|
}
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-primary {
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background-primary, @btn-border-primary);
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2013-01-18 16:55:17 +01:00
|
|
|
// Warning appears as orange
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-warning {
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background-warning, @btn-border-warning);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Danger and error appear as red
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-danger {
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background-danger, @btn-border-danger);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
|
|
|
// Success appears as green
|
2012-01-31 06:15:57 +01:00
|
|
|
.btn-success {
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background-success, @btn-border-success);
|
2012-01-31 05:50:51 +01:00
|
|
|
}
|
2013-01-18 04:51:22 +01:00
|
|
|
// Info appears as blue-green
|
|
|
|
.btn-info {
|
2013-02-03 04:16:15 +01:00
|
|
|
.btn-pseudo-states(@btn-background-info, @btn-border-info);
|
2013-01-18 04:51:22 +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,
|
2012-12-10 08:42:05 +01:00
|
|
|
.btn-link[disabled],
|
|
|
|
fieldset[disabled] .btn-link {
|
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
|
|
|
}
|
2013-01-13 13:04:16 +01:00
|
|
|
.btn-link,
|
|
|
|
.btn-link:hover,
|
2013-02-06 04:53:44 +01:00
|
|
|
.btn-link:focus,
|
2013-01-13 13:04:16 +01:00
|
|
|
.btn-link:active {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
2012-08-19 01:30:47 +02:00
|
|
|
.btn-link {
|
2012-11-30 23:37:24 +01:00
|
|
|
color: @link-color;
|
2013-01-13 02:51:57 +01:00
|
|
|
font-weight: normal;
|
|
|
|
cursor: pointer;
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: 0;
|
2012-07-18 08:32:52 +02:00
|
|
|
}
|
2013-01-02 23:39:21 +01:00
|
|
|
.btn-link:hover,
|
|
|
|
.btn-link:focus {
|
2012-11-30 23:37:24 +01:00
|
|
|
color: @link-color-hover;
|
2012-07-18 08:32:52 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2012-12-10 08:42:05 +01:00
|
|
|
.btn-link {
|
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] & {
|
2013-02-06 04:53:44 +01:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2012-12-10 08:42:05 +01:00
|
|
|
color: @grayDark;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2012-08-31 23:02:18 +02:00
|
|
|
}
|