CONTROL.less.ftl 4.7 KB
Newer Older
1 2 3 4 5
.app-list-exp-bar {
    > .ivu-split-horizontal {
        > .ivu-split-trigger-con {
            height: 100%;
            width: 1px;
6 7 8
            .ivu-split-trigger-vertical{
              width: 2px;
            }
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
        }
        > .ivu-split-pane {
            > div {
                height: 100%;
                overflow: auto;
                display: flex;
                flex-direction: column;
                .list-exp-bar-header {
                    line-height: 50px;
                    border-bottom: 1px solid #ddd;
                    >div {
                        font-size: 18px;
                        i {
                            font-size: 20px;
                            margin-top: -2px;
                        }
                    } 
                }
                .container-header{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    .search-container {
                        width: 30%;
                        height: 48px;
                        padding: 10px 10px 10px 0;
                        min-width: 200px;
                        max-width: 400px;
                    }
                    .toolbar-container{
                        padding: 4px;
40 41 42
                        display: flex;
                        flex-wrap: wrap;
                        align-items: center;
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
                    }
                }
                .list-exp-bar-content {
                    <#--  计算高度  -->
                    <#if ctrl.isShowTitleBar() && ctrl.isEnableSearch()>
                    height: calc(100% - 88px);
                    <#elseif ctrl.isShowTitleBar() && !ctrl.isEnableSearch()>
                    height: calc(100% - 40px);
                    <#elseif !ctrl.isShowTitleBar() && ctrl.isEnableSearch()>
                    height: calc(100% - 38px);
                    <#else>
                    height: 100%;
                    </#if>
                    overflow: auto;
                    padding: 16px 0;
                    margin-bottom: 10px;
                }
                .list-exp-bar-content2 {
                    height: 100%;
                    overflow: auto;
                    flex-grow: 1;
                }
            }
        }
        > .right-pane.ivu-split-pane {
            > div {
                padding-left: 10px;
            }
        }
        > .left-pane.ivu-split-pane {
            padding-right: 10px;
        }
    }
    > .ivu-split-vertical{
77 78 79
        .ivu-split-trigger-horizontal{
          height: 2px;
        }
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 144 145 146
        > .ivu-split-pane {
            > div {
                height: 100%;
                overflow: auto;
                display: flex;
                flex-direction: column;
                .list-exp-bar-header {
                    line-height: 50px;
                    border-bottom: 1px solid #ddd;
                    >div {
                        font-size: 18px;
                        i {
                            font-size: 20px;
                            margin-top: -2px;
                        }
                    } 
                }
                .container-header{
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    .search-container {
                        width: 30%;
                        height: 48px;
                        padding: 10px 10px 10px 0;
                        min-width: 200px;
                        max-width: 400px;
                    }
                    .toolbar-container{
                        padding: 4px;
                    }
                }
                .list-exp-bar-content {
                    <#--  计算高度  -->
                    <#if ctrl.isShowTitleBar() && ctrl.isEnableSearch()>
                    height: calc(100% - 88px);
                    <#elseif ctrl.isShowTitleBar() && !ctrl.isEnableSearch()>
                    height: calc(100% - 40px);
                    <#elseif !ctrl.isShowTitleBar() && ctrl.isEnableSearch()>
                    height: calc(100% - 38px);
                    <#else>
                    height: 100%;
                    </#if>
                    overflow: auto;
                    margin-bottom: 10px;
                }
                .list-exp-bar-content2 {
                    height: 100%;
                    overflow: auto;
                    flex-grow: 1;
                }
            }
        }
        > .top-pane.ivu-split-pane {
            > div {
                padding-bottom: 10px;
            }
        }
        > .bottom-pane.ivu-split-pane {
            padding-top: 10px;
        }        
    }
}

<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>