index.less 3.2 KB
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 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
.index{
    position: relative;
}


.index{
    position: relative;
}
.index_view{
    margin-bottom: 1px;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    color:#303133;
    background-color: #fff;
    .app-horizontal-layout{
        .view-container{
            height: calc(100% - 32px);
            margin: 12px;
        }
    }
    .index_header{
        height:65px;
        padding:0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        .page-logo{
          display: flex;
          align-items: center;
        }
        .header-left{
            i{
                color:#b4bcc8;
            }
            i:hover{
                color:#1890ff;
            }
            > .app-breadcrumb{
                > span .el-breadcrumb__item .el-breadcrumb__inner{
                    a{
                        color:#606d80 !important;
                        cursor: pointer !important;
                    }
                    a:last-child:hover{
                        color:#1890ff !important;
                    }
                }
            }
            .ivu-icon{
                 font-size: 20px;
                padding: 4px;
                margin-top: -2px;
                cursor: pointer;
            }
            display: flex;
            align-items: center;
            justify-content: space-between;
            .el-menu.el-menu--horizontal{
                border-bottom: none;
                 .el-submenu{
                    border-top: none;
                }
            }
        }
        > div {
            line-height: 49px;
        }
    }
    .index_content{
        background-color:#F0F2F5;
        height:calc(100vh - 50px);
        overflow-x: hidden;
        overflow-y: hidden;
    }
    >.ivu-layout {
        >.ivu-layout {
            height: calc(100vh - 50px);
        }
    }
    .ivu-layout .ivu-layout-sider .ivu-layout-sider-children .sider-top{
        margin-top: -2px;
        line-height: 58px;
        text-align: center;
        font-size: 20px;
        cursor: pointer;
    }
    .sider-top{
        padding: 0px;
        margin-bottom: 1px;
        height:65px;
        box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
        > .page-logo{
          display: flex;
          align-items: center;
          height: 100%;
          justify-content: center;
          >.menuicon{
            display: block;
            text-align: center;
            font-weight: 300;
            font-size: 28px;
            width:64px;
            height:100%;
          }
        }
    }
}

#move_axis{
    position: absolute;
    left: 195px;
    width: 5px;
    height: 100%;
    cursor: w-resize;
    background-color: rgba(255,255,255,0);
}
.index_sider{
    flex: none!important;
    max-width: none !important;
    transition: none 0s ease 0s;
}

/***    BRGIN:滚动条样式    ***/
::-webkit-scrollbar {
    background: transparent;
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background-color: #cecece;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}