diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-07-13 19:20:17 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-07-13 19:20:17 +0000 |
commit | ecfe24528c46b264baa164ba5811fcc5cfab231e (patch) | |
tree | 2da60faffcdcf77cb681dc246a65014da2903f96 /phpBB/styles/prosilver/theme | |
parent | 86096d012940358e0f4bdcf8d78d06018b99a713 (diff) | |
download | forums-ecfe24528c46b264baa164ba5811fcc5cfab231e.tar forums-ecfe24528c46b264baa164ba5811fcc5cfab231e.tar.gz forums-ecfe24528c46b264baa164ba5811fcc5cfab231e.tar.bz2 forums-ecfe24528c46b264baa164ba5811fcc5cfab231e.tar.xz forums-ecfe24528c46b264baa164ba5811fcc5cfab231e.zip |
Fix bug #47265 - Smilies and images not viewed in topic-print view
Fix - Force full date for PMs print-view
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9753 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-rw-r--r-- | phpBB/styles/prosilver/theme/print.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/print.css b/phpBB/styles/prosilver/theme/print.css index 09afaa9112..6dfb5c4726 100644 --- a/phpBB/styles/prosilver/theme/print.css +++ b/phpBB/styles/prosilver/theme/print.css @@ -25,6 +25,10 @@ a:visited { color: #000000; text-decoration: none; } a:active { color: #000000; text-decoration: none; } img, .noprint, #sub-header, #sub-footer, .navbar, .box1, .divider, .signature { display: none; } +/* Display smilies (Bug #47265) */ +.content img { + display: inline; +} /* Container for the main body */ #wrap { |