github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/styles/components/global-search-dropdown.scss (about)

     1  .global-search-dropdown {
     2    background: transparent;
     3    border: 0;
     4    position: fixed;
     5  
     6    .ember-power-select-search {
     7      margin-left: $icon-dimensions;
     8      border: 0;
     9    }
    10  
    11    input,
    12    input:focus {
    13      background: transparent;
    14      border: 0;
    15      outline: 0;
    16    }
    17  
    18    // Prevent Safari from disrupting styling, adapted from http://geek.michaelgrace.org/2011/06/webkit-search-input-styling/
    19    input[type='search'] {
    20      -webkit-appearance: textfield;
    21    }
    22  
    23    input::-webkit-search-decoration,
    24    input::-webkit-search-cancel-button {
    25      display: none;
    26    }
    27  
    28    .ember-power-select-options {
    29      background: white;
    30      padding: 0.35rem;
    31  
    32      &[role='listbox'] {
    33        border: 1px solid $grey-blue;
    34        box-shadow: 0 6px 8px -2px rgba($black, 0.05), 0 8px 4px -4px rgba($black, 0.1);
    35      }
    36  
    37      .ember-power-select-option {
    38        padding: 0.2rem 0.4rem;
    39        border-radius: $radius;
    40  
    41        &[aria-current='true'] {
    42          background: transparentize($blue, 0.8);
    43          color: $blue;
    44        }
    45  
    46        .highlighted {
    47          font-weight: $weight-semibold;
    48        }
    49      }
    50    }
    51  
    52    .ember-power-select-group-name {
    53      text-transform: uppercase;
    54      display: inline;
    55      color: darken($grey-blue, 20%);
    56      font-size: $size-7;
    57      font-weight: $weight-semibold;
    58    }
    59  }