blob: 5ac54219dc0638c1486c6971c1f9cf063021d69c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// Needs refactoring
// stylelint-disable selector-max-type, selector-no-qualifying-type
.suggester {
position: relative;
top: 0;
left: 0;
min-width: 180px;
padding: 0;
margin: 0;
margin-top: $spacer-4;
list-style: none;
cursor: pointer;
background: $bg-white;
border: $border;
border-radius: $border-radius;
box-shadow: $box-shadow-medium;
li {
display: block;
padding: $spacer-1 $spacer-2;
font-weight: $font-weight-bold;
border-bottom: $border;
small {
font-weight: $font-weight-normal;
color: $text-gray;
}
&:last-child {
border-bottom: 0;
border-bottom-right-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
&:first-child {
border-top-left-radius: $border-radius;
border-top-right-radius: $border-radius;
}
&:hover,
&[aria-selected="true"],
&.navigation-focus {
color: $text-white;
text-decoration: none;
background: $bg-blue;
small {
color: $text-white;
}
}
}
}
.suggester-container {
position: absolute;
top: 0;
left: 0;
z-index: 30;
}
// Responsive
.page-responsive {
@media (max-width: $width-sm) {
.suggester-container {
right: $spacer-2 !important;
left: $spacer-2 !important;
}
.suggester li {
padding: $spacer-2 $spacer-3;
}
}
}
|