﻿.listViewSplitLine {
    position: absolute;
    width: 1px;
    border-left: 1px solid rgba(224, 224, 224, 1);
    height: 100%;
    left: 50%;
    /*background-color: rgba(224, 224, 224, 1);*/
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
.listViewTitlePanel {
    width: 100%;
    height: 30px;
    overflow: hidden;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}
.listViewTitleOrder {
    position:absolute;
    width:16px;
    height:16px;
    right:5px;
    margin-top:-8px;
    top:50%;
    pointer-events:none;
}
.listViewTitle {
    height: 30px;
    width: 100%;
    line-height: 30px;
    color: #000000;
    font-weight:bold;
    /*margin-top: -3px;*/
    padding-left: 5px;
    padding-right: 5px;
    background-color: #FFFFFF;
    /*border-bottom: 3px solid;*/
    overflow: hidden;
    /*border-bottom-color: color(LightBlue,700);*/
    transition: background-color linear 200ms;
}

        .listViewTitle:hover {
            /*border-bottom-color: color(LightBlue,500);*/
            background-color: #DDDDDD;
        }

    .listViewTitle:active {
        /*border-bottom-color: #039be5;*/
        background-color: #d2d2d2;
    }
.listViewItemPanel {
    width: 100%;
    height: 30px;
    position: static;
    overflow: hidden;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    overflow: hidden;
    -webkit-user-select: none;
    transition: background-color linear 200ms;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}

    .listViewItemPanel:hover {
        background-color: #B3E5FC;
    }

.listViewItemSelectedPanel {
    width: 100%;
    height: 30px;
    position: static;
    overflow: hidden;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    overflow: hidden;
    -webkit-user-select: none;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    background-color: #81D4FA;
}