aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/docs/CHANGELOG.html1
-rw-r--r--phpBB/styles/prosilver/theme/print.css13
-rw-r--r--phpBB/styles/subsilver2/template/viewtopic_print.html12
3 files changed, 22 insertions, 4 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index c57345c396..c43954cd86 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -140,6 +140,7 @@
<li>[Fix] Resolve accesskey conflicts in prosilver. (Bug #44685 - Patch by bantu)</li>
<li>[Fix] Check if template file is empty before trying to read from it. (Bug #47345 - Patch by bantu)</li>
<li>[Fix] Correct descriptions of the permissions to use BBCode, smilies, images and flash to be more relevant. (Bug #36065 - Patch by rxu)</li>
+ <li>[Fix] Fix style issues in print mode. (Bug #26375 - Patch by leviatan21)</li>
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
diff --git a/phpBB/styles/prosilver/theme/print.css b/phpBB/styles/prosilver/theme/print.css
index 3143b3cf9b..09afaa9112 100644
--- a/phpBB/styles/prosilver/theme/print.css
+++ b/phpBB/styles/prosilver/theme/print.css
@@ -108,7 +108,7 @@ html>body .postbody h1 a:link:after, html>body .postbody h2 a:link:after {
.grip-show { display:none; }
/* Quote */
-.postquote {
+.postquote, blockquote {
font-size: 85%;
margin: 1em 18% 1em 4%;
padding: 0.5em;
@@ -120,7 +120,16 @@ html>body .postbody h1 a:link:after, html>body .postbody h2 a:link:after {
.postquote img { display: none; }
.postquote span { display: block; }
.postquote span .postquote { font-size: 100%; }
-.quote-by { font-weight: bold; }
+.quote-by, blockquote cite {
+ color: black;
+ display : block;
+ font-weight: bold;
+}
+
+/* List */
+ol, ul {
+ margin-left: 15pt
+}
/* Misc page elements */
div.spacer { clear: both; }
diff --git a/phpBB/styles/subsilver2/template/viewtopic_print.html b/phpBB/styles/subsilver2/template/viewtopic_print.html
index 33d33f9c74..e1521c00a7 100644
--- a/phpBB/styles/subsilver2/template/viewtopic_print.html
+++ b/phpBB/styles/subsilver2/template/viewtopic_print.html
@@ -24,12 +24,20 @@ td {
line-height: 150%;
}
-.code,
-.quote {
+.code, .codecontent,
+.quote, .quotecontent {
+ margin: 0 5px 0 5px;
+ padding: 5px;
font-size: smaller;
border: black solid 1px;
}
+.quotetitle {
+ color: black;
+ display : block;
+ font-weight: bold;
+}
+
.forum {
font-family: Arial,Helvetica,sans-serif;
font-weight: bold;