/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
section[dnd-list] {
    min-height: 20px;
    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.
 */
 section[dnd-list] .dndDraggingSource {
    display: none;
}

.dndDragover {
    background-color: #ddd !important;
    /*display: block;*/
    min-height: 42px;
}

section[dnd-list] div {
    background-color: #fff;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
}

/**
 * Show selected elements in green
 */
 section[dnd-list] div.selected {
    background-color: #dff0d8;
    color: #3c763d;
}