alecpl
2009-07-17 3541d0e97a750b710f0dc7fe657b5c163bad7403
commit | author | age
4e17e6 1 /***** RoundCube|Mail message print styles *****/
T 2
3 body
4 {
5   background-color: #ffffff;
6   color: #000000;
7   margin: 2mm;
8 }
9
10 body, td, th, span, div, p, h3
11 {
12   font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
13   font-size: 9pt;
14   color: #000000;
15 }
16
17 h3
18 {
19   font-size: 18px;
20   color: #000000;
21 }
22
23 a, a:active, a:visited
24 {
25   color: #000000;
26 }
27
28 #header
29 {
30   margin-left: 5mm;
31   margin-bottom: 3mm;
32 }
33
34 #messageframe
35 {
36   position: relative;
37 }
38
39 table.headers-table
40 {
41   table-layout: fixed;
42 }
43
44 table.headers-table tr td
45 {
46   font-size: 9pt;
47 }
48
49 table.headers-table td.header-title
50 {
51   color: #666666;
52   font-weight: bold;
53   text-align: right;
54   vertical-align: top;
55   padding-right: 4mm;
56   white-space: nowrap;
57 }
58
59 table.headers-table tr td.subject
60 {
61   width: 90%;
62   font-weight: bold;
63 }
64   
65 #attachment-list
66 {
67   margin-top: 3mm;
68   padding-top: 3mm;
69   border-top: 1pt solid #cccccc;
70 }
71
72 #attachment-list li
73 {
74   font-size: 9pt;
75 }
76
77 #attachment-list li a
78 {
79   text-decoration: none;
80 }
81
82 #attachment-list li a:hover
83 {
84   text-decoration: underline;
85 }
86
87 #messagebody
88 {
89   margin-top: 5mm;
90   border-top: none;
91 }
92
93 div.message-part
94 {
95   padding: 2mm;
96   margin-top: 5mm;
97   margin-bottom: 5mm;
98   border-top: 1pt solid #cccccc;
99 }
100
101 div.message-part a
102 {
103   color: #0000CC;
104 }
105
38ddba 106 div.message-part pre,
A 107 div.message-htmlpart pre,
494f07 108 div.message-part div.pre
4e17e6 109 {
T 110   margin: 0;
111   padding: 0;
cc80c5 112   font-family: monospace;
466c6e 113   white-space: -moz-pre-wrap !important;
cc80c5 114   white-space: pre-wrap !important;
A 115   white-space: pre;
466c6e 116   word-wrap: break-word; /* IE (and Safari) */
4e17e6 117 }
6212d2 118
S 119 div.message-part blockquote
120 {
121     color: blue;
122     border-left: 2px solid blue;
123     border-right: 2px solid blue;
124     background-color: #F6F6F6;
125     margin: 0.5em 0em 0.5em 0em;
126     padding: 0.25em 1em 0.25em 1em;
127 }
128
129 div.message-part blockquote blockquote
130 {
131     color: green;
132     border-left: 2px solid green;
133     border-right: 2px solid green;
134 }
135
136 div.message-part blockquote blockquote blockquote
137 {
138     color: #990000;
139     border-left: 2px solid #bb0000;
140     border-right: 2px solid #bb0000;
141 }