Larry fixes/improvements

This commit is contained in:
Aleksander Machniak 2012-08-28 11:31:40 +02:00
parent 9545cc92a0
commit defadb8cff
4 changed files with 15 additions and 12 deletions

View file

@ -117,6 +117,7 @@ pre {
background: #fff;
border-bottom: 1px solid #EBEBEB;
white-space: nowrap;
cursor: default;
}
#calendarslist li label {

View file

@ -20,5 +20,7 @@ body.aclform .hint {
<roundcube:object name="folderacl" />
<roundcube:include file="/includes/footer.html" />
</body>
</html>

View file

@ -231,7 +231,7 @@ class kolab_addressbook_ui
$content = '';
if (is_array($form['content']) && !empty($form['content'])) {
$table = new html_table(array('cols' => 2));
$table = new html_table(array('cols' => 2, 'class' => 'propform'));
foreach ($form['content'] as $col => $colprop) {
$colprop['id'] = '_'.$col;
$label = !empty($colprop['label']) ? $colprop['label'] : rcube_label($col);