.list-wrapper{
    overflow-y: auto;
    border-top: 1px solid darkgray;
    padding-top: 4px;
}
.list-wrapper .list-items{
    position: relative;
}
.list-items .clickable{
    cursor: pointer;
}
.list-items .clickable:hover{
    opacity: 0.7;
    box-shadow: 3px 1px 4px black;
}

.list-items .item{
    position: relative;
    border: 1px solid #888;
    border-top-right-radius: 8px;
    padding: 3px 5px 3px 23px;
    margin-bottom: 4px;
    background-color:whitesmoke;
}
.list-items .item .item-row{
    display: table;
    table-layout: fixed;
    width: 100%;
    line-height: 18px;
}
.list-items .item-row .left{
    display: table-cell;
    width: 50%;
}
.list-items .item-row .right{
    display: table-cell;
    width: 50%;
    text-align: right;
}
.list-items .item-row .short{
    width: 22%;
    min-width: 60px;
}
.list-items .item-row .date{
    width: 50px;
}
.list-items .item-row .highlight{
    text-shadow: 0px 0px 10px darkgrey;
    text-shadow: 0px 1px grey;
}
.list-items .item-row .full{
    width: auto;
}
.list-items .item-row .icon-cell{
    display: table-cell;
    width: 20px;
}
.list-items .item-row .icon{
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: bottom;
}
.list-items .item-row .gray{
    color: darkgray;
}
.list-items .item .item-marker{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background-color: lightgray;
    background: linear-gradient(to bottom right,#999, white);
    background: linear-gradient(92deg, #888 1%, white);
    padding-top: 5px;
    text-align: center;
}
.list-items .item .item-marker input[type=checkbox]{
    pointer-events: none;
    padding: 0;
    margin: 0;
}