@import "./jinyang.less";
@import "./semantic.less";

.smui {
    * {
        box-sizing: border-box;
        text-align: left;
    }

    input, textarea, button {
        outline-color: #EEE;
    }

    .disabled {
        cursor: not-allowed !important;
        color: #999;
    }

    button,
    .button {
        box-sizing: border-box;
        height: 30px;
        min-width: 3em;
        padding: 0 8px;
        background-color: #E0E1E2;
        min-height: 1em;
        outline: 0;
        border: none;
        border: 1px solid #c8c8c8;
        display: inline-block;
        font-size: 13px;
        line-height: 30px;
        text-align: center;
        vertical-align: top;
        cursor: pointer;
        color: #333;

        &:disabled,
        &.disabled {
            border: 1px solid #c8c8c8;
            &:hover{
                border: 1px solid #c8c8c8;
            }
        }
        &.btn-link {
            min-width: 0;
            padding: 0;
            border: 0;
            background: none;
        }
    }

    input[type="checkbox"], 
    input[type="radio"] {
        width: 15px;
        height: 15px;
        margin-bottom: -2px;
        border: 0!important;
        outline: none;
        &:disabled {
            cursor: not-allowed;
        }
    }
}