diff --git a/plugins/kolab_notes/notes.js b/plugins/kolab_notes/notes.js index 6ed13efa..4abb2d8c 100644 --- a/plugins/kolab_notes/notes.js +++ b/plugins/kolab_notes/notes.js @@ -277,6 +277,7 @@ function rcube_kolab_notes_ui(settings) changed: rcmail.gettext('now', 'kolab_notes') } render_note(me.selected_note); + rcmail.enable_command('print', true); } else { ui_loading = rcmail.set_busy(true, 'loading'); @@ -728,7 +729,7 @@ function rcube_kolab_notes_ui(settings) printwin.document.title = data.title; $('#notetitle', printwin.document).html(Q(data.title)); $('#notebody', printwin.document).html(data.description); - $('#notetags', printwin.document).html('' + data.categories.join(', ') + ''); + $('#notetags', printwin.document).html('' + data.categories.join('') + ''); $('#notecreated', printwin.document).html(Q(me.selected_note.created)); $('#notechanged', printwin.document).html(Q(me.selected_note.changed)); printwin.print(); diff --git a/plugins/kolab_notes/skins/larry/print.css b/plugins/kolab_notes/skins/larry/print.css index e2c5545f..2744aaac 100644 --- a/plugins/kolab_notes/skins/larry/print.css +++ b/plugins/kolab_notes/skins/larry/print.css @@ -24,6 +24,10 @@ body { color: #666; } +#notedetailstitle #notetags .tag { + margin-right: 0.8em; +} + #notedetailstitle .dates { margin-bottom: 0.2em; color: #999;