aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-05-29 15:42:30 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-05-29 15:42:30 +0200
commite9d33fd02e533c0e5e4ca1ba6478c808f9585e7e (patch)
treec091648c6a533c6d3e375b9dfb2692c019f2bb43
parent4533b4a738a3aea4652309a9d500d1b6096208d6 (diff)
parentf0dcc271ac2f652b75b265deba7ad2ddcf861b6f (diff)
downloadforums-e9d33fd02e533c0e5e4ca1ba6478c808f9585e7e.tar
forums-e9d33fd02e533c0e5e4ca1ba6478c808f9585e7e.tar.gz
forums-e9d33fd02e533c0e5e4ca1ba6478c808f9585e7e.tar.bz2
forums-e9d33fd02e533c0e5e4ca1ba6478c808f9585e7e.tar.xz
forums-e9d33fd02e533c0e5e4ca1ba6478c808f9585e7e.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12604] Fix wrong padding when no notifications
-rw-r--r--phpBB/styles/prosilver/template/notification_dropdown.html2
-rw-r--r--phpBB/styles/prosilver/theme/common.css4
2 files changed, 5 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 -->
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index b90a53b4e8..b9728729f9 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -1066,6 +1066,10 @@ form > p.post-notice strong {
position: relative;
}
+.dropdown-extended ul li.no_notifications {
+ padding: 10px;
+}
+
.dropdown-extended ul li:before, .dropdown-extended ul li:after {
display: none;
}