diff options
author | Cesar G <prototech91@gmail.com> | 2014-05-16 17:00:40 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-05-16 17:00:40 -0700 |
commit | 5dc0605b6bebee0621311e9e1479e35c8e3e7cfe (patch) | |
tree | ac1aa0590d05b01a5e12c4e2b70ce7e5ad61e1cf | |
parent | a496015b985105dff1daed26ad172a3601fbbbd9 (diff) | |
parent | d27ece199477883c0599cf2e665db38e661d6597 (diff) | |
download | forums-5dc0605b6bebee0621311e9e1479e35c8e3e7cfe.tar forums-5dc0605b6bebee0621311e9e1479e35c8e3e7cfe.tar.gz forums-5dc0605b6bebee0621311e9e1479e35c8e3e7cfe.tar.bz2 forums-5dc0605b6bebee0621311e9e1479e35c8e3e7cfe.tar.xz forums-5dc0605b6bebee0621311e9e1479e35c8e3e7cfe.zip |
Merge remote-tracking branch 'brunoais/ticket/PHPBB3-12533' into develop-ascraeus
* brunoais/ticket/PHPBB3-12533:
[ticket/12533] Make <a> use all the "see all" "button"
[ticket/12533] Make <a> use all the notification item size
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 10 |
2 files changed, 9 insertions, 2 deletions
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 94fad55ae9..b90a53b4e8 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,14 @@ form > p.post-notice strong { font-size: 1.1em; } +.dropdown-extended ul li a{ + 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; |