diff options
author | PayBas <contact@paybas.com> | 2014-05-28 22:49:16 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-06-15 10:02:09 +0200 |
commit | 693cbd247cc1d3768d56795da4a580780e6b899c (patch) | |
tree | fa7ccfc4b94284f0626176d5f51051e369fca3a7 /phpBB/styles/prosilver/template | |
parent | 72d29e76ced756a7b4501113a91275d8ca693af2 (diff) | |
download | forums-693cbd247cc1d3768d56795da4a580780e6b899c.tar forums-693cbd247cc1d3768d56795da4a580780e6b899c.tar.gz forums-693cbd247cc1d3768d56795da4a580780e6b899c.tar.bz2 forums-693cbd247cc1d3768d56795da4a580780e6b899c.tar.xz forums-693cbd247cc1d3768d56795da4a580780e6b899c.zip |
[ticket/12608] Add styling (CSS class) options to notifications
This will allow different notifications to have different styles
PHPBB3-12608
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r-- | phpBB/styles/prosilver/template/notification_dropdown.html | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_notifications.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/notification_dropdown.html b/phpBB/styles/prosilver/template/notification_dropdown.html index fbe0e1efd4..4aebeb16a8 100644 --- a/phpBB/styles/prosilver/template/notification_dropdown.html +++ b/phpBB/styles/prosilver/template/notification_dropdown.html @@ -18,13 +18,13 @@ </li> <!-- ENDIF --> <!-- BEGIN notifications --> - <li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF -->"> + <li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF --><!-- IF notifications.STYLING --> {notifications.STYLING}<!-- ENDIF -->"> <!-- IF notifications.URL --> <a href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}" class="notification-block" data-real-url="{notifications.URL}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->"> <!-- ENDIF --> <!-- IF notifications.AVATAR -->{notifications.AVATAR}<!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /><!-- ENDIF --> <div class="notification_text"> - <p class="title">{notifications.FORMATTED_TITLE}</p> + <p class="notification-title">{notifications.FORMATTED_TITLE}</p> <!-- IF notifications.REFERENCE --><p class="notification-reference">{notifications.REFERENCE}</p><!-- ENDIF --> <!-- IF notifications.FORUM --><p class="notification-forum">{notifications.FORUM}</p><!-- ENDIF --> <!-- IF notifications.REASON --><p class="notification-reason">{notifications.REASON}</p><!-- ENDIF --> diff --git a/phpBB/styles/prosilver/template/ucp_notifications.html b/phpBB/styles/prosilver/template/ucp_notifications.html index 61df0c9cf5..a7cf2f43aa 100644 --- a/phpBB/styles/prosilver/template/ucp_notifications.html +++ b/phpBB/styles/prosilver/template/ucp_notifications.html @@ -65,7 +65,7 @@ </ul> <ul class="topiclist cplist two-columns"> <!-- BEGIN notification_list --> - <li class="row<!-- IF notification_list.UNREAD --> bg3<!-- ELSE --><!-- IF notification_list.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- ENDIF -->"> + <li class="row<!-- IF notification_list.UNREAD --> bg3<!-- ELSE --><!-- IF notification_list.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- ENDIF --><!-- IF notification_list.STYLING --> {notification_list.STYLING}<!-- ENDIF -->"> <dl> <dt> <div class="list-inner"> |