diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-05-20 11:07:54 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-05-20 11:07:54 -0500 |
commit | f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a (patch) | |
tree | 88b2c24a8a1a31266153b0af51819a32fcfe8a46 | |
parent | fedd9d18d2ab2c06fd584f599e685014783b9655 (diff) | |
parent | 9954657712a327712af922609482a0975d8406ba (diff) | |
download | forums-f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a.tar forums-f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a.tar.gz forums-f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a.tar.bz2 forums-f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a.tar.xz forums-f26257dc51c9be2ff26b2702d26cbeb96e3ceb5a.zip |
Merge remote-tracking branch 'remotes/cyberalien/ticket/11558' into develop
# By Vjacheslav Trushkin
# Via Vjacheslav Trushkin
* remotes/cyberalien/ticket/11558:
[ticket/11558] Adjustments for notification link
[ticket/11558] Fix styling for notifications link
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/buttons.css | 13 |
2 files changed, 15 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index e68ce4dd51..1a068c4191 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -127,8 +127,8 @@ <!-- IF not S_IS_BOT and S_USER_LOGGED_IN --> <ul class="linklist leftside"> <!-- IF S_NOTIFICATIONS_DISPLAY --> - <li> - [ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> ] • + <li class="icon-notification"> + <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"> diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index c3210887b6..09021c771f 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -97,6 +97,19 @@ a.sendemail { padding: 1px 0 0 17px; } +.icon-notification:before, .icon-notification:after { + display: inline; + font: inherit; +} + +.icon-notification:before { + content: '['; +} + +.icon-notification:after { + content: ']'; +} + /* Poster profile icons ----------------------------------------*/ ul.profile-icons { |