
.history {
    border: 2px solid darkgrey;
    background-color: lightgrey;

    clear: both;
    overflow-wrap: normal;
    overflow: visible; /*hidden*/
}

.history div {
    float: left;
    width: 20px;
    height: 20px;
    margin: 5px;

    border: 2px solid darkgray;
    background-color: yellow;
    cursor: wait;
}

.history div.loaded {
    background-color: green;
    cursor: pointer;
}

.history div.failed {
    background-color: red;
    cursor: not-allowed;
}

/*
 from: https://perishablepress.com/new-clearfix-hack/
 */
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: -3;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix { display: inline-table; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

.tooltip:hover {
    z-index:1
}