summaryrefslogtreecommitdiffstats
path: root/assets/sass/@primer/css/autocomplete/autocomplete.scss
blob: 5c5d1f8851ab31170b7ee02de0acdc15aa9b9ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// A pop up list of items used to show autocompleted results
.autocomplete-results {
  position: absolute;
  z-index: 99;
  width: 100%;
  max-height: 20em;
  overflow-y: auto;
  // stylelint-disable-next-line primer/typography
  font-size: 13px;
  list-style: none;
  background: $bg-white;
  border-radius: $border-radius;
  // stylelint-disable-next-line primer/box-shadow
  box-shadow: 0 0 5px $black-fade-30;
}

// One of the items that appears within an autocomplete group
// Bold black text on white background

.autocomplete-item {
  display: block;
  padding: $spacer-1 $spacer-2;
  overflow: hidden;
  font-weight: $font-weight-bold;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;

  &:hover,
  &.selected,
  &[aria-selected=true],
  &.navigation-focus {
    color: $text-white;
    text-decoration: none;
    background-color: $bg-blue;

    // Inherit color on all child elements to ensure enough contrast
    * {
      color: inherit !important;
    }
  }
}