buttons v7

This commit is contained in:
Raphael Goetter 2017-07-31 13:24:04 +02:00
parent 6e3d128d8e
commit 74f3850524
6 changed files with 142 additions and 56 deletions

View file

@ -0,0 +1,3 @@
/* ----------------------------- */
/* ==Alerts */
/* ----------------------------- */

View file

@ -0,0 +1,3 @@
/* ----------------------------- */
/* ==Badges */
/* ----------------------------- */

View file

@ -0,0 +1,117 @@
/* ----------------------------- */
/* ==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;
}
}
// button color variants
$buttons: (
primary: $color-primary,
success: $color-success,
info: $color-info,
warning: $color-warning,
danger: $color-danger,
inverse: $color-inverse
);
.btn,
.button {
@each $variant, $color in $buttons {
&--#{$variant} {
@extend %btn;
background-color: $color;
color: $color-light;
&:active,
&:focus,
&:hover {
background-color: darken( $color, 10% );
}
}
}
}
// 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;
}
}
/* disabled buttons */
.btn,
.button,
[type="button"],
[type="reset"],
[type="submit"],
button {
&.disabled,
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
}
/* 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;
}
}
}

View file

@ -6,10 +6,6 @@
* github.com/nathansmith/formalize and www.sitepen.com
*/
/* buttons */
.btn {
display: inline-block;
}
/* forms items */
form,
@ -18,15 +14,12 @@ fieldset {
}
input,
button,
select,
label,
.btn {
label {
font-family: inherit;
font-size: inherit;
}
button,
input,
optgroup,
select,
@ -77,40 +70,3 @@ input:-moz-placeholder,
textarea:-moz-placeholder {
color: #777;
}
.btn,
input[type="button"],
button {
&:focus {
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
}
/* unstyled forms */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
&.unstyled {
padding: 0;
border: none;
line-height: 1;
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;
}
}
}