From 6c06554ebe351dc7e481ff15da2ca9b8c49b0f42 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 8 Dec 2020 18:51:46 +0100 Subject: [PATCH] Add more spacing for checkboxes in the editor --- src/components/input/editor.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/input/editor.vue b/src/components/input/editor.vue index 1ff46da00..2e44b8681 100644 --- a/src/components/input/editor.vue +++ b/src/components/input/editor.vue @@ -353,11 +353,11 @@ export default { const taskId = parseInt(parts[1]) const attachmentId = parseInt(parts[3]) const attachment = new AttachmentModel({taskId: taskId, id: attachmentId}) - + if (this.attachmentService === null) { this.attachmentService = new AttachmentService() } - + this.attachmentService.getBlobUrl(attachment) .then(url => { img.src = url @@ -411,6 +411,10 @@ export default { .tabs ul { margin-left: 0; } + + .preview.content ul li input[type="checkbox"] { + margin-right: .5rem; + } } .CodeMirror {