sync both themes with toolkit windows/shared changes in Mozilla 27 cycle
[themes.git] / EarlyBlue / messenger / messageBody.css
... / ...
CommitLineData
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5@import url("chrome://communicator/skin/smileys.css");
6
7@namespace url("http://www.w3.org/1999/xhtml");
8
9/* ===== messageBody.css =================================================
10 == Styles for the body of a mail message.
11 ======================================================================= */
12
13/* :::: message header ::::: */
14
15.header-part1 {
16 border-left: 4px solid #EFEFEF;
17 background-color: #EFEFEF;
18}
19
20.header-part2,
21.header-part3 {
22 border: 4px solid #DEDEDE;
23 background-color: #DEDEDE;
24}
25
26.headerdisplayname {
27 display: inline;
28 font-weight: bold;
29 white-space: pre;
30}
31
32/* ::::: message text, incl. quotes ::::: */
33
34.moz-text-flowed blockquote {
35 margin: inherit;
36 border-width: medium;
37 border-color: gray;
38}
39
40.moz-text-plain pre {
41 margin: inherit;
42 font-family: inherit;
43}
44
45.moz-text-plain[wrap="true"] {
46 white-space: pre-wrap;
47}
48
49.moz-text-plain[wrap="false"] {
50 white-space: pre;
51}
52
53.moz-text-plain[wrap="flow"] .moz-txt-sig {
54 white-space: pre-wrap;
55}
56
57.moz-text-plain[graphical-quote="false"] blockquote {
58 margin: inherit;
59 border-left: inherit;
60 -moz-padding-start: inherit;
61}
62
63.moz-text-plain[graphical-quote="true"] blockquote {
64 margin: inherit;
65 border-width: medium;
66 border-color: gray;
67}
68
69.moz-text-plain[graphical-quote="true"] .moz-txt-citetags {
70 display: none;
71}
72
73.moz-txt-underscore {
74 text-decoration: underline;
75}
76
77.moz-txt-formfeed {
78 display: block;
79 height: 100%;
80}
81
82/* ::::: signature ::::: */
83
84@media not print {
85 .moz-txt-sig,
86 .moz-signature {
87 opacity: 0.5;
88 }
89}
90
91/* ::::: vcard ::::: */
92
93.moz-vcard-table {
94 /* border-radius: 8px; */
95 border: thin solid #6666CC;
96 margin-top: 10px;
97}
98
99.moz-vcard-property {
100 font-size: 80%;
101 color: #666699;
102}
103
104.moz-vcard-title-property {
105 padding-bottom: 10px;
106}
107
108.moz-vcard-badge {
109 height: 21px;
110 width: 25px;
111 display: block;
112 background-image: url("chrome://messenger/skin/messengercompose/address.gif");
113}
114
115/* ::::: attached images ::::: */
116
117.moz-attached-image {
118 image-orientation: from-image;
119}
120
121moz-attached-image[overflowing="true"] {
122 cursor: zoom-out;
123}
124
125.moz-attached-image[isshrunk="true"] {
126 cursor: zoom-in;
127 max-width: 100%;
128}
129
130/* New style feed summary body. */
131body[selected="false"] {
132 display: none;
133}
134
135/* Old style feeds. */
136#_mailrssiframe {
137 position: fixed;
138 top: 0;
139 left: 0;
140 width: 100%;
141 height: 100%;
142 border: none;
143}
144
145/* Attachment display styling (for inline attachments and printing) */
146.mimeAttachmentHeader {
147 border-style: none;
148 border-top: 1px solid #808080;
149}
150
151.mimeAttachmentName {
152 color: #808080;
153 font-size: 80%;
154}
155
156div.mimeAttachmentWrap {
157 padding: 0 1em;
158}
159
160table.mimeAttachmentTable {
161 width: 100%;
162 border-collapse: collapse;
163}
164
165table.mimeAttachmentTable tr + tr > td {
166 border-top: 1px solid #808080;
167}
168
169.mimeAttachmentFile {
170}
171
172.mimeAttachmentSize {
173 text-align: right;
174}