group.scss 1.9 KB
Newer Older
Y
Your Name 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
.common-scss-group {
    width: 240px;
    position: fixed;
    left: initial;
    z-index: 3;
    @include eo-height(100%, 79px);
    .title-ul {
        @include eo-line(50px);
        padding: 0 10px;
        background-color: #fff;
        border-radius: 3px 0 0 0;
        border-bottom: 1px solid #d9d9d9;
        .common-btn {
            @include eo-line(32px);
            font-size: $BUTTON_FONT_SIZE;
            display: inline-block;
            vertical-align: middle;
        }
        .default-btn {
            border-style: solid;
            border-width: 1px;
            margin-left: 5px;
            border-radius: 3px;
        }
    }
    .group-ul {
        border-radius: 3px 0 0 3px;
        @include eo-height(100%, 51px);
        position: absolute;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        
    }
    .group-li {
        overflow: hidden;
        font-size: 12px;
        @include eo-line(40px);
        padding-left:10px;
        cursor: pointer;
        .group-name {
            max-width: calc(100% - 62px);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            cursor: pointer;
        }
        .active {
            display: inline-flex;
            float: right;
        }
        .icon-iosgengduo {
            display: inline-block;
            padding-right: 10px;
        }
        .iconfont {
            float: left;
            margin-right: 5px;
            cursor: pointer;
            line-height: 41px;
            font-size: 18px;
        }

        .group-function {
            position: absolute;
            right: 10px;
            border-style: solid;
            border-width: 1px;
            border-radius: 3px;
            z-index: 2;
            li {
                font-weight: initial;
                cursor: pointer;
                padding: 0 20px;
            }
        }
    }
}