@import “../sadui”;

.button {

@include inline-block;
@include user-select(none);
white-space: nowrap;
cursor: pointer;
position: relative;//required for input masking

border: 0 none;// resets default <button|input>

text-decoration: none;// resets default <a>

> * {
    @include inline-block;
}

// input masking
input[type="button"],
input[type="submit"] {
    width: 100%;
    height: 100%;
    line-height: 100% !important;
    background-color: transparent;
    border: 0 none;
    outline: 0 none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    @include opacity(0);
    cursor: pointer;
}

// .button-label {}

// .button-icon {}

} button.button {

// background-color: transparent;
// margin: 0;
// padding: 0;

}

.button-group {

// margin-left: 1em;
// &:first-child {
//     margin-left: 0;
// }

}