mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-18 00:17:25 +00:00
34 lines
592 B
SCSS
34 lines
592 B
SCSS
@import "foundation/variables";
|
|
@import "foundation/components/global";
|
|
|
|
ul.ui-autocomplete {
|
|
position: absolute;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: solid 1px #999;
|
|
cursor: default;
|
|
li {
|
|
background-color: #FFF;
|
|
border-top: solid 1px #DDD;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 0.7em;
|
|
a {
|
|
color: #000;
|
|
display: block;
|
|
padding: 3px;
|
|
|
|
&:visited {
|
|
color: #000;
|
|
}
|
|
|
|
&:hover {
|
|
color: $primary-color
|
|
}
|
|
}
|
|
a.ui-state-hover, a.ui-state-active {
|
|
background-color: #FFFCB2;
|
|
}
|
|
}
|
|
} |