log-view {
    float: left;
    width: 100%;
    height: 100%;
    div#me-log-container {
        padding: 10px;
        float: left;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .me-log-button-panel {
        margin-top: 5px;
        float: left;
        height: 30px;
        width: calc(100% - 10px);
        padding: 5px;
        text-align: right;
        border-top: 1px solid #bdbdbd;
    }
    .me-log-view {
        float: left;
        height: calc(100% - 50px);
        width: calc(100% - 10px);
        overflow: auto;
        border: 1px solid #bdbdbd;
        padding: 5px;
        .row {
            float: left;
            width: 100%;
            min-height: 30px;
        }
        .status-icon {
            float: left;
            width: 20px;
            height: 20px;
            background-size: 20px;
        }
        .log-status {
            float: left;
            width: 55px;
            height: 100%;
            margin: 3px 0 0 10px;
        }
        .status-failed {
            background-image: url('../../assets/icon/statusbar/error.png');
            cursor: pointer;
        }
        .status-completed {
            background-image: url('../../assets/icon/statusbar/completed.png');
        }
        .status-pending {
            background-image: url('../../assets/icon/statusbar/pending.png');
        }
        .status-inprogress {
            background-image: url('../../assets/icon/statusbar/inprogress.png');
        }
        .log-description {
            float: left;
            width: calc(100% - 105px);
            height: 100%;
            margin: 3px 0 0 10px;
        }
        .error-log.full-time {
            border: 0px none;
        }
        .error-log {
            float: left;
            width: calc(100% - 12px);
            height: auto;
            padding: 5px;
            margin-top: 10px;
            margin-bottom: 10px;
            border: 1px solid #e9e9e9;
            word-break: break-word;
            span.title {
                float: left;
                width: 100%;
            }
            span.content.message {
                font-weight: 600;
            }
            span.content {
                float: left;
                width: calc(100% - 10px);
                padding: 5px;
            }
            .error-stack {
                float: left;
                word-wrap: break-word;
                width: calc(100% - 10px);
                padding: 5px;
                font-style: italic;
            }
        }
    }
}