﻿.listBaseBody {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.listItemPanel {
    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,height linear 200ms;
}
    .listItemPanel:hover {
        background-color: #B3E5FC;
    }
.listItemSelectedPanel {
    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;
    background-color: #81D4FA;
}
.listItemSelectedLabel {
    position: absolute;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    height: 25px;
    overflow: hidden;
    color: #000000;
    line-height: 25px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listItemLabelAndIconPanel {
    position: absolute;
    pointer-events: none;
    width:100%;
    height:30px;
}
.listItemLabel {
    position: absolute;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    height: 25px;
    overflow: hidden;
    line-height: 25px;
    color: #000000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listItemIcon {
    position: absolute;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    padding-left: 5px;
    padding-top: 5px;
    width: 20px;
    height: 20px;
}
