From 5a1171c65b986dbecc87f7ec71430951eca03742 Mon Sep 17 00:00:00 2001 From: Aleksander Nowodzinski Date: Thu, 11 Jan 2018 14:02:48 +0100 Subject: [PATCH 1/3] Aligning the package to the new default theme. --- theme/icons/bulletedlist.svg | 2 +- theme/icons/numberedlist.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/icons/bulletedlist.svg b/theme/icons/bulletedlist.svg index a391cdf..59d5e54 100644 --- a/theme/icons/bulletedlist.svg +++ b/theme/icons/bulletedlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/theme/icons/numberedlist.svg b/theme/icons/numberedlist.svg index 573849e..a3c321c 100644 --- a/theme/icons/numberedlist.svg +++ b/theme/icons/numberedlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 54e27695aac6852c83725690c0f1ff71942196d5 Mon Sep 17 00:00:00 2001 From: Aleksander Nowodzinski Date: Fri, 12 Jan 2018 12:00:18 +0100 Subject: [PATCH 2/3] Used 1.5px thick icons for better contrast --- theme/icons/bulletedlist.svg | 2 +- theme/icons/numberedlist.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/icons/bulletedlist.svg b/theme/icons/bulletedlist.svg index 59d5e54..023f7f8 100644 --- a/theme/icons/bulletedlist.svg +++ b/theme/icons/bulletedlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/theme/icons/numberedlist.svg b/theme/icons/numberedlist.svg index a3c321c..7f852c8 100644 --- a/theme/icons/numberedlist.svg +++ b/theme/icons/numberedlist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From cef14d0153a4bad50bc127adf3973886c134d9ce Mon Sep 17 00:00:00 2001 From: Aleksander Nowodzinski Date: Wed, 24 Jan 2018 16:06:47 +0100 Subject: [PATCH 3/3] Added a separator after the headings dropdown in the configuration of the toolbar. --- tests/manual/list.js | 2 +- tests/manual/nestedlists.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/manual/list.js b/tests/manual/list.js index 7441f0c..4cad2be 100644 --- a/tests/manual/list.js +++ b/tests/manual/list.js @@ -17,7 +17,7 @@ import List from '../../src/list'; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard ], - toolbar: [ 'headings', 'bulletedList', 'numberedList', 'undo', 'redo' ] + toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ] } ) .then( editor => { window.editor = editor; diff --git a/tests/manual/nestedlists.js b/tests/manual/nestedlists.js index 269aa61..fa1bfe7 100644 --- a/tests/manual/nestedlists.js +++ b/tests/manual/nestedlists.js @@ -18,7 +18,7 @@ import List from '../../src/list'; ClassicEditor .create( document.querySelector( '#editor' ), { plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard, Link ], - toolbar: [ 'headings', 'bulletedList', 'numberedList', 'undo', 'redo' ] + toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ] } ) .then( editor => { window.editor = editor;