-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatwindow.css
71 lines (71 loc) · 1.26 KB
/
chatwindow.css
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
69
70
71
html, body {
height: 100%;
}
body {
padding-right: 20px;
padding-left: 20px;
min-height: 100%;
}
.chat {
list-style: none;
margin: 0;
padding: 0;
}
.chat li {
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dotted #B3A9A9;
}
.chat li.left .chat-body {
margin-left: 60px;
}
.chat li.right .chat-body {
margin-right: 60px;
}
.chat li .chat-body p {
margin: 0;
color: #777777;
}
.panel .slidedown .glyphicon, .chat .glyphicon {
margin-right: 5px;
}
.panel-body {
display: block;
overflow-y: scroll;
word-wrap: break-word;
height: calc(82% - 5px);
min-height: 250px;
position: fixed;
width: 100%;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #F5F5F5;
}
::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
background-color: #555;
}
.input-group-btn {
font-size: 12px;
}
.pull-left .img-circle {
margin-right: 10px;
}
.pull-right .img-circle {
margin-left: 10px;
}
.panel-footer {
position: fixed;
margin-top: -5px;
bottom: 0;
width: 100%;
}
.collapse.in {
position: fixed;
height: 100%;
}