1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11552] Padding for lists with checkbox

PHPBB3-11552
This commit is contained in:
Vjacheslav Trushkin 2013-10-20 20:45:59 +03:00
parent 2bb094cc19
commit 61b5ebfdd3
2 changed files with 7 additions and 0 deletions

View File

@ -445,6 +445,9 @@ function insert_single_user(formId, user)
return;
}
// Adjust topiclist lists with check boxes
$('ul.topiclist dd.mark').siblings('dt').children('.list-inner').addClass('with-mark');
// Resize navigation block to keep all links on same line
$('.navlinks').each(function() {
var $this = $(this),

View File

@ -107,6 +107,10 @@ ul.topiclist.two-columns dt, ul.topiclist.two-columns dt .list-inner {
margin-right: 0;
}
ul.topiclist dt .list-inner.with-mark {
padding-right: 34px;
}
ul.topiclist dt .list-inner {
min-height: 28px;
}