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