2017-07-31 13:24:04 +02:00
|
|
|
/* ----------------------------- */
|
|
|
|
/* ==Buttons */
|
|
|
|
/* ----------------------------- */
|
|
|
|
/* preferably use <button> for buttons !*/
|
|
|
|
/* use .btn-- or .button-- classes for variants */
|
|
|
|
|
|
|
|
%btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: $tiny-value $small-value;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: 1;
|
|
|
|
vertical-align: middle;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: $color-base;
|
|
|
|
background-color: $color-muted;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: 0.25s;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
transition-property: box-shadow, background-color, color, border;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn,
|
|
|
|
.button,
|
|
|
|
[type="button"],
|
|
|
|
button {
|
|
|
|
@extend %btn;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2017-07-31 14:00:06 +02:00
|
|
|
|
2017-07-31 13:24:04 +02:00
|
|
|
// button color variants
|
2017-07-31 14:01:57 +02:00
|
|
|
// name - background-color - color - border
|
2017-07-31 14:00:06 +02:00
|
|
|
$buttons-variants: (
|
|
|
|
(primary, $color-primary, $color-light, none),
|
|
|
|
(success, $color-success, $color-light, none),
|
|
|
|
(info, $color-info, $color-light, none),
|
|
|
|
(warning, $color-warning, $color-light, none),
|
|
|
|
(danger, $color-danger, $color-light, none),
|
|
|
|
(inverse, $color-inverse, $color-light, none),
|
|
|
|
(ghost, $color-ghost, $color-light, 0 0 0 1px $color-light inset)
|
|
|
|
);
|
2017-07-31 13:24:04 +02:00
|
|
|
|
|
|
|
.btn,
|
|
|
|
.button {
|
2017-07-31 14:00:06 +02:00
|
|
|
@each $name, $background-color, $color, $border in $buttons-variants {
|
|
|
|
&--#{$name} {
|
2017-07-31 13:24:04 +02:00
|
|
|
@extend %btn;
|
2017-07-31 14:00:06 +02:00
|
|
|
background-color: $background-color;
|
|
|
|
color: $color;
|
|
|
|
box-shadow: $border;
|
2017-07-31 13:24:04 +02:00
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2017-07-31 14:00:06 +02:00
|
|
|
background-color: darken( $background-color, 10% );
|
2017-07-31 13:24:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-31 14:00:06 +02:00
|
|
|
|
2017-07-31 13:24:04 +02:00
|
|
|
// button state variants
|
|
|
|
.btn,
|
|
|
|
.button {
|
|
|
|
&--small {
|
|
|
|
font-size: $base-font-size - 0.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--big {
|
|
|
|
font-size: $base-font-size + 0.4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--block {
|
|
|
|
width: 100% !important;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-07-31 14:00:06 +02:00
|
|
|
|
2017-07-31 13:24:04 +02:00
|
|
|
/* disabled buttons */
|
|
|
|
.btn,
|
|
|
|
.button,
|
|
|
|
[type="button"],
|
|
|
|
[type="reset"],
|
|
|
|
[type="submit"],
|
|
|
|
button {
|
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2017-07-31 14:00:06 +02:00
|
|
|
|
2017-07-31 13:24:04 +02:00
|
|
|
/* unstyled buttons */
|
|
|
|
.btn,
|
|
|
|
.button,
|
|
|
|
[type="button"],
|
|
|
|
[type="reset"],
|
|
|
|
[type="submit"],
|
|
|
|
button {
|
|
|
|
&.unstyled {
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
text-align: left;
|
|
|
|
background: none;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|