Larry fixes/improvements
This commit is contained in:
parent
9545cc92a0
commit
defadb8cff
4 changed files with 15 additions and 12 deletions
|
@ -117,6 +117,7 @@ pre {
|
|||
background: #fff;
|
||||
border-bottom: 1px solid #EBEBEB;
|
||||
white-space: nowrap;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
#calendarslist li label {
|
||||
|
|
|
@ -20,5 +20,7 @@ body.aclform .hint {
|
|||
|
||||
<roundcube:object name="folderacl" />
|
||||
|
||||
<roundcube:include file="/includes/footer.html" />
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -181,9 +181,9 @@ rcube_webmail.prototype.book_update = function(data, old)
|
|||
refrow = $('#rcmli'+n);
|
||||
refrow.remove().attr({id: 'rcmliG'+data.id+groups[n].id});
|
||||
$('a', refrow).removeAttr('onclick').unbind()
|
||||
.click({source: data.id, id: groups[n].id}, function(e) {
|
||||
return rcmail.command('listgroup', {'source': e.data.source, 'id': e.data.id}, this);
|
||||
});
|
||||
.click({source: data.id, id: groups[n].id}, function(e) {
|
||||
return rcmail.command('listgroup', {'source': e.data.source, 'id': e.data.id}, this);
|
||||
});
|
||||
refrow.insertAfter(row);
|
||||
row = refrow;
|
||||
|
||||
|
@ -241,7 +241,7 @@ rcube_webmail.prototype.book_update = function(data, old)
|
|||
$('a', refrow).removeAttr('onclick').unbind()
|
||||
.click({source: id, id: groups[i].id}, function(e) {
|
||||
return rcmail.command('listgroup', {'source': e.data.source, 'id': e.data.id}, this);
|
||||
});
|
||||
});
|
||||
refrow.insertAfter(row);
|
||||
row = refrow;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
@ -255,13 +255,13 @@ class kolab_addressbook_ui
|
|||
|
||||
$request_key = $action . (isset($id) ? '.'.$id : '');
|
||||
$form_start = $this->rc->output->request_form(array(
|
||||
'name' => 'form',
|
||||
'method' => 'post',
|
||||
'task' => $this->rc->task,
|
||||
'action' => $action,
|
||||
'request' => $request_key,
|
||||
'noclose' => true,
|
||||
) + $attrib);
|
||||
'name' => 'form',
|
||||
'method' => 'post',
|
||||
'task' => $this->rc->task,
|
||||
'action' => $action,
|
||||
'request' => $request_key,
|
||||
'noclose' => true,
|
||||
) + $attrib);
|
||||
|
||||
if (is_array($hidden)) {
|
||||
foreach ($hidden as $field) {
|
||||
|
|
Loading…
Add table
Reference in a new issue