blob: 2890556e8a82b4e19ae5b46ab219f8423b92e531 (
plain) (
blame)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
|
* {
word-wrap: break-word;
word-break: break-word;
}
html {
padding: 0;
margin: 0;
}
body {
padding: 6px;
margin: 0;
}
.content {
width: 98%;
margin: 0;
padding: 0;
margin-bottom: 6px;
}
.header {
width: 100%;
height: 24px;
padding: 3px;
margin: 0;
}
.header .avatar {
height: 24px;
width: auto;
float: left;
}
.header .sender {
font-weight: bold;
padding-left: 3px;
}
.header .timestamp {
float: right;
font-style: italic;
margin-right: 3px;
}
.message, .status {
padding: 3px;
width: 100%;
}
.status {
font-style: italic;
color: #939373;
}
div.action.message {
font-style: italic;
}
.actionMessageUserName {
display: inline;
}
.actionMessageUserName::before {
content: " * ";
}
.actionMessageUserName::after {
content: " ";
}
div.message.action span.message::before {
content: " * ";
}
.actionMessageBody::before,
.actionMessageBody::after {
content: " ";
}
::selection {
background: #4a90d9;
}
|