2017-06-02 07:00:42 -05:00
|
|
|
.search-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2017-08-15 08:25:18 -05:00
|
|
|
bottom: 0;
|
2017-06-02 07:00:42 -05:00
|
|
|
top: $navbarHeight;
|
|
|
|
z-index: $zindex-modal-backdrop;
|
|
|
|
background-color: $black;
|
|
|
|
@include opacity(70);
|
|
|
|
}
|
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
.search-container {
|
2017-08-15 08:25:18 -05:00
|
|
|
left: $side-menu-width;
|
2017-06-02 07:00:42 -05:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2017-06-08 06:56:51 -05:00
|
|
|
bottom: 0;
|
2017-06-02 07:00:42 -05:00
|
|
|
z-index: ($zindex-modal-backdrop + 10);
|
2017-06-08 06:56:51 -05:00
|
|
|
position: fixed;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Search
|
|
|
|
.search-field-wrapper {
|
2017-06-02 07:00:42 -05:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
2017-11-23 04:37:59 -06:00
|
|
|
background-color: $navbarBackground;
|
|
|
|
box-shadow: $navbarShadow;
|
|
|
|
position: relative;
|
2017-06-02 07:00:42 -05:00
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
input {
|
2017-06-02 07:00:42 -05:00
|
|
|
max-width: 653px;
|
|
|
|
//padding: 0.5rem 1.5rem 0.5rem 0;
|
|
|
|
padding: 1rem 1rem 0.75rem 1rem;
|
|
|
|
height: 51px;
|
|
|
|
line-height: 51px;
|
2016-02-15 08:27:41 -06:00
|
|
|
box-sizing: border-box;
|
2017-06-02 07:00:42 -05:00
|
|
|
outline: none;
|
|
|
|
background: $side-menu-bg;
|
|
|
|
background-color: $navbarButtonBackground;
|
|
|
|
flex-grow: 10;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2017-06-02 07:00:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-field-spacer {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2017-06-08 06:56:51 -05:00
|
|
|
|
2017-06-02 07:00:42 -05:00
|
|
|
.search-switches {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 1rem 1rem 0.75rem 1rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-field-icon {
|
|
|
|
font-size: $font-size-lg;
|
2017-06-08 06:56:51 -05:00
|
|
|
padding: 1rem 1rem 0.75rem 1.5rem;
|
2017-06-02 07:00:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-dropdown {
|
|
|
|
display: flex;
|
2017-06-02 07:19:39 -05:00
|
|
|
flex-direction: column;
|
2017-11-01 10:59:20 -05:00
|
|
|
max-width: 800px;
|
2017-11-23 04:37:59 -06:00
|
|
|
background: $page-bg;
|
2017-11-01 10:59:20 -05:00
|
|
|
height: calc(100% - #{$navbarHeight});
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-results-container {
|
2017-08-15 16:17:34 -05:00
|
|
|
height: 100%;
|
2016-02-15 08:27:41 -06:00
|
|
|
display: block;
|
2017-06-02 07:00:42 -05:00
|
|
|
padding: $spacer;
|
2017-11-23 04:12:32 -06:00
|
|
|
position: relative;
|
2017-06-02 07:00:42 -05:00
|
|
|
flex-grow: 10;
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2017-11-23 04:49:50 -06:00
|
|
|
.label-tag {
|
|
|
|
margin-left: 6px;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 2px 6px;
|
|
|
|
}
|
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
.selected {
|
|
|
|
.search-result-tag {
|
|
|
|
opacity: 0.70;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
2017-11-01 10:59:20 -05:00
|
|
|
}
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
.search-section__header {
|
|
|
|
font-size: $font-size-h6;
|
|
|
|
padding: 0.6rem 0;
|
|
|
|
color: $text-color-weak;
|
|
|
|
display: flex;
|
2017-11-23 04:49:50 -06:00
|
|
|
flex-grow: 1;
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
&:hover {
|
|
|
|
color: $text-color-weak;
|
|
|
|
.search-section__header__toggle {
|
|
|
|
background: $tight-form-func-bg;
|
|
|
|
color: $link-hover-color;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
}
|
2017-06-23 15:00:26 -05:00
|
|
|
}
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2017-11-23 04:49:50 -06:00
|
|
|
.search-section__header__with-checkbox {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
.search-section__header__icon {
|
2017-06-23 15:00:26 -05:00
|
|
|
padding: 3px 10px;
|
2017-11-01 10:59:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-section__header__toggle {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-section__header__text {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2017-11-23 04:49:50 -06:00
|
|
|
.search-item__with-checkbox {
|
|
|
|
display: flex;
|
2017-11-23 07:59:52 -06:00
|
|
|
|
|
|
|
.search-item {
|
|
|
|
margin: 1px 3px;
|
|
|
|
}
|
2017-11-23 04:49:50 -06:00
|
|
|
}
|
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
.search-item {
|
2017-11-23 05:54:12 -06:00
|
|
|
@include list-item();
|
|
|
|
@include left-brand-border();
|
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
display: flex;
|
2017-11-23 04:49:50 -06:00
|
|
|
flex-grow: 1;
|
2017-11-20 09:21:50 -06:00
|
|
|
height: 37px;
|
2017-06-23 15:00:26 -05:00
|
|
|
white-space: nowrap;
|
2017-11-23 05:54:12 -06:00
|
|
|
padding: 0px;
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2017-06-23 15:00:26 -05:00
|
|
|
&:hover {
|
2017-11-23 06:01:19 -06:00
|
|
|
@include left-brand-border-gradient();
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
2017-06-23 15:00:26 -05:00
|
|
|
&.selected {
|
2017-11-23 05:54:12 -06:00
|
|
|
background: $list-item-hover-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2017-11-01 10:59:20 -05:00
|
|
|
}
|
2017-11-23 04:37:59 -06:00
|
|
|
|
2017-11-20 09:21:50 -06:00
|
|
|
.search-item__body {
|
2017-11-01 10:59:20 -05:00
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: hidden;
|
2017-11-20 09:21:50 -06:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-item__body-title {
|
2017-11-23 05:54:12 -06:00
|
|
|
color: $list-item-link-color;
|
2017-11-20 09:21:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-item__body-sub-title {
|
|
|
|
color: $text-muted;
|
|
|
|
font-size: $font-size-sm;
|
|
|
|
line-height: 9pt;
|
2017-11-01 10:59:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-item__icon {
|
|
|
|
padding: 5px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-size: 19px;
|
2017-11-01 14:26:14 -05:00
|
|
|
padding: 5px 2px 5px 10px;
|
2017-11-01 10:59:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-item__tags {
|
|
|
|
padding: 8px;
|
2017-06-08 06:56:51 -05:00
|
|
|
}
|
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
.search-item__actions {
|
2017-11-24 09:54:55 -06:00
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-item__actions__item {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-item:hover {
|
|
|
|
.search-item__actions__item {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2017-06-02 07:19:39 -05:00
|
|
|
}
|
2017-06-23 15:00:26 -05:00
|
|
|
|
2017-11-01 10:59:20 -05:00
|
|
|
.search-button-row {
|
|
|
|
text-align: center;
|
|
|
|
padding: $spacer*2 $spacer;
|
|
|
|
}
|