2017-03-26 21:09:19 -04:00
|
|
|
//
|
|
|
|
// Search input and autocomplete
|
|
|
|
//
|
|
|
|
|
|
|
|
.search {
|
2018-10-23 11:40:39 -04:00
|
|
|
position: relative;
|
|
|
|
z-index: 99;
|
2017-03-26 21:09:19 -04:00
|
|
|
display: none;
|
2018-10-23 11:40:39 -04:00
|
|
|
flex-grow: 1;
|
|
|
|
padding-bottom: $gutter-spacing / 2;
|
|
|
|
background-color: $white;
|
|
|
|
padding: $sp-2;
|
|
|
|
margin-bottom: $sp-3;
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
@include mq(md) {
|
2017-06-04 17:50:01 -04:00
|
|
|
display: block;
|
|
|
|
padding-top: $sp-1;
|
2018-10-23 11:40:39 -04:00
|
|
|
padding-right: 0;
|
|
|
|
padding-bottom: $sp-4;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.nav-open {
|
|
|
|
display: block;
|
2017-03-26 21:09:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-24 09:47:37 -04:00
|
|
|
.search-results-wrap {
|
2017-03-26 21:09:19 -04:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
position: absolute;
|
2017-06-04 17:50:01 -04:00
|
|
|
top: $sp-1;
|
2017-03-26 21:09:19 -04:00
|
|
|
z-index: 100;
|
|
|
|
display: block;
|
2017-04-08 18:51:14 -04:00
|
|
|
width: 300px;
|
2017-06-04 17:50:01 -04:00
|
|
|
margin-top: $gutter-spacing;
|
2017-03-26 21:09:19 -04:00
|
|
|
background: $white;
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-input-wrap {
|
|
|
|
display: flex;
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-input {
|
2017-11-08 11:23:05 -05:00
|
|
|
width: 100%;
|
2017-03-26 21:09:19 -04:00
|
|
|
padding-top: $sp-1;
|
|
|
|
padding-bottom: $sp-1;
|
|
|
|
border-top: 0;
|
|
|
|
border-right: 0;
|
2017-06-04 17:50:01 -04:00
|
|
|
border-bottom: 0;
|
2017-03-26 21:09:19 -04:00
|
|
|
border-left: 0;
|
|
|
|
order: 2;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2017-06-04 17:50:01 -04:00
|
|
|
box-shadow: none;
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
+ .search-icon {
|
|
|
|
fill: $purple-000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-icon {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: $sp-2;
|
|
|
|
fill: $grey-dk-000;
|
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results-list {
|
|
|
|
padding-left: 0;
|
2017-06-04 17:50:01 -04:00
|
|
|
margin-top: $sp-1;
|
2017-03-26 21:09:19 -04:00
|
|
|
margin-bottom: $sp-1;
|
|
|
|
list-style: none;
|
|
|
|
@include fs-3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results-list-item {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results-link {
|
|
|
|
display: block;
|
|
|
|
padding-top: $sp-1;
|
|
|
|
padding-right: $sp-3;
|
|
|
|
padding-bottom: $sp-1;
|
|
|
|
padding-left: $sp-3;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $grey-lt-000;
|
|
|
|
}
|
2017-03-24 09:47:37 -04:00
|
|
|
}
|