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