﻿.tab-tag {
    font-size: 14px;
    padding: .3em .4em .4em;
    margin: .1em .1em;
    display: inline-block;
}

    .tab-tag a {
        color: #bbb;
        cursor: pointer;
        opacity: 0.6;
        margin: 0 0 0 .3em;
    }

        .tab-tag a:hover {
            opacity: 1.0
        }

    .tab-tag .remove {
        vertical-align: bottom;
        top: 0;
    }

    .tab-tag a .glyphicon-white {
        color: #fff;
        margin-bottom: 2px;
    }


/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.tabAdmin ul[dnd-list] {
    min-height: 42px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 2px;
    height: 430px;
    overflow-y: auto;
}

.tabAdmin ul[dnd-list].childList {
    height: 469px;
}

    /**
 * 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.
 */
    .tabAdmin ul[dnd-list] .dndDraggingSource {
        display: none;
    }

    /**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
    .tabAdmin ul[dnd-list] .dndPlaceholder {
        background-color: #ddd;
        display: block;
        min-height: 42px;
    }

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

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

.tabAdmin div.tabFilter {
    padding-left: 4px;
    padding-right: 3px;
    margin-bottom: -1px;
}

    .tabAdmin div.tabFilter input {
        width: 100%;
        height: 40px;
        padding-left: 8px;
        font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
        font-size: 12px;
    }

.tabAdmin p.connect-section-title .listHeader {
    font-weight: 500;
}

.tabAdmin ul[dnd-list] li.disabled-child {
    background-color: #ebebeb;
}