-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmessage.css
71 lines (68 loc) · 1.58 KB
/
message.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
.plaintext {
white-space: pre-wrap;
}
#msg-headers {
display: table;
padding-left: 5px;
padding-bottom: 5px;
}
#msg-headers > div {
display: table-row;
}
.hdr-name, .hdr-val {
display: table-cell;
}
.hdr-name {
text-align: right;
padding-right: 4px;
font-weight: 500;
}
.msg-body {
padding-top: 10px;
padding-bottom: 10px;
border-top: 1px solid gray;
word-wrap: break-word;
}
.msg-attachments h4 {
font-weight: 500;
}
.msg-attachment-detached {
text-decoration: line-through;
color: #6f6f6f;
}
/* This is the root quote depth (no quoting), i.e. it's leftmost */
.plaintext-ff {
padding-left: 12px;
white-space: pre-wrap;
}
.plaintext-ff-sub {
margin-top: 10px;
margin-bottom: 7px;
padding-left: 12px;
border-left-style: solid;
border-left-width: 2px;
border-left-color: gray;
width: inherit;
}
/* Same colors as Mozilla clients.
* These will override the default border-left-color for plaintext-ff-sub, up through 9 levels of nested quoting */
.plaintext-quote-depth-1 {
border-left-color: #729FCF;
}
.plaintext-quote-depth-2 {
border-left-color: #AD7FA8;
}
.plaintext-quote-depth-3 {
border-left-color: #8AE234;
}
.plaintext-quote-depth-4 {
border-left-color: #FCAF3E;
}
.plaintext-quote-depth-5, .plaintext-quote-depth-6, .plaintext-quote-depth-7, .plaintext-quote-depth-8, .plaintext-quote-depth-9 {
border-left-color: #E9B96E;
}
#html-body iframe {
width: 100%;
border: 0;
height: calc(100% - 200px); /* Ideally, this would be "remainder of page", 100% - the headers, but there's no good way to do that? */
}