html, body {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    color: var(--fontColorNormal);
    background-color: var(--backgroundDark);
    font-family: 'Roboto', sans-serif;
    /* font-weight: 500; */
    overflow: hidden;
    font-size: 10pt;
}

/**
    BugFix for Monaco editor. Without this code editor pane of References-Widget is 5px wide and 5px high
**/
.inline {
    height:100% !important;
    width:100% !important;
}