diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-28 09:31:40 (GMT) |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-28 09:32:34 (GMT) |
commit | 705dbc74caec125c66282df91330efd082edd41b (patch) | |
tree | f7333d550b59b28a1acac90baeb195f9da550437 | |
parent | 90ffdc8c956ed34b1878972491b208fc9256a552 (diff) | |
download | roundcubemail-plugins-kolab-705dbc74caec125c66282df91330efd082edd41b.tar.gz |
Larry fixes/improvements
4 files changed, 15 insertions, 12 deletions
diff --git a/plugins/calendar/skins/classic/calendar.css b/plugins/calendar/skins/classic/calendar.css index 21dcb1b..c47cc8e 100644 --- a/plugins/calendar/skins/classic/calendar.css +++ b/plugins/calendar/skins/classic/calendar.css @@ -117,6 +117,7 @@ pre { background: #fff; border-bottom: 1px solid #EBEBEB; white-space: nowrap; + cursor: default; } #calendarslist li label { diff --git a/plugins/calendar/skins/larry/templates/kolabacl.html b/plugins/calendar/skins/larry/templates/kolabacl.html index 05a279a..ed9b0c7 100644 --- a/plugins/calendar/skins/larry/templates/kolabacl.html +++ b/plugins/calendar/skins/larry/templates/kolabacl.html @@ -20,5 +20,7 @@ body.aclform .hint { <roundcube:object name="folderacl" /> +<roundcube:include file="/includes/footer.html" /> + </body> </html> diff --git a/plugins/kolab_addressbook/kolab_addressbook.js b/plugins/kolab_addressbook/kolab_addressbook.js index 5b0032b..56090dc 100644 --- a/plugins/kolab_addressbook/kolab_addressbook.js +++ b/plugins/kolab_addressbook/kolab_addressbook.js @@ -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; diff --git a/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php b/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php index d154a0a..71abe4d 100644 --- a/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php +++ b/plugins/kolab_addressbook/lib/kolab_addressbook_ui.php @@ -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) { |