Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80679 views
1
/**
2
* This file is provided by Facebook for testing and evaluation purposes
3
* only. Facebook reserves all rights not expressly granted.
4
*
5
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
8
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
9
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
10
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11
*/
12
13
.chatapp {
14
font-family: 'Muli', 'Helvetica Neue', helvetica, arial;
15
max-width: 760px;
16
margin: 20px auto;
17
overflow: hidden;
18
}
19
20
.message-list, .thread-list {
21
border: 1px solid #ccf;
22
font-size: 16px;
23
height: 400px;
24
margin: 0;
25
overflow-y: auto;
26
padding: 0;
27
}
28
29
.message-section {
30
float: right;
31
width: 65%;
32
}
33
34
.thread-section {
35
float: left;
36
width: 32.5%;
37
}
38
39
.message-thread-heading,
40
.thread-count {
41
height: 40px;
42
margin: 0;
43
}
44
45
.message-list-item, .thread-list-item {
46
list-style: none;
47
padding: 12px 14px 14px;
48
}
49
50
.thread-list-item {
51
border-bottom: 1px solid #ccc;
52
cursor: pointer;
53
}
54
55
.thread-list:hover .thread-list-item:hover {
56
background-color: #f8f8ff;
57
}
58
59
.thread-list:hover .thread-list-item {
60
background-color: #fff;
61
}
62
63
.thread-list-item.active,
64
.thread-list:hover .thread-list-item.active,
65
.thread-list:hover .thread-list-item.active:hover {
66
background-color: #efefff;
67
cursor: default;
68
}
69
70
.message-author-name,
71
.thread-name {
72
color: #66c;
73
float: left;
74
font-size: 13px;
75
margin: 0;
76
}
77
78
.message-time, .thread-time {
79
color: #aad;
80
float: right;
81
font-size: 12px;
82
}
83
84
.message-text, .thread-last-message {
85
clear: both;
86
font-size: 14px;
87
padding-top: 10px;
88
}
89
90
.message-composer {
91
box-sizing: border-box;
92
font-family: inherit;
93
font-size: 14px;
94
height: 5em;
95
width: 100%;
96
margin: 20px 0 0;
97
padding: 10px;
98
}
99
100