﻿/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.manpower-page ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.manpower-page ul[dnd-list] .dndDraggingSource {
    opacity: 0.5;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.manpower-page ul[dnd-list] .dndPlaceholder {
    /*display: block;
    min-height: 42px;
    border: 1px solid red;
    width:500px;*/
}

.manpower-page ul[dnd-list] li {
    background-color: #ddd;
    /*border: 1px solid #ddd;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    display: block;
    padding: 10px 15px;*/
    padding-top: 5px;
    margin-bottom: 10px;
}
