Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/chatlog/chatlog.css
12242 views
1
/**
2
* @provides phabricator-chatlog-css
3
*/
4
5
.device-phone .phabricator-chat-log-wrap {
6
padding: 0;
7
}
8
9
.phabricator-chat-log-pager-bottom {
10
padding: 8px 4px 16px;
11
font-weight: bold;
12
float: right;
13
}
14
15
.phabricator-chat-log-pager-bottom a {
16
padding: 2px 3px;
17
}
18
19
.phabricator-chat-log-panel {
20
clear: both;
21
}
22
23
.phabricator-chat-log {
24
width: 100%;
25
}
26
27
.phabricator-chat-log td {
28
padding: 8px;
29
line-height: 18px;
30
}
31
32
.phabricator-chat-log tr {
33
background: #fff;
34
}
35
36
.phabricator-chat-log tr td.author {
37
background: {$greybackground};
38
}
39
40
.phabricator-chat-log tr.alternate {
41
border-top: 1px solid {$thinblueborder};
42
border-bottom: 1px solid {$thinblueborder};
43
}
44
45
.phabricator-chat-log tr.alternate td.author {
46
background: {$lightgreybackground};
47
}
48
49
.phabricator-chat-log tr.highlight td {
50
background: {$lightyellow};
51
}
52
53
.phabricator-chat-log td.timestamp {
54
white-space: nowrap;
55
text-align: right;
56
width: 12em;
57
}
58
59
.phabricator-chat-log td.message .timestamp {
60
color: {$bluetext};
61
font-size: {$smallestfontsize};
62
float: right;
63
margin-left: 5px;
64
}
65
66
.phabricator-chat-log td.author {
67
white-space: nowrap;
68
text-align: right;
69
font-weight: bold;
70
width: 140px;
71
color: {$darkbluetext};
72
}
73
74
.device-phone .phabricator-chat-log td.author {
75
width: 80px;
76
}
77
78
.phabricator-chat-log td.message {
79
white-space: pre-wrap;
80
word-break: break-word;
81
}
82
83