diff options
Diffstat (limited to 'phpBB/styles/prosilver')
| -rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 4 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 6 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 13 |
3 files changed, 18 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 85bce8a313..a53e0f8d60 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -138,7 +138,7 @@ <ul class="linklist leftside"> <!-- IF S_NOTIFICATIONS_DISPLAY --> <li> - [ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] • + [ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> ] • <div id="notification_list" class="notification_list"> <div class="pointer"><div class="pointer_inner"></div></div> <div class="header"> @@ -158,7 +158,7 @@ {notifications.AVATAR} <div> <p>{notifications.FORMATTED_TITLE}</p> - <p>{notifications.TIME}</p> + <p>» {notifications.TIME}</p> <!-- IF not notifications.URL and notifications.U_MARK_READ --> <p><a href="{notifications.U_MARK_READ}">{L_MARK_READ}</a></p> diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 558bff7349..a2d558d0ca 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -83,9 +83,9 @@ <dt> <!-- IF notification_list.URL --><a href="<!-- IF notification_list.UNREAD -->{notification_list.U_MARK_READ}<!-- ELSE -->{notification_list.URL}<!-- ENDIF -->"><!-- ENDIF --> {notification_list.AVATAR} - <div> - <p>{notification_list.FORMATTED_TITLE}</p> - <p>{notification_list.TIME}</p> + <div class="notifications"> + <p class="notifications_title">{notification_list.FORMATTED_TITLE}</p> + <p class="notifications_time">» {notification_list.TIME}</p> <!-- IF not notification_list.URL and notification_list.U_MARK_READ --> <p><a href="{notification_list.U_MARK_READ}">{L_MARK_READ}</a></p> diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 3eb09492d5..02d891ab6a 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -767,3 +767,16 @@ p.rules a { bottom: -11px; left: -10px; } + +.notification_list div.notifications { + padding: 5px; +} + +.notification_list p.notifications_title { + font-weight: bold; +} + +.notification_list p.notifications_time { + font-size: 11px; +} + |
