diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-05-29 15:42:30 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-29 15:42:30 +0200 |
| commit | f0dcc271ac2f652b75b265deba7ad2ddcf861b6f (patch) | |
| tree | cac4f8b4e8372596c0a41c98338ed93fc6894ee9 | |
| parent | 624c0e4ef6b638adb325e72158ac3a7e5f66b0bf (diff) | |
| parent | 8173f96d6060814ec7458f6fccf5d82a224d0ade (diff) | |
| download | forums-f0dcc271ac2f652b75b265deba7ad2ddcf861b6f.tar forums-f0dcc271ac2f652b75b265deba7ad2ddcf861b6f.tar.gz forums-f0dcc271ac2f652b75b265deba7ad2ddcf861b6f.tar.bz2 forums-f0dcc271ac2f652b75b265deba7ad2ddcf861b6f.tar.xz forums-f0dcc271ac2f652b75b265deba7ad2ddcf861b6f.zip | |
Merge pull request #2506 from brunoais/ticket/12604
[ticket/12604] Fix wrong padding when no notifications
* brunoais/ticket/12604:
[ticket/12604] Fix wrong padding when no notifications
| -rw-r--r-- | phpBB/styles/prosilver/template/notification_dropdown.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 4 |
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; } |
