mirror of https://github.com/vector-im/riot-web
78 lines
1.7 KiB
SCSS
78 lines
1.7 KiB
SCSS
/*
|
|
Copyright 2016 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_SearchableEntityList {
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
}
|
|
|
|
.mx_SearchableEntityList_query {
|
|
font-family: $font-family;
|
|
border-radius: 3px;
|
|
border: 1px solid $input-border-color;
|
|
padding: 9px;
|
|
color: $primary-fg-color;
|
|
background-color: $primary-bg-color;
|
|
margin-left: 3px;
|
|
font-size: 15px;
|
|
margin-bottom: 8px;
|
|
width: 189px;
|
|
}
|
|
|
|
.mx_SearchableEntityList_query::-moz-placeholder {
|
|
color: $primary-fg-color;
|
|
opacity: 0.5;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mx_SearchableEntityList_query::-webkit-input-placeholder {
|
|
color: $primary-fg-color;
|
|
opacity: 0.5;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mx_SearchableEntityList_listWrapper {
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.mx_SearchableEntityList_list {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.mx_SearchableEntityList_list .mx_EntityTile_chevron {
|
|
display: none;
|
|
}
|
|
|
|
.mx_SearchableEntityList_hrWrapper {
|
|
width: 100%;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.mx_SearchableEntityList hr {
|
|
height: 1px;
|
|
border: 0px;
|
|
color: $primary-fg-color;
|
|
background-color: $primary-fg-color;
|
|
margin-right: 15px;
|
|
margin-top: 11px;
|
|
margin-bottom: 11px;
|
|
}
|