1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-31 03:29:23 +02:00

[ticket/11558] Fix styling for notifications link

PHPBB3-11558
This commit is contained in:
Vjacheslav Trushkin 2013-05-19 20:16:45 +03:00
parent d8ed228ddf
commit ac122cbb4e
3 changed files with 21 additions and 1 deletions

View File

@ -138,7 +138,7 @@
<ul class="linklist leftside">
<!-- IF S_NOTIFICATIONS_DISPLAY -->
<li>
[ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> ] &bull;
<a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> &bull;
<div id="notification_list" class="notification_list">
<div class="pointer"><div class="pointer_inner"></div></div>
<div class="header">

View File

@ -97,6 +97,22 @@ a.sendemail {
padding: 1px 0 0 17px;
}
#notification_list_button:before, #notification_list_button:after {
display: inline;
font: inherit;
text-decoration: none;
}
#notification_list_button:before {
content: '[';
padding-right: 4px;
}
#notification_list_button:after {
content: ']';
padding-left: 4px;
}
/* Poster profile icons
----------------------------------------*/
ul.profile-icons {

View File

@ -684,6 +684,10 @@ a.sendemail {
background-image: url("images/buttons.png");
}
#notification_list_button:before, #notification_list_button:after {
color: #536482;
}
/* Icon images
---------------------------------------- */
.sitehome { background-image: url("./images/icon_home.gif"); }