/* grid.css. Default styles for widget.grid classes */


.Grid-outerBox{
    background-color: #EEE;
    font-size: 10pt;
    font-family: Verdana
}

.Grid-Header{
    background-color: #D8D8D8;
    color: black;

    border-right : 2px solid #DDD;

    padding: 2px;

}

.Grid-cell{
    border-bottom: dotted grey 1px;
}

.Grid-cellContent{
padding: 2px;
}


/* Used in com.valesoft.ui.widget.grid.Header  to indicate an engaged filter*/
.flashYellowBackground {
    animation-name: flashYellowBackgroundAnim;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes flashYellowBackgroundAnim {
    from {background-color: yellow;}
    to {background-color: transparent;}
}