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

     1  .dropdown-content {
     2    @extend .z-depth-1;
     3    background-color: $dropdown-bg-color;
     4    margin: 0;
     5    display: none;
     6    min-width: 100px;
     7    max-height: 650px;
     8    overflow-y: auto;
     9    opacity: 0;
    10    position: absolute;
    11    z-index: 999;
    12    will-change: width, height;
    13  
    14    li {
    15      clear: both;
    16      color: $off-black;
    17      cursor: pointer;
    18      line-height: 1.5rem;
    19      width: 100%;
    20      text-align: left;
    21      text-transform: none;
    22  
    23      &:hover, &.active {
    24        background-color: $dropdown-hover-bg-color;
    25      }
    26  
    27      & > a, & > span {
    28        font-size: 1.2rem;
    29        color: $dropdown-color;
    30        display: block;
    31        padding: 1rem 1rem;
    32      }
    33  
    34      // Icon alignment override
    35      & > a > i {
    36        height: inherit;
    37        line-height: inherit;
    38      }
    39    }
    40  }