2019-12-18 21:25:03 +00:00
|
|
|
// Search entry
|
|
|
|
|
|
|
|
$search_entry_width: 320px;
|
2019-12-20 00:05:46 +00:00
|
|
|
$search_entry_height: 36px;
|
2019-12-18 21:25:03 +00:00
|
|
|
|
|
|
|
%search_entry,
|
|
|
|
.search-entry {
|
2019-12-20 00:05:46 +00:00
|
|
|
border-radius: $search_entry_height * 0.5; // half the height
|
2022-02-07 18:22:40 +00:00
|
|
|
|
|
|
|
margin-top: $base_padding * 2;
|
|
|
|
margin-bottom: $base_padding;
|
2021-12-28 13:46:54 +00:00
|
|
|
padding: $base_padding+1 $base_padding+3;
|
|
|
|
width: $search_entry_width;
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2022-02-07 18:22:40 +00:00
|
|
|
@include entry(normal);
|
|
|
|
&:hover { @include entry(hover);}
|
|
|
|
&:focus { @include entry(focus);}
|
|
|
|
&:insensitive { @include entry(insensitive);}
|
2019-12-18 21:25:03 +00:00
|
|
|
|
2022-02-07 18:22:40 +00:00
|
|
|
.search-entry-icon {
|
2021-12-28 13:46:54 +00:00
|
|
|
color: inherit;
|
2019-12-19 15:38:27 +00:00
|
|
|
icon-size: $base_icon_size;
|
2021-12-28 13:46:54 +00:00
|
|
|
margin-top: 2px; // center vertically
|
2019-12-19 15:38:27 +00:00
|
|
|
padding: 0 4px;
|
|
|
|
}
|
2021-02-22 11:46:42 +00:00
|
|
|
}
|