69 lines
948 B
SCSS
69 lines
948 B
SCSS
.chat-search {
|
|
position: absolute !important;
|
|
top: 0;
|
|
z-index: 2;
|
|
|
|
&-footer {
|
|
height: 46px;
|
|
padding: 0 8px;
|
|
flex: 0 0 auto;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-shadow: 0px -1px 5px -1px rgba(0, 0, 0, .21);
|
|
overflow: hidden;
|
|
|
|
.chat-search-count {
|
|
margin-left: 8px;
|
|
color: #949596;
|
|
}
|
|
|
|
& + .chat-input {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&-count {
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
&:not(:empty) + .btn-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&-controls {
|
|
display: flex;
|
|
}
|
|
|
|
&-results {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
background-color: #fff;
|
|
transition: .2s ease;
|
|
|
|
body.animation-level-0 & {
|
|
transition: none;
|
|
}
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.tgico-up {
|
|
margin-right: 2px;
|
|
}
|
|
}
|