thomascube
2008-09-18 ae579cee860c90183b3968d9658ffe0b3ba29dd5
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
494f07 106 div.message-part div.pre
4e17e6 107 {
T 108   margin: 0;
109   padding: 0;
494f07 110   white-space: pre;
f11541 111   font-family: monospace;
4e17e6 112 }
6212d2 113
S 114 div.message-part blockquote
115 {
116     color: blue;
117     border-left: 2px solid blue;
118     border-right: 2px solid blue;
119     background-color: #F6F6F6;
120     margin: 0.5em 0em 0.5em 0em;
121     padding: 0.25em 1em 0.25em 1em;
122 }
123
124 div.message-part blockquote blockquote
125 {
126     color: green;
127     border-left: 2px solid green;
128     border-right: 2px solid green;
129 }
130
131 div.message-part blockquote blockquote blockquote
132 {
133     color: #990000;
134     border-left: 2px solid #bb0000;
135     border-right: 2px solid #bb0000;
136 }