alecpl
2012-04-14 651da7934ed4c13e2cbc2e4a82caf2ebaba87373
commit | author | age
c7dcb3 1 /**
T 2  * Roundcube webmail styles for message printing
3  *
071c78 4  * Copyright (c) 2012, The Roundcube Dev Team
c7dcb3 5  *
T 6  * The contents are subject to the Creative Commons Attribution-ShareAlike
7  * License. It is allowed to copy, distribute, transmit and to adapt the work
8  * by keeping credits to the original autors in the README file.
9  * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
10  *
11  * $Id$
12  */
13 body {
14     font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
15     background-color: #fff;
16     color: #000;
17     margin: 2mm;
18 }
19
20 body, td, th, span, div, p {
21     font-size: 9pt;
22     color: #000;
23 }
24
25 h3 {
26     font-size: 18px;
27     color: #000;
28 }
29
30 a, a:active, a:visited {
31     color: #000;
32 }
33
34 #header {
35     float: right;
36     margin: 0 5mm 3mm 5mm;
37 }
38
39 table.headers-table {
40     table-layout: fixed;
41     margin-top: 14px;
42 }
43
44 table.headers-table tr td {
45     font-size: 9pt;
46 }
47
48 table.headers-table td.header-title {
49     color: #666;
50     font-size: 85%;
51     padding-right: 4mm;
52     white-space: nowrap;
53 }
54
55 table.headers-table tr td.subject {
56     width: 90%;
57     font-weight: bold;
58     font-size: 120%;
59 }
60     
61 #attachment-list {
62     margin-top: 3mm;
63     padding-top: 3mm;
64     border-top: 1pt solid #ccc;
65 }
66
67 #attachment-list li {
68     font-size: 9pt;
69 }
70
71 #attachment-list li a {
72     text-decoration: none;
73 }
74
75 #attachment-list li a:hover {
76     text-decoration: underline;
77 }
78
79 #messagebody {
80     margin-top: 5mm;
81     border-top: none;
82 }
83
84 div.message-part {
85     padding: 2mm;
86     margin-top: 5mm;
87     margin-bottom: 5mm;
88     border-top: 1pt solid #ccc;
89 }
90
91 div.message-part a {
92     color: #00c;
93 }
94
95 div.message-part pre,
96 div.message-htmlpart pre,
97 div.message-part div.pre {
98     margin: 0;
99     padding: 0;
100     font-family: monospace;
101     white-space: -moz-pre-wrap !important;
102     white-space: pre-wrap !important;
103     white-space: pre;
104     word-wrap: break-word; /* IE (and Safari) */
105 }
106
107 div.message-part blockquote {
108     color: blue;
109     border-left: 2px solid blue;
110     border-right: 2px solid blue;
111     background-color: #F6F6F6;
112     margin: 0.5em 0em 0.5em 0em;
113     padding: 0.25em 1em 0.25em 1em;
114 }
115
116 div.message-part blockquote blockquote {
117     color: green;
118     border-left: 2px solid green;
119     border-right: 2px solid green;
120 }
121
122 div.message-part blockquote blockquote blockquote {
123     color: #900;
124     border-left: 2px solid #b00;
125     border-right: 2px solid #b00;
126 }