2015-12-20 18:03:44 +01:00
|
|
|
//
|
|
|
|
// Buttons
|
|
|
|
// ---
|
|
|
|
// bigchain.io
|
|
|
|
//
|
|
|
|
|
|
|
|
.btn {
|
2015-12-21 14:34:02 +01:00
|
|
|
@extend .transition;
|
2015-12-20 18:03:44 +01:00
|
|
|
display: inline-block;
|
2015-12-21 13:26:54 +01:00
|
|
|
font-family: $btn-font-family;
|
2015-12-20 18:03:44 +01:00
|
|
|
font-weight: $btn-font-weight;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
2015-12-22 17:19:41 +01:00
|
|
|
border: none;
|
2016-01-30 13:34:11 +01:00
|
|
|
box-shadow: none;
|
2015-12-21 14:34:02 +01:00
|
|
|
@include button-size($btn-padding-y, $btn-padding-x, $font-size-base, $line-height, $btn-border-radius);
|
2015-12-20 18:03:44 +01:00
|
|
|
|
2015-12-22 17:19:41 +01:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2016-01-30 13:34:11 +01:00
|
|
|
box-shadow: 0 1px 4px rgba($brand-main-blue-dark, .4);
|
2015-12-22 17:19:41 +01:00
|
|
|
transform: translateY(-1px);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
2015-12-22 17:19:41 +01:00
|
|
|
|
2015-12-20 18:03:44 +01:00
|
|
|
&:active,
|
|
|
|
&.active {
|
|
|
|
background-image: none;
|
|
|
|
outline: 0;
|
2015-12-22 17:19:41 +01:00
|
|
|
transform: translateY(0);
|
2016-01-30 13:34:11 +01:00
|
|
|
box-shadow: 0 1px 2px rgba($brand-main-blue-dark, .3);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
2016-02-11 03:11:43 +01:00
|
|
|
opacity: 0.45;
|
2015-12-20 18:03:44 +01:00
|
|
|
box-shadow: none;
|
2016-02-11 03:11:43 +01:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
2016-01-30 13:34:11 +01:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: $font-size-base;
|
|
|
|
height: $font-size-base;
|
|
|
|
margin-right: .25rem;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Future-proof disabling of clicks on `<a>` elements
|
|
|
|
a.btn.disabled,
|
|
|
|
fieldset[disabled] a.btn {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Alternate buttons
|
|
|
|
//
|
|
|
|
.btn-primary {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-primary-color, $btn-primary-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-secondary {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-secondary-color, $btn-secondary-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-info {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-info-color, $btn-info-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-success {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-success-color, $btn-success-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-warning {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-warning-color, $btn-warning-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-danger {
|
2015-12-22 17:19:41 +01:00
|
|
|
@include button-variant($btn-danger-color, $btn-danger-bg);
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Link buttons
|
|
|
|
//
|
|
|
|
// Make a button look and behave like a link
|
|
|
|
.btn-link {
|
|
|
|
font-weight: normal;
|
|
|
|
color: $link-color;
|
|
|
|
border-radius: 0;
|
|
|
|
&,
|
|
|
|
&:active,
|
|
|
|
&.active,
|
|
|
|
&:disabled {
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
&,
|
2015-12-22 17:19:41 +01:00
|
|
|
&:hover,
|
2015-12-20 18:03:44 +01:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: transparent;
|
2015-12-22 17:19:41 +01:00
|
|
|
box-shadow: none;
|
2016-01-30 13:34:11 +01:00
|
|
|
background: none;
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
&:disabled {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 13:34:11 +01:00
|
|
|
|
2015-12-20 18:03:44 +01:00
|
|
|
//
|
|
|
|
// Button Sizes
|
|
|
|
//
|
|
|
|
.btn-lg {
|
|
|
|
// line-height: ensure even-numbered height of button next to large input
|
|
|
|
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $line-height-lg, $btn-border-radius-lg);
|
2016-01-30 13:34:11 +01:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: $font-size-lg;
|
|
|
|
height: $font-size-lg;
|
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
|
|
|
.btn-sm {
|
|
|
|
// line-height: ensure proper height of button next to small input
|
|
|
|
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $line-height-sm, $btn-border-radius-sm);
|
2016-01-30 13:34:11 +01:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: $font-size-sm;
|
|
|
|
height: $font-size-sm;
|
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
}
|
2015-12-22 17:19:41 +01:00
|
|
|
.btn-xs {
|
|
|
|
// line-height: ensure proper height of button next to small input
|
|
|
|
@include button-size($btn-padding-y-xs, $btn-padding-x-xs, $font-size-xs, $line-height-xs, $btn-border-radius-xs);
|
2016-01-30 13:34:11 +01:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: $font-size-xs;
|
|
|
|
height: $font-size-xs;
|
|
|
|
}
|
2015-12-22 17:19:41 +01:00
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Block button
|
|
|
|
//
|
|
|
|
.btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Vertically space out multiple block buttons
|
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Specificity overrides
|
|
|
|
input[type="submit"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="button"] {
|
|
|
|
&.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|