diff options
author | brunoais <brunoaiss@gmail.com> | 2014-05-12 09:49:59 +0100 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-05-14 09:51:39 +0100 |
commit | 86d19b6062c8eb83cf06bbefc043dafb956e7ab3 (patch) | |
tree | 4c9b338672d0b444a3523eb6e71491f3c51b1f99 | |
parent | bec9b7c34e63c7485477fa1edc2f6330889cc699 (diff) | |
download | forums-86d19b6062c8eb83cf06bbefc043dafb956e7ab3.tar forums-86d19b6062c8eb83cf06bbefc043dafb956e7ab3.tar.gz forums-86d19b6062c8eb83cf06bbefc043dafb956e7ab3.tar.bz2 forums-86d19b6062c8eb83cf06bbefc043dafb956e7ab3.tar.xz forums-86d19b6062c8eb83cf06bbefc043dafb956e7ab3.zip |
[ticket/12533] Make <a> use all the notification item size
Changed padding CSS to the notifications' `<li>` and it's
`<a>` (immediate child) so that the `<a>` block uses all
it's container width and height.
To compensate that, I added the padding that was in the
`<li>` to the `<a>`
PHPBB3-12533
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 6 |
1 files changed, 5 insertions, 1 deletions
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; |