btn.less 2.61 KB
/***************************************************
* feature  :  按钮,默认提供3种样式;
* update   :  2015/02/03;
* use      :  .m-btn;
* extend   :  .btn-*;
* example  :  ;
* desc     :  ;
* feedback :  此处填入 issue, 并请附带以下信息[os_version, browser_version, page_path, issue_description]
*          -  demo => [windows 7, IE 8, http://diligrp.com/icon.html, 在不定height下未能垂直居中];
****************************************************/

.m-btn,
a.m-btn {
    display: inline-block;
    padding: 0 15px;
    line-height: 35px;
    font-size: 15px;
    color: #FFF;
    text-align: center;
    border: none;
    background-color: #1c69a3;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    cursor: pointer;
    vertical-align: middle;
    min-width: 68px;
    position: relative;
    // border: 1px solid #1c69a3;
    border:none;
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #1c69a3;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 200%;
        height: 200%;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
    }
    &.btn-large {
        font-size: 19px;
        line-height: 43px;
    }
    &.btn-default {
        color: #333;
        background-color: #FFF;
        // border-color: #e2e2e2;
        &:after {
        	border-color: #e2e2e2;
        }
    }
    &.btn-success {
        color: #FFF;
        background-color: #6C2;
        border: none;
        &.reverse {
            background-color: #FFF;
            color: #6C2;
            line-height: 43px;
            // border: 1px solid #6C2;
            &:after {
            	border-color: #6C2;
            }
        }
    }
    &.btn-warning {
        color: #FFF;
        background-color: #ff9d2c;
        border: none;

    }
    &.btn-danger {
        color: #FFF;
        background-color: #fa4535;
        border: none;
    }
    &.btn-text {
        background: none;
        border: 1px solid #6c2;
        color: #6c2;
        width: 65px;
        font-size: 12px;
        text-align: center;
        line-height: 23px;
        padding: 0;
        float: right;
        border-radius: 2px;
        margin-top: -2px;
    }
    &.disabled {
        background-color: #e2e2e2;
        color: #999;
        // border-color: #e2e2d2;
        &:after {
        	border-color: #e2e2d2;
        }
    }
}