cell-detail-panel.less 2.98 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
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
@small-panel-height: 30px;
@small-panel-margin: 10px;
@small-panel-border-color: #E4E4E4;

.cell-detial-show {
    display: inline-block;
    vertical-align: top;   
    min-height:650px;   
    cursor: move;  
}

.cell-detail {
    .cell-detial-show;
    width:400px;
    min-width:400px;
    position: relative;
    background-color:#fff;
    .header {
        background-color: #333333;
        height: @small-panel-height;
        padding:0px;
        .icon-common {
            color: #fff;
            margin: 5px @small-panel-margin;
        }

        .drag-icon {
            float: left;
            .icon-common;
        }

        .close-icon {
            float: right;
            .icon-common;
            cursor: pointer;
        }

        .expand-icon {
            .icon-common;
            float: right;
            cursor: pointer;
            /*margin-left:300px;*/
        }
    }

    .content {
        height: calc(~"100% - 30px");
        /*background-color: #fff;*/
        border: 1px solid @small-panel-border-color;
        border-bottom: none;

        .pair-item {
            margin: @small-panel-margin @small-panel-margin @small-panel-margin*2 @small-panel-margin;

            .position {
                height: @small-panel-height;
                line-height: @small-panel-height;
            }

            .cell-position {
                .position;
                width: 18%;
                text-align: center;
            }

            .formula-desc {
                padding-left: 8px;
            }

            .value-panel {
                border: 1px solid @small-panel-border-color;
                word-wrap: break-word;
                min-height: @small-panel-height;

                .source-list {
                    padding-left: 15px;
                    margin-top: 5px;
                    list-style-type: none;
                }

                .source-item > span {
                    display: table-cell;
                }

                .col-sm-7 {
                    padding-left: 2px;
                    width: 58%;
                }

                .text-align-source {
                    text-align: right;
                    padding-right: 10px;
                }

                .col-sm-5 {
                    width: 42%;
                    padding-left: 0px;
                    .text-align-source;
                }

                .row {
                    margin: 10px 0px 20px 0px;
                }

                .source-total {
                    color: red;
                    font-weight: bold;
                    .row;
                    height:15px;
                }

                .horizontal-dot-line {
                    background-image: linear-gradient(to right, #a6a6a6 50%, rgba(255, 255, 255, 0) 0%);
                    background-position: top;
                    background-size: 10px 1px;
                    background-repeat: repeat-x;
                    height: 1px;
                }
            }
        }
    }
}