From cc884be593ecd155da6d42064624ddf55b98cd81 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Wed, 16 Oct 2013 17:21:22 -0700 Subject: [PATCH] [ticket/11936] Fix Avatar overflow issue in Notification window PHPBB3-11936 --- phpBB/styles/prosilver/template/overall_header.html | 2 +- phpBB/styles/prosilver/theme/common.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index f2f47332d7..d9c5df73ac 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -116,7 +116,7 @@
  • {notifications.AVATAR} -
    +

    {notifications.FORMATTED_TITLE}

    » {notifications.TIME}

    diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 4dbcc6f455..b23c6aa8b7 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -836,3 +836,8 @@ form > p.post-notice strong { font-size: 11px; } +.notification_text:after { + content: ''; + clear: both; + display: block; +}