diff options
author | brunoais <brunoaiss@gmail.com> | 2014-05-27 22:32:28 +0100 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-05-28 11:59:44 +0100 |
commit | 8173f96d6060814ec7458f6fccf5d82a224d0ade (patch) | |
tree | a6836984eef4b3e2d731115d7d592e0f40d0cd6b /phpBB/styles/prosilver/template/notification_dropdown.html | |
parent | 08c01b7cee629701dc62b32b03eb5543e8c9d196 (diff) | |
download | forums-8173f96d6060814ec7458f6fccf5d82a224d0ade.tar forums-8173f96d6060814ec7458f6fccf5d82a224d0ade.tar.gz forums-8173f96d6060814ec7458f6fccf5d82a224d0ade.tar.bz2 forums-8173f96d6060814ec7458f6fccf5d82a224d0ade.tar.xz forums-8173f96d6060814ec7458f6fccf5d82a224d0ade.zip |
[ticket/12604] Fix wrong padding when no notifications
Added a class to the <li> when the <li> represents that there's no
notifications (no_notifications) and
Added a CSS rule that matches the change to the HTML source for when
there's no notifications.
PHPBB3-12604
Diffstat (limited to 'phpBB/styles/prosilver/template/notification_dropdown.html')
-rw-r--r-- | phpBB/styles/prosilver/template/notification_dropdown.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/notification_dropdown.html b/phpBB/styles/prosilver/template/notification_dropdown.html index 3f32189fe5..db4d5bade7 100644 --- a/phpBB/styles/prosilver/template/notification_dropdown.html +++ b/phpBB/styles/prosilver/template/notification_dropdown.html @@ -13,7 +13,7 @@ <ul> <!-- IF not .notifications --> - <li> + <li class="no_notifications"> {L_NO_NOTIFICATIONS} </li> <!-- ENDIF --> |