﻿
/* 
    This class is used in GeoPortal-EventHandlers.js to identify an emelent as draggable.
    Any item which is indented to support dragging and dropping should include this class in its class list.
*/
.honi-drag-drop-item {
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/*
    Specifies the style of a drag and drop item while it is being dragged.
    These styles can safley be overridden.
*/
.honi-drag-drop-item.honi-dragging {
    font-size: 110%;
    padding: 20px;
    opacity: 0.9;
    position: absolute;
    z-index: 10;
    width: auto;
    max-width: 450px;
}


