github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/webapp/javascript/ui/LoadingOverlay.module.css (about)

     1  .loadingOverlay {
     2    position: absolute;
     3    left: 0;
     4    right: 0;
     5    top: 0;
     6    bottom: 0;
     7    display: flex;
     8    justify-content: center;
     9  
    10    /* ignore all pointer events */
    11    pointer-events: all;
    12    z-index: 99;
    13    transition: all 0.5s ease-in-out;
    14    background-color: rgba(0, 0, 0, 0.7);
    15  }
    16  
    17  .unactive {
    18    background: initial;
    19    display: none;
    20  }