/* 
 *  Created on : 03.02.2017, 17:43:07
 *  @copyright : Samet Tarim
 *  @author    : Samet Tarim
 *  @link      : http://www.samet-tarim.de/
 */

[draggable=true] {

    cursor: move;
}

[draggable=false] {

    cursor: not-allowed;
}

.mb-lps-drop {
    
    z-index: 999;
    
    .mb-lps-drop--zone-custom {

        overflow-y: scroll;
        overflow-x: hidden;
        min-height: 9em;
        height: 10em;
        margin: 10px auto;
        padding: 1em;
        border: 1px solid #aaaaaa;
        background: white;
        
        .box-shadow(inset 0 1px 3px 0 rgba(0,0,0,.05));
        .box-sizing();
    }
    
    .mb-lps-drop--zone-start {

        overflow-y: scroll;
        overflow-x: hidden;
        min-height: 9em;
        height: 10em;
        margin: 10px auto;
        padding: 1em;
        border: 1px solid #aaaaaa;
        background: white;
        
        .box-shadow(inset 0 1px 3px 0 rgba(0,0,0,.05));
        .box-sizing();
    }

    .mb-lps-drop--zone-enter {
        
        overflow-y: scroll;
        overflow-x: hidden;
        min-height: 9em;
        height: 10em;
        margin: 10px auto;
        padding: 1em;
        border: 1px solid #aaaaaa;
        background: white;
        
        .box-shadow(inset 0 1px 3px 0 rgba(0,0,0,.05));
        .box-sizing();
    }

    .mb-lps-drop--zone-drag {
        
        float: left;
        height: 4em;
        padding: .5em 1em;

        border: 3px dashed rgba(0,0,0,.3);
        
        &-image {
            
            width: 3em;
            height: 2.5em;
            pointer-events: none
        }
        
        img {
            
            width: 100%;
            height: 100%;
        }
    }
}