diff options
author | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-26 14:15:45 +0000 |
---|---|---|
committer | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-26 14:15:45 +0000 |
commit | 366a15d605bbecb3b55ebba91a8db2ac37807f4c (patch) | |
tree | 692620906eb13404b52afbacb5a61438907d480b /phpBB/styles | |
parent | 7cc969283153c5df0c5eaf4c198f635e2f2fe7c5 (diff) | |
download | forums-366a15d605bbecb3b55ebba91a8db2ac37807f4c.tar forums-366a15d605bbecb3b55ebba91a8db2ac37807f4c.tar.gz forums-366a15d605bbecb3b55ebba91a8db2ac37807f4c.tar.bz2 forums-366a15d605bbecb3b55ebba91a8db2ac37807f4c.tar.xz forums-366a15d605bbecb3b55ebba91a8db2ac37807f4c.zip |
Fixed Bug #26375 - Fix style issues in print mode. (Bug #26375
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9687 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/theme/print.css | 13 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewtopic_print.html | 12 |
2 files changed, 21 insertions, 4 deletions
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; |