﻿/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Global Institute for Water Security | Global Water Futures
 * Copyright (c) 2020 All Rights Reserved
 * Author: Stephen O'Hearn
 *
 * Style sheet for Image ("imx") controls
 *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.gwf-table-visualelement-image {
}

.imx-tf {
    border: 5px solid black;
}

.imx {
    position: static; /* experimental for z-index*/
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 6px;
    z-index: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0);
}

    .imx:hover {
        border: 1px dashed cadetblue;
        border-radius: 10px;
    }


.imx-menu {
    border: 5px solid lavender;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 50;
    float: left;
    background-color: azure;
    color: black;
    font-size: 10pt;
    text-align: left;
    transform: translateY(-25px);
}

    .imx-menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: inherit;
    }
        .imx-menu ul li {
            list-style-type: none;
            margin: 0;
            padding: 4px;
            overflow: hidden;
            padding-left: 10px;
        }
        .imx-menu ul li:hover {
            list-style-type: none;
            margin: 0;
            padding: 4px;
            overflow: hidden;
            padding-left: 10px;
            background-color:white;
        }
