ChatTextarea.scss
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@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;
}