github.com/grafana/pyroscope@v1.18.0/public/app/components/TimelineChart/TooltipWrapper/styles.module.scss (about)

     1  .tooltip {
     2    z-index: 2;
     3    height: auto;
     4    width: auto;
     5    display: flex;
     6    flex-direction: column;
     7    position: fixed;
     8    background-color: var(--ps-tooltip-bg);
     9    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.3);
    10    border-radius: 4px;
    11    padding: 8px 12px;
    12    color: var(--ps-tooltip-text);
    13    pointer-events: none;
    14  
    15    // Don't show anything when there's no body
    16    // Otherwise an empty box will be shown
    17    &:empty {
    18      display: none;
    19    }
    20  }
    21  
    22  .hidden {
    23    display: none;
    24  }