You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /**
  2. * Roundcube webmail styles for message printing
  3. *
  4. * Copyright (c) 2012, The Roundcube Dev Team
  5. *
  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. body, td, th, div, p {
  18. font-size: 9pt;
  19. color: #000;
  20. }
  21. h3 {
  22. font-size: 18px;
  23. color: #000;
  24. }
  25. a, a:active, a:visited {
  26. color: #000;
  27. }
  28. #header {
  29. float: right;
  30. margin: 0 5mm 3mm 5mm;
  31. }
  32. table.headers-table {
  33. table-layout: fixed;
  34. margin-top: 14px;
  35. }
  36. table.headers-table tr td {
  37. font-size: 9pt;
  38. vertical-align: top;
  39. }
  40. table.headers-table td.header-title {
  41. color: #666;
  42. padding-right: 4mm;
  43. white-space: nowrap;
  44. }
  45. table.headers-table tr td.subject {
  46. font-weight: bold;
  47. }
  48. #attachment-list {
  49. margin-top: 2mm;
  50. padding-top: 2mm;
  51. border-top: 1pt solid #ccc;
  52. }
  53. #attachment-list li {
  54. font-size: 9pt;
  55. }
  56. #attachment-list li a {
  57. text-decoration: none;
  58. }
  59. #attachment-list li a:hover {
  60. text-decoration: underline;
  61. }
  62. #messagebody {
  63. position: relative;
  64. border-top: none;
  65. }
  66. div.message-part,
  67. div.message-htmlpart {
  68. padding: 2mm 1mm;
  69. margin-top: 2mm;
  70. margin-bottom: 5mm;
  71. border-top: 1pt solid #ccc;
  72. }
  73. div.message-part a {
  74. color: #00c;
  75. }
  76. div.message-part div.pre {
  77. margin: 0;
  78. padding: 0;
  79. font-family: monospace;
  80. font-size: 12px;
  81. }
  82. div.message-part blockquote {
  83. color: blue;
  84. border-left: 2px solid blue;
  85. border-right: 2px solid blue;
  86. background-color: #F6F6F6;
  87. margin: 2px 0;
  88. padding: 0 0.4em;
  89. }
  90. div.message-part blockquote blockquote {
  91. color: green;
  92. border-left: 2px solid green;
  93. border-right: 2px solid green;
  94. }
  95. div.message-part blockquote blockquote blockquote {
  96. color: #900;
  97. border-left: 2px solid #b00;
  98. border-right: 2px solid #b00;
  99. }
  100. p.image-attachment {
  101. position: relative;
  102. padding: 1em;
  103. border-top: 1px solid #ccc;
  104. }
  105. p.image-attachment a.image-link {
  106. float: left;
  107. display: block;
  108. margin-right: 2em;
  109. min-width: 160px;
  110. min-height: 60px;
  111. text-align: center;
  112. }
  113. p.image-attachment .image-filename {
  114. display: block;
  115. line-height: 1.6em;
  116. }
  117. p.image-attachment .attachment-links {
  118. display: none;
  119. }
  120. /* contact print */
  121. #contact-details fieldset {
  122. color: #666;
  123. border: 1px solid #999;
  124. margin-top: 5px;
  125. }
  126. #contact-details fieldset.contactfieldgroup {
  127. border: 0;
  128. padding: 0;
  129. margin: 0;
  130. }
  131. #contact-details div.row {
  132. padding: 2px 0;
  133. }
  134. #contact-details .contactfieldlabel {
  135. display: inline-block;
  136. vertical-align: top;
  137. width: 150px;
  138. overflow: hidden;
  139. text-overflow: ellipsis;
  140. }
  141. #contact-details .contactfieldcontent {
  142. display: inline-block;
  143. vertical-align: top;
  144. font-weight: bold;
  145. }
  146. #contact-details #contactphoto {
  147. float: left;
  148. margin: 5px 15px 5px 3px;
  149. width: 112px;
  150. border: 0;
  151. padding: 0;
  152. }
  153. #contact-details #contactpic {
  154. width: 112px;
  155. background: white;
  156. }
  157. #contact-details #contactpic img {
  158. max-width: 112px;
  159. visibility: inherit;
  160. }
  161. #contact-details #contacthead {
  162. border: 0;
  163. margin: 0 16em 0 0;
  164. padding: 0;
  165. }
  166. #contact-details #contacthead > legend {
  167. display: none;
  168. }
  169. #contact-details #contacthead .names span.namefield {
  170. font-size: 140%;
  171. font-weight: bold;
  172. }