mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11936] Fix Avatar overflow issue in Notification window
PHPBB3-11936
This commit is contained in:
parent
852b707b48
commit
cc884be593
2 changed files with 6 additions and 1 deletions
|
@ -116,7 +116,7 @@
|
||||||
<li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF -->">
|
<li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF -->">
|
||||||
<!-- IF notifications.URL --><a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"><!-- ENDIF -->
|
<!-- IF notifications.URL --><a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"><!-- ENDIF -->
|
||||||
{notifications.AVATAR}
|
{notifications.AVATAR}
|
||||||
<div>
|
<div class="notification_text">
|
||||||
<p>{notifications.FORMATTED_TITLE}</p>
|
<p>{notifications.FORMATTED_TITLE}</p>
|
||||||
<p>» {notifications.TIME}</p>
|
<p>» {notifications.TIME}</p>
|
||||||
|
|
||||||
|
|
|
@ -836,3 +836,8 @@ form > p.post-notice strong {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notification_text:after {
|
||||||
|
content: '';
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue