summaryrefslogtreecommitdiff
path: root/skins/larry/print.css
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-12-12 17:23:19 +0000
committerthomascube <thomas@roundcube.net>2011-12-12 17:23:19 +0000
commitc7dcb30025c184c1e02a2e859b2f10f874c479f6 (patch)
tree20f35fd1dcb4f9d0372d6a8d4df044fd5f437294 /skins/larry/print.css
parent312ad9d51e9fdc05897cf983683903e791dce6c5 (diff)
More from Larry...
Diffstat (limited to 'skins/larry/print.css')
-rw-r--r--skins/larry/print.css126
1 files changed, 126 insertions, 0 deletions
diff --git a/skins/larry/print.css b/skins/larry/print.css
new file mode 100644
index 000000000..97545a557
--- /dev/null
+++ b/skins/larry/print.css
@@ -0,0 +1,126 @@
+/**
+ * Roundcube webmail styles for message printing
+ *
+ * Copyright (c) 2011, The Roundcube Dev Team
+ *
+ * The contents are subject to the Creative Commons Attribution-ShareAlike
+ * License. It is allowed to copy, distribute, transmit and to adapt the work
+ * by keeping credits to the original autors in the README file.
+ * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
+ *
+ * $Id$
+ */
+body {
+ font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
+ background-color: #fff;
+ color: #000;
+ margin: 2mm;
+}
+
+body, td, th, span, div, p {
+ font-size: 9pt;
+ color: #000;
+}
+
+h3 {
+ font-size: 18px;
+ color: #000;
+}
+
+a, a:active, a:visited {
+ color: #000;
+}
+
+#header {
+ float: right;
+ margin: 0 5mm 3mm 5mm;
+}
+
+table.headers-table {
+ table-layout: fixed;
+ margin-top: 14px;
+}
+
+table.headers-table tr td {
+ font-size: 9pt;
+}
+
+table.headers-table td.header-title {
+ color: #666;
+ font-size: 85%;
+ padding-right: 4mm;
+ white-space: nowrap;
+}
+
+table.headers-table tr td.subject {
+ width: 90%;
+ font-weight: bold;
+ font-size: 120%;
+}
+
+#attachment-list {
+ margin-top: 3mm;
+ padding-top: 3mm;
+ border-top: 1pt solid #ccc;
+}
+
+#attachment-list li {
+ font-size: 9pt;
+}
+
+#attachment-list li a {
+ text-decoration: none;
+}
+
+#attachment-list li a:hover {
+ text-decoration: underline;
+}
+
+#messagebody {
+ margin-top: 5mm;
+ border-top: none;
+}
+
+div.message-part {
+ padding: 2mm;
+ margin-top: 5mm;
+ margin-bottom: 5mm;
+ border-top: 1pt solid #ccc;
+}
+
+div.message-part a {
+ color: #00c;
+}
+
+div.message-part pre,
+div.message-htmlpart pre,
+div.message-part div.pre {
+ margin: 0;
+ padding: 0;
+ font-family: monospace;
+ white-space: -moz-pre-wrap !important;
+ white-space: pre-wrap !important;
+ white-space: pre;
+ word-wrap: break-word; /* IE (and Safari) */
+}
+
+div.message-part blockquote {
+ color: blue;
+ border-left: 2px solid blue;
+ border-right: 2px solid blue;
+ background-color: #F6F6F6;
+ margin: 0.5em 0em 0.5em 0em;
+ padding: 0.25em 1em 0.25em 1em;
+}
+
+div.message-part blockquote blockquote {
+ color: green;
+ border-left: 2px solid green;
+ border-right: 2px solid green;
+}
+
+div.message-part blockquote blockquote blockquote {
+ color: #900;
+ border-left: 2px solid #b00;
+ border-right: 2px solid #b00;
+}