aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-05-19 20:16:45 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-05-19 20:16:45 +0300
commitac122cbb4e213727b30f800ce8e4f5991ff9119c (patch)
tree58dc2cd50acfc7f5ee43723e1c286fc35eec78c3 /phpBB/styles
parentd8ed228ddf2f4117a5a8044e9903ef22febdeb4a (diff)
downloadforums-ac122cbb4e213727b30f800ce8e4f5991ff9119c.tar
forums-ac122cbb4e213727b30f800ce8e4f5991ff9119c.tar.gz
forums-ac122cbb4e213727b30f800ce8e4f5991ff9119c.tar.bz2
forums-ac122cbb4e213727b30f800ce8e4f5991ff9119c.tar.xz
forums-ac122cbb4e213727b30f800ce8e4f5991ff9119c.zip
[ticket/11558] Fix styling for notifications link
PHPBB3-11558
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/template/overall_header.html2
-rw-r--r--phpBB/styles/prosilver/theme/buttons.css16
-rw-r--r--phpBB/styles/prosilver/theme/colours.css4
3 files changed, 21 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html
index a53e0f8d60..af7cfab39e 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">{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">
diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css
index c3210887b6..c18ddb652c 100644
--- a/phpBB/styles/prosilver/theme/buttons.css
+++ b/phpBB/styles/prosilver/theme/buttons.css
@@ -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 {
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css
index baff88d6b7..8b717399d2 100644
--- a/phpBB/styles/prosilver/theme/colours.css
+++ b/phpBB/styles/prosilver/theme/colours.css
@@ -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"); }