﻿
/* vertical panel */

.panel-container-vertical {
    display: flex;
    flex-direction: column;
    height: 95%;    
    width:100%;
    overflow: hidden;
    /*padding-top:10px;*/
}

.panel-top {
    flex: 0 0 auto;
    /* only manually resize */
    padding: 10px;
    width: 100%;
    height:50%;
    min-height:100px;
}

.splitter-horizontal {
    flex: 0 0 auto;
    height: 18px;
    background: url(../images/hsizegrip.png) center center no-repeat silver;
    cursor: row-resize;
}

.panel-bottom {
    flex: 1 1 auto;
    height: 50%;
    min-height: 100px;
    /* resizable */
    /*padding: 10px;
    min-height: 200px;
    background: #eee;*/
}
