summaryrefslogtreecommitdiffstats
path: root/comm/suite/themes/classic/messenger/messageQuotes.css
blob: 2cbf8f5ba799f2c6df2de53ab0b70b3f6817a69b (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* Because this sheet is loaded synchronously while the user is waiting for the
   compose window to appear, it must not @import a ton of other things, and
   especially must not trigger network access. */

/* ===== messageQuotes.css =================================================
  == Shared styles such as block quote colors and signature style
  == between the message body during
  == message display and the mail editor instance for mail compose.
  ======================================================================= */

/* workaround for MS Outlook mails where the line-height is set to 0 */
body {
  line-height: initial !important;
}

/* ::::: signature ::::: */

@media not print {
  div.moz-text-flowed > div.moz-txt-sig,
  div.moz-text-plain > pre > div.moz-txt-sig,
  pre.moz-signature {
    opacity: 0.6;
  }
}

/* ::::: Turn on borders and padding for quotes. ::::: */
blockquote[type=cite] {
  padding: 0.4ex 1ex;
  margin: 1ex;
  border-width: 0px 0px 0px 2px;
  border-style: none none none solid;
  border-radius: 2px;
}

/* ::::: Colorize block quote borders. We only go 5 levels deep. ::::: */
blockquote[type=cite] {
  border-color: rgb(114,159,207); /* Sky Blue 1 */
}

blockquote[type=cite] blockquote[type=cite] {
  border-color: rgb(173,127,168); /* Plum 1 */
}

blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
  border-color: rgb(138,226,52); /* Chameleon 1 */
}

blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
  border-color: rgb(252,175,62); /* Orange 1 */
}

blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
  border-color: rgb(233,185,110); /* Chocolate 1 */
}