From b4b3cf15f402cc6a9fb5338256f1ec65ac36278f Mon Sep 17 00:00:00 2001 From: Kara Engelhardt Date: Wed, 8 Nov 2023 15:47:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20arrow=20list=20style=20to=20b?= =?UTF-8?q?log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fds_cms/static/js/cms/ckeditor.wysiwyg.js | 1 + frontend/styles/blog.scss | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/fragdenstaat_de/fds_cms/static/js/cms/ckeditor.wysiwyg.js b/fragdenstaat_de/fds_cms/static/js/cms/ckeditor.wysiwyg.js index 9b152ef33..23fcdac91 100644 --- a/fragdenstaat_de/fds_cms/static/js/cms/ckeditor.wysiwyg.js +++ b/fragdenstaat_de/fds_cms/static/js/cms/ckeditor.wysiwyg.js @@ -40,6 +40,7 @@ CKEDITOR.stylesSet.add('default', [ { 'name': 'List Unstyled', 'element': ['ul', 'ol'], 'attributes': { 'class': 'list-unstyled' }}, { 'name': 'List Timeline', 'element': ['ul', 'ol'], 'attributes': { 'class': 'timeline' }}, { 'name': 'List Inline', 'element': ['ul', 'ol'], 'attributes': { 'class': 'list-inline' }}, + { 'name': 'List Arrow', 'element': ['ul'], 'attributes': { 'class': 'list-arrow' }}, { 'name': 'Horizontal Description', 'element': 'dl', 'attributes': { 'class': 'dl-horizontal' }}, { 'name': 'Table', 'element': 'table', 'attributes': { 'class': 'table' }}, diff --git a/frontend/styles/blog.scss b/frontend/styles/blog.scss index 9848cbdf1..34ac1cdd5 100644 --- a/frontend/styles/blog.scss +++ b/frontend/styles/blog.scss @@ -484,3 +484,14 @@ h4.blog-list-heading { .textarea.cke_source { resize: auto !important; } + +/*================================ += Arrow List = +================================*/ +.list-arrow { + list-style: none +} + +.list-arrow > li::before { + content: "→ " +}