﻿/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Global Institute for Water Security | Global Water Futures
 * Copyright (c) 2020 All Rights Reserved
 * Author: Stephen O'Hearn
 *
 * Style sheet for the stephens_split_pane.
 *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.splitpane {
    width: 100%;
    height: 100px;
    display: flex;
}

.separator {
    cursor: col-resize;
    background-color: transparent;
    width: 10px;
    height: 100%;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1000;
    /* 
        important statement! prevents early cancellation of touchmove event on android, etc. 
    */
    touch-action: none; 
}

.pane1 {
    background-color: white;
    min-width: 10px;
}

.pane2 {
    background-color: transparent;
    min-width: 10px;
}

.horizontal {
    /* important class defintion - do not remove (even if empty) */
}

.vertical {
    /* important class defintion - do not remove (even if empty) */
}
