index.less 578 字节
Newer Older
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
// 通用样式(原子性样式)
// 消除浮动影响
.clearfix {
    &::before {
        display: table;
        content: '';
    }

    &::after {
        display: table;
        clear: both;
        content: '';
    }
}

// 文本内容超出当前容器出...
.textellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

// 悬浮激活样式
.hover-active { }

// 进度条样式 
.loading-bar {
    height: 1px;
    width: 100%;
    position: fixed;
    z-index: 1;
}

//编辑器输入框激活边框样式
.editor-border-active { }