From c1dc9937da629d1ad2b095e84e167ac78d191a8e Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 28 Mar 2020 19:57:00 +0100 Subject: #12 mobile vibration icon --- src/_icons/device-mobile-vibration.svg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index 5227c7b1..28466cfb 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -2,11 +2,11 @@ tags: [iphone, phone, smartphone, cellphone] --- - + - - + + -- cgit v1.2.1 From 171765dbdebdda8206081ee2e67302a179b4e998 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 18:32:41 +0200 Subject: new icons, rotate, checks --- src/_icons/check.svg | 2 +- src/_icons/checks.svg | 7 +++++++ src/_icons/device-mobile-vibration.svg | 6 +++--- src/_icons/rotate-2.svg | 7 +++++++ src/_icons/rotate-clockwise-2.svg | 7 +++++++ src/_icons/rotate-clockwise.svg | 2 +- src/_icons/rotate.svg | 2 +- src/_includes/toolbar.html | 12 ++++++++++++ src/editor.html | 15 ++------------- 9 files changed, 41 insertions(+), 19 deletions(-) create mode 100644 src/_icons/checks.svg create mode 100644 src/_icons/rotate-2.svg create mode 100644 src/_icons/rotate-clockwise-2.svg create mode 100644 src/_includes/toolbar.html diff --git a/src/_icons/check.svg b/src/_icons/check.svg index ba7315f7..00febeb9 100644 --- a/src/_icons/check.svg +++ b/src/_icons/check.svg @@ -2,5 +2,5 @@ tags: [tick, "yes"] --- - + diff --git a/src/_icons/checks.svg b/src/_icons/checks.svg new file mode 100644 index 00000000..d0d7a9cc --- /dev/null +++ b/src/_icons/checks.svg @@ -0,0 +1,7 @@ +--- +tags: [tick, "yes"] +--- + + + + diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index 28466cfb..a4ea18e5 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -2,11 +2,11 @@ tags: [iphone, phone, smartphone, cellphone] --- - + - - + + diff --git a/src/_icons/rotate-2.svg b/src/_icons/rotate-2.svg new file mode 100644 index 00000000..ac489c09 --- /dev/null +++ b/src/_icons/rotate-2.svg @@ -0,0 +1,7 @@ +--- +tags: [refresh, synchronization, reload, restart, spinner, loader, ajax, update, arrows] +--- + + + + diff --git a/src/_icons/rotate-clockwise-2.svg b/src/_icons/rotate-clockwise-2.svg new file mode 100644 index 00000000..c17ed1d6 --- /dev/null +++ b/src/_icons/rotate-clockwise-2.svg @@ -0,0 +1,7 @@ +--- +tags: [refresh, synchronization, reload, restart, spinner, loader, ajax, update, arrows] +--- + + + + diff --git a/src/_icons/rotate-clockwise.svg b/src/_icons/rotate-clockwise.svg index 07a01f39..282bbacf 100644 --- a/src/_icons/rotate-clockwise.svg +++ b/src/_icons/rotate-clockwise.svg @@ -2,5 +2,5 @@ tags: [refresh, synchronization, reload, restart, spinner, loader, ajax, update, arrows] --- - + diff --git a/src/_icons/rotate.svg b/src/_icons/rotate.svg index c85d9b2e..0d3cf674 100644 --- a/src/_icons/rotate.svg +++ b/src/_icons/rotate.svg @@ -2,5 +2,5 @@ tags: [refresh, synchronization, reload, restart, spinner, loader, ajax, update, arrows] --- - + diff --git a/src/_includes/toolbar.html b/src/_includes/toolbar.html new file mode 100644 index 00000000..afca9005 --- /dev/null +++ b/src/_includes/toolbar.html @@ -0,0 +1,12 @@ +{% assign toolbar = include.toolbar | split: '|' %} + +
+ {% for group in toolbar %} + {% assign buttons = group | split: ',' %} +
+ {% for button in buttons %} +
{% include icon.html name=button %}
+ {% endfor %} +
+ {% endfor %} +
diff --git a/src/editor.html b/src/editor.html index ccb4f7ee..e84b1296 100644 --- a/src/editor.html +++ b/src/editor.html @@ -2,9 +2,6 @@ layout: default --- -{% assign toolbar = 'arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings' | split: '|' %} - -
@@ -74,16 +71,8 @@ layout: default
-
- {% for group in toolbar %} - {% assign buttons = group | split: ',' %} -
- {% for button in buttons %} -
{% include icon.html name=button %}
- {% endfor %} -
- {% endfor %} -
+ {% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings' %} + {% include toolbar.html toolbar='check,checks,x' %}

{{ site.icons.size }} icons

-- cgit v1.2.1 From dfcdd0ffc55f051e2a03262b19298996bdd725ad Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 19:28:29 +0200 Subject: new icons: accessible, float, disabled-2 --- src/_icons/accessible.svg | 7 +++++++ src/_icons/disabled-2.svg | 8 ++++++++ src/_icons/float-center.svg | 11 +++++++++++ src/_icons/float-left.svg | 9 +++++++++ src/_icons/float-right.svg | 9 +++++++++ 5 files changed, 44 insertions(+) create mode 100644 src/_icons/accessible.svg create mode 100644 src/_icons/disabled-2.svg create mode 100644 src/_icons/float-center.svg create mode 100644 src/_icons/float-left.svg create mode 100644 src/_icons/float-right.svg diff --git a/src/_icons/accessible.svg b/src/_icons/accessible.svg new file mode 100644 index 00000000..6bc6f907 --- /dev/null +++ b/src/_icons/accessible.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/disabled-2.svg b/src/_icons/disabled-2.svg new file mode 100644 index 00000000..131a9dcf --- /dev/null +++ b/src/_icons/disabled-2.svg @@ -0,0 +1,8 @@ +--- +tags: [wheelchair, accessible] +--- + + + + + diff --git a/src/_icons/float-center.svg b/src/_icons/float-center.svg new file mode 100644 index 00000000..09ed83d6 --- /dev/null +++ b/src/_icons/float-center.svg @@ -0,0 +1,11 @@ +--- +--- + + + + + + + + + diff --git a/src/_icons/float-left.svg b/src/_icons/float-left.svg new file mode 100644 index 00000000..ea7c05b8 --- /dev/null +++ b/src/_icons/float-left.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/float-right.svg b/src/_icons/float-right.svg new file mode 100644 index 00000000..4953e77d --- /dev/null +++ b/src/_icons/float-right.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + -- cgit v1.2.1 From d8ae6cc7a6342b6f45fc3aa1a7ab22bf286fc55c Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 19:42:29 +0200 Subject: file horizontal icon, file icons fixes --- src/_icons/file-check.svg | 2 +- src/_icons/file-download.svg | 2 +- src/_icons/file-horizontal.svg | 7 +++++++ src/_icons/file-invoice.svg | 2 +- src/_icons/file-minus.svg | 2 +- src/_icons/file-music.svg | 2 +- src/_icons/file-plus.svg | 2 +- src/_icons/file-text.svg | 2 +- src/_icons/file-x.svg | 2 +- src/_icons/file.svg | 2 +- 10 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 src/_icons/file-horizontal.svg diff --git a/src/_icons/file-check.svg b/src/_icons/file-check.svg index 6b36c38f..37d72d0b 100644 --- a/src/_icons/file-check.svg +++ b/src/_icons/file-check.svg @@ -3,6 +3,6 @@ tags: ["yes"] --- - + diff --git a/src/_icons/file-download.svg b/src/_icons/file-download.svg index bb43bf34..5edd4672 100644 --- a/src/_icons/file-download.svg +++ b/src/_icons/file-download.svg @@ -3,7 +3,7 @@ tags: [] --- - + diff --git a/src/_icons/file-horizontal.svg b/src/_icons/file-horizontal.svg new file mode 100644 index 00000000..86d5ecd4 --- /dev/null +++ b/src/_icons/file-horizontal.svg @@ -0,0 +1,7 @@ +--- +tags: [paper, new] +--- + + + + diff --git a/src/_icons/file-invoice.svg b/src/_icons/file-invoice.svg index 69a9de64..eb54b0d7 100644 --- a/src/_icons/file-invoice.svg +++ b/src/_icons/file-invoice.svg @@ -2,7 +2,7 @@ --- - + diff --git a/src/_icons/file-minus.svg b/src/_icons/file-minus.svg index 0eef13d1..d9fe0711 100644 --- a/src/_icons/file-minus.svg +++ b/src/_icons/file-minus.svg @@ -3,6 +3,6 @@ tags: [remove] --- - + diff --git a/src/_icons/file-music.svg b/src/_icons/file-music.svg index 58cfe55f..f9054199 100644 --- a/src/_icons/file-music.svg +++ b/src/_icons/file-music.svg @@ -3,7 +3,7 @@ tags: [mp3, wma, wav] --- - + diff --git a/src/_icons/file-plus.svg b/src/_icons/file-plus.svg index a41b3bd0..0e91546c 100644 --- a/src/_icons/file-plus.svg +++ b/src/_icons/file-plus.svg @@ -3,7 +3,7 @@ tags: [add, create, new] --- - + diff --git a/src/_icons/file-text.svg b/src/_icons/file-text.svg index f9d8e17f..2a594cdc 100644 --- a/src/_icons/file-text.svg +++ b/src/_icons/file-text.svg @@ -3,7 +3,7 @@ tags: [data, pdf, txt] --- - + diff --git a/src/_icons/file-x.svg b/src/_icons/file-x.svg index bd58f8b7..b83bcba7 100644 --- a/src/_icons/file-x.svg +++ b/src/_icons/file-x.svg @@ -3,6 +3,6 @@ tags: [remove, delete, erase] --- - + diff --git a/src/_icons/file.svg b/src/_icons/file.svg index 0318b8c7..c6223d8d 100644 --- a/src/_icons/file.svg +++ b/src/_icons/file.svg @@ -3,5 +3,5 @@ tags: [paper, new] --- - + -- cgit v1.2.1 From 106b49b7d33286fd544e2ef18dc0c074ade83568 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 20:16:21 +0200 Subject: currency icons --- src/_icons/currency-bitcoin.svg | 11 +++++++++++ src/_icons/currency-pound.svg | 5 +++++ src/_icons/currency-rupee.svg | 6 ++++++ src/editor.html | 2 +- 4 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 src/_icons/currency-bitcoin.svg create mode 100644 src/_icons/currency-pound.svg create mode 100644 src/_icons/currency-rupee.svg diff --git a/src/_icons/currency-bitcoin.svg b/src/_icons/currency-bitcoin.svg new file mode 100644 index 00000000..da83098b --- /dev/null +++ b/src/_icons/currency-bitcoin.svg @@ -0,0 +1,11 @@ +--- +--- + + + + + + + + + diff --git a/src/_icons/currency-pound.svg b/src/_icons/currency-pound.svg new file mode 100644 index 00000000..8f58cf3a --- /dev/null +++ b/src/_icons/currency-pound.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/currency-rupee.svg b/src/_icons/currency-rupee.svg new file mode 100644 index 00000000..75a04edd --- /dev/null +++ b/src/_icons/currency-rupee.svg @@ -0,0 +1,6 @@ +--- +--- + + + + diff --git a/src/editor.html b/src/editor.html index e84b1296..fcf7d737 100644 --- a/src/editor.html +++ b/src/editor.html @@ -72,7 +72,7 @@ layout: default
{% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings' %} - {% include toolbar.html toolbar='check,checks,x' %} + {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee' %}

{{ site.icons.size }} icons

-- cgit v1.2.1 From 7ac7ca0c2b7df07c6e02749440ab2ebc196766dd Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 20:26:06 +0200 Subject: currency yen --- gulpfile.js | 4 +++- src/_icons/currency-yen.svg | 7 +++++++ src/editor.html | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 src/_icons/currency-yen.svg diff --git a/gulpfile.js b/gulpfile.js index 967de80b..9a5b6e6d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -414,7 +414,9 @@ gulp.task('optimize', function (cb) { .replace(/a\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7') .replace(/\n\n+/g, "\n"); - fs.writeFileSync(file, svgFileContent); + if(svgFile.toString() !== svgFileContent) { + fs.writeFileSync(file, svgFileContent); + } }); cb(); diff --git a/src/_icons/currency-yen.svg b/src/_icons/currency-yen.svg new file mode 100644 index 00000000..15f8a693 --- /dev/null +++ b/src/_icons/currency-yen.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/editor.html b/src/editor.html index fcf7d737..8a55e132 100644 --- a/src/editor.html +++ b/src/editor.html @@ -72,7 +72,7 @@ layout: default
{% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough|align-left,align-center,align-right,align-justified,line-height|list,list-check|link,photo,table|sort-ascending,sort-descending|indent-increase,indent-decrease|subscript,superscript|minus,omega,chart-area-line,pencil|eraser,settings' %} - {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee' %} + {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee,currency-yen' %}

{{ site.icons.size }} icons

-- cgit v1.2.1 From 47335aa1ea670c0785f716830bebe582cceecd76 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 20:26:39 +0200 Subject: currency yen fix --- src/_icons/currency-yen.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_icons/currency-yen.svg b/src/_icons/currency-yen.svg index 15f8a693..60866c54 100644 --- a/src/_icons/currency-yen.svg +++ b/src/_icons/currency-yen.svg @@ -1,7 +1,7 @@ --- --- - + -- cgit v1.2.1