_tabs.scss 1.35 KB
.ace-tabs {
    margin: 0 0 1.5em 0;
    padding: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #eee;

    .ace-tabs-nav a {
        display: inline-block;
        margin-right: 3px;
        padding: 10px 15px;
        font-size: 13px;
        min-height: 40px;
        line-height: 20px;
        -webkit-border-top-left-radius: 3px;
        -moz-border-radius-topleft: 3px;
        border-top-left-radius: 3px;
        -webkit-border-top-right-radius: 3px;
        -moz-border-radius-topright: 3px;
        border-top-right-radius: 3px;
        color: #333;
        cursor: pointer;
        -webkit-transition: all .2s;
        -moz-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .ace-tabs-nav a.ace-tabs-current {
        background: #fff;
        cursor: default;
    }

    .ace-tabs-pane {
        position: relative;
        padding: 15px;
        font-size: 13px;
        -webkit-border-bottom-right-radius: 3px;
        -moz-border-radius-bottomright: 3px;
        border-bottom-right-radius: 3px;
        -webkit-border-bottom-left-radius: 3px;
        -moz-border-radius-bottomleft: 3px;
        border-bottom-left-radius: 3px;
        background: #fff;
        color: #333;

        // Only for ace search
        #sl_div {
            margin-top: 0;
        }
    }
}