From 86d19b6062c8eb83cf06bbefc043dafb956e7ab3 Mon Sep 17 00:00:00 2001 From: brunoais Date: Mon, 12 May 2014 09:49:59 +0100 Subject: [PATCH 1/2] [ticket/12533] Make use all the notification item size Changed padding CSS to the notifications' `
  • ` and it's `` (immediate child) so that the `` block uses all it's container width and height. To compensate that, I added the padding that was in the `
  • ` to the `` PHPBB3-12533 --- phpBB/styles/prosilver/theme/common.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 94fad55ae9..de2ea2086d 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1056,7 +1056,7 @@ form > p.post-notice strong { } .dropdown-extended ul li { - padding: 10px; + padding: 0; margin: 0; float: none; border-bottom: 1px solid; @@ -1098,6 +1098,10 @@ form > p.post-notice strong { font-size: 1.1em; } +.dropdown-extended ul li a{ + padding: 10px; +} + .dropdown-extended ul li a, .notification_list dt > a, .dropdown-extended .footer > a { display: block; text-decoration: none; From d27ece199477883c0599cf2e665db38e661d6597 Mon Sep 17 00:00:00 2001 From: brunoais Date: Mon, 12 May 2014 10:05:26 +0100 Subject: [PATCH 2/2] [ticket/12533] Make use all the "see all" "button" Changed the CSS so that the `` of the notifications list for the "see all" uses all the container. PHPBB3-12533 --- phpBB/styles/prosilver/theme/colours.css | 1 - phpBB/styles/prosilver/theme/common.css | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index f43dfcfcce..acb2df92a0 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -1161,7 +1161,6 @@ input.disabled { } .dropdown-extended .footer { - padding: 5px 0; border-top-style: solid; border-top-width: 1px; } diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index de2ea2086d..b90a53b4e8 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1102,6 +1102,10 @@ form > p.post-notice strong { padding: 10px; } +.dropdown-extended .footer > a { + padding: 5px 0; +} + .dropdown-extended ul li a, .notification_list dt > a, .dropdown-extended .footer > a { display: block; text-decoration: none;