github.com/mweagle/Sparta@v1.15.0/docs_source/themes/hugo-theme-learn/static/css/auto-complete.css (about)

     1  .autocomplete-suggestions {
     2      text-align: left;
     3      cursor: default;
     4      border: 1px solid #ccc;
     5      border-top: 0;
     6      background: #fff;
     7      box-shadow: -1px 1px 3px rgba(0,0,0,.1);
     8  
     9      /* core styles should not be changed */
    10      position: absolute;
    11      display: none;
    12      z-index: 9999;
    13      max-height: 254px;
    14      overflow: hidden;
    15      overflow-y: auto;
    16      box-sizing: border-box;
    17      
    18  }
    19  .autocomplete-suggestion {
    20      position: relative;
    21      cursor: pointer;
    22      padding: 7px;
    23      line-height: 23px;
    24      white-space: nowrap;
    25      overflow: hidden;
    26      text-overflow: ellipsis;
    27      color: #333;
    28  }
    29  
    30  .autocomplete-suggestion b {
    31      font-weight: normal;
    32      color: #1f8dd6;
    33  }
    34  
    35  .autocomplete-suggestion.selected {
    36      background: #333;
    37      color: #fff;
    38  }
    39  
    40  .autocomplete-suggestion:hover {
    41      background: #444;
    42      color: #fff;
    43  }
    44  
    45  .autocomplete-suggestion > .context {
    46      font-size: 12px;
    47  }