mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[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
This commit is contained in:
parent
bec9b7c34e
commit
86d19b6062
1 changed files with 5 additions and 1 deletions
|
@ -1056,7 +1056,7 @@ form > p.post-notice strong {
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-extended ul li {
|
.dropdown-extended ul li {
|
||||||
padding: 10px;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
float: none;
|
float: none;
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
|
@ -1098,6 +1098,10 @@ form > p.post-notice strong {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown-extended ul li a{
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-extended ul li a, .notification_list dt > a, .dropdown-extended .footer > a {
|
.dropdown-extended ul li a, .notification_list dt > a, .dropdown-extended .footer > a {
|
||||||
display: block;
|
display: block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
Loading…
Add table
Reference in a new issue