github.com/bosssauce/ponzu@v0.11.1-0.20200102001432-9bc41b703131/system/admin/static/editor/sass/components/_tooltip.scss (about)

     1  .material-tooltip {
     2      padding: 10px 8px;
     3      font-size: 1rem;
     4      z-index: 2000;
     5      background-color: transparent;
     6      border-radius: 2px;
     7      color: #fff;
     8      min-height: 36px;
     9      line-height: 1rem;
    10      // max-width: 350px;
    11      opacity: 0;
    12      display: none;
    13      position: absolute;
    14      text-align: center;
    15      overflow: hidden;
    16      left:0;
    17      top:0;
    18  
    19      will-change: top, left;
    20  }
    21  
    22  .backdrop {
    23    position: absolute;
    24    opacity: 0;
    25    display: none;
    26    height: 7px;
    27    width: 14px;
    28    border-radius: 0 0 14px 14px;
    29    background-color: #323232;
    30    z-index: -1;
    31    @include transform-origin( 50% 10%);
    32  
    33    will-change: transform, opacity;
    34  }