Thomas
2013-10-14 566747af00ae413c942a7c6702e24c044af36f17
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 body {
12     font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
13     background-color: #fff;
14     color: #000;
15     margin: 2mm;
16 }
17
18 body, td, th, span, div, p {
19     font-size: 9pt;
20     color: #000;
21 }
22
23 h3 {
24     font-size: 18px;
25     color: #000;
26 }
27
28 a, a:active, a:visited {
29     color: #000;
30 }
31
32 #header {
33     float: right;
34     margin: 0 5mm 3mm 5mm;
35 }
36
37 table.headers-table {
38     table-layout: fixed;
39     margin-top: 14px;
40 }
41
42 table.headers-table tr td {
43     font-size: 9pt;
44 }
45
46 table.headers-table td.header-title {
47     color: #666;
48     font-size: 85%;
49     padding-right: 4mm;
50     white-space: nowrap;
51 }
52
53 table.headers-table tr td.subject {
54     width: 90%;
55     font-weight: bold;
56     font-size: 120%;
57 }
58     
59 #attachment-list {
60     margin-top: 3mm;
61     padding-top: 3mm;
62     border-top: 1pt solid #ccc;
63 }
64
65 #attachment-list li {
66     font-size: 9pt;
67 }
68
69 #attachment-list li a {
70     text-decoration: none;
71 }
72
73 #attachment-list li a:hover {
74     text-decoration: underline;
75 }
76
77 #messagebody {
14d00d 78     position: relative;
c7dcb3 79     margin-top: 5mm;
T 80     border-top: none;
81 }
82
83 div.message-part {
84     padding: 2mm;
85     margin-top: 5mm;
86     margin-bottom: 5mm;
87     border-top: 1pt solid #ccc;
88 }
89
90 div.message-part a {
91     color: #00c;
92 }
93
94 div.message-part pre,
95 div.message-htmlpart pre,
96 div.message-part div.pre {
97     margin: 0;
98     padding: 0;
99     font-family: monospace;
100     white-space: -moz-pre-wrap !important;
101     white-space: pre-wrap !important;
102     white-space: pre;
103     word-wrap: break-word; /* IE (and Safari) */
104 }
105
106 div.message-part blockquote {
107     color: blue;
108     border-left: 2px solid blue;
109     border-right: 2px solid blue;
110     background-color: #F6F6F6;
111     margin: 0.5em 0em 0.5em 0em;
112     padding: 0.25em 1em 0.25em 1em;
113 }
114
115 div.message-part blockquote blockquote {
116     color: green;
117     border-left: 2px solid green;
118     border-right: 2px solid green;
119 }
120
121 div.message-part blockquote blockquote blockquote {
122     color: #900;
123     border-left: 2px solid #b00;
124     border-right: 2px solid #b00;
125 }
c7f958 126
TB 127 p.image-attachment {
128     position: relative;
129     padding: 1em;
130     border-top: 1px solid #ccc;
131 }
132
133 p.image-attachment a.image-link {
134     float: left;
135     display: block;
136     margin-right: 2em;
137     min-width: 160px;
138     min-height: 60px;
139     text-align: center;
140 }
141
142 p.image-attachment .image-filename {
143     display: block;
144     line-height: 1.6em;
145 }
146
147 p.image-attachment .attachment-links {
148     display: none;
149 }
150