notes/_sass/search.scss

168 lines
2.8 KiB
SCSS
Raw Normal View History

2017-03-27 01:09:19 +00:00
//
// Search input and autocomplete
//
.search {
2018-10-23 15:40:39 +00:00
position: relative;
z-index: 99;
flex-grow: 1;
height: 100%;
2018-10-23 15:40:39 +00:00
margin-bottom: $sp-3;
2017-03-27 01:09:19 +00:00
@include mq(md) {
2018-10-23 15:40:39 +00:00
margin-bottom: 0;
2017-03-27 01:09:19 +00:00
}
}
.search-input-wrap {
display: flex;
height: 100%;
padding: $sp-2;
2019-08-13 21:24:23 +00:00
background-color: $search-background-color;
border-radius: $border-radius;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
@include mq(md) {
padding-top: 0;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
2019-05-19 00:41:40 +00:00
background-color: $body-background-color;
2019-08-13 21:24:23 +00:00
border-radius: 0;
box-shadow: none;
}
2017-03-27 01:09:19 +00:00
}
.search-input {
align-self: center;
2017-11-08 16:23:05 +00:00
width: 100%;
2017-03-27 01:09:19 +00:00
padding-top: $sp-1;
padding-bottom: $sp-1;
2019-05-19 00:41:40 +00:00
background-color: $search-background-color;
2017-03-27 01:09:19 +00:00
border-top: 0;
border-right: 0;
2017-06-04 21:50:01 +00:00
border-bottom: 0;
2017-03-27 01:09:19 +00:00
border-left: 0;
order: 2;
2019-05-19 00:41:40 +00:00
@include fs-4;
2017-03-27 01:09:19 +00:00
&:focus {
outline: 0;
2017-06-04 21:50:01 +00:00
box-shadow: none;
2017-03-27 01:09:19 +00:00
+ .search-icon {
2018-11-18 16:07:45 +00:00
fill: $link-color;
2017-03-27 01:09:19 +00:00
}
}
2018-10-24 18:05:29 +00:00
@include mq(md) {
2019-05-19 00:41:40 +00:00
background-color: $body-background-color;
@include fs-3;
2018-10-24 18:05:29 +00:00
}
2017-03-27 01:09:19 +00:00
}
.search-icon {
align-self: center;
margin-right: $sp-2;
fill: $grey-dk-000;
order: 1;
}
.search-results-wrap {
position: absolute;
z-index: 100;
2019-08-13 21:24:23 +00:00
display: none;
width: 100%;
2019-05-19 00:41:40 +00:00
background: $search-background-color;
2019-08-13 21:24:23 +00:00
border-radius: $border-radius;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
&.active {
display: block;
}
@include mq(md) {
width: $search-results-width;
}
}
2017-03-27 01:09:19 +00:00
.search-results-list {
padding-left: 0;
2017-06-04 21:50:01 +00:00
margin-top: $sp-1;
2017-03-27 01:09:19 +00:00
margin-bottom: $sp-1;
list-style: none;
@include fs-4;
@include mq(md) {
@include fs-3;
}
2017-03-27 01:09:19 +00:00
}
.search-results-list-item {
padding: 0;
margin: 0;
}
.search-result {
2017-03-27 01:09:19 +00:00
display: block;
padding-top: $sp-1;
2019-08-13 21:24:36 +00:00
padding-right: $sp-3;
2017-03-27 01:09:19 +00:00
padding-bottom: $sp-1;
padding-left: $sp-3;
2019-08-13 21:24:36 +00:00
&:hover,
&.active {
background-color: $sidebar-color;
}
@include mq(md) {
padding-right: $sp-4;
2019-08-13 21:24:36 +00:00
padding-left: $sp-4;
}
2019-08-13 21:24:36 +00:00
}
2019-08-13 21:24:36 +00:00
.search-result-title {
display: block;
padding-top: $sp-2;
padding-right: $sp-4;
padding-bottom: $sp-2;
@include mq(sm) {
display: inline-block;
width: 40%;
word-wrap: break-word;
vertical-align: top;
}
2019-08-13 21:24:36 +00:00
}
2019-08-13 21:24:36 +00:00
.search-result-rel-url {
display: block;
overflow: hidden;
color: $search-result-preview-color;
text-overflow: ellipsis;
white-space: nowrap;
@include fs-1;
}
2019-08-13 21:24:36 +00:00
.search-result-preview {
display: block;
padding-top: $sp-2;
padding-bottom: $sp-2;
padding-left: $sp-4;
color: $search-result-preview-color;
border-left: $border;
border-left-color: $border-color;
@include fs-2;
@include mq(sm) {
display: inline-block;
width: 60%;
vertical-align: top;
2017-03-27 01:09:19 +00:00
}
2017-03-24 13:47:37 +00:00
}
2019-08-13 21:24:36 +00:00
.search-result-highlight {
font-weight: bold;
color: $link-color;
}