ChatTextarea.scss 1.4 KB
@import "../../../scss/bootstrap/variables";
.suggestion_overlay{
	position: absolute;
	max-height: 322px;
	overflow-y: auto;
	left: -1px;
	right: -1px;
	background: #fff;
	bottom: 100%;
	margin-bottom: 1px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-radius: 4px 4px 0 0;
}

.contact_name{
	cursor: pointer;
	color: #383838;
	line-height: 24px;
	padding: 8px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	position: relative;
	-moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 0;
    -moz-flex-direction: row;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.img_circle {
    border-radius: 50%;
    background-position: 50%;
}

.avatar {
	width: 25px;
	height: 25px;
    display: inline-block;
    box-sizing: content-box;
    overflow: hidden;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.name{
	margin-left:5px; 
}

.active{
    background-color: #f5f5f5;
}