From 69e43a1b7b1c8b3561a3cd4907f2a4cfa8559dc1 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 2 Jun 2020 00:40:26 +0200 Subject: Fixed icons: `accessible`, `dice`, `discount`, `palette`, `tax` --- src/_icons/accessible.svg | 2 +- src/_icons/dice.svg | 8 ++++---- src/_icons/discount.svg | 4 ++-- src/_icons/palette.svg | 6 +++--- src/_icons/tax.svg | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/_icons/accessible.svg b/src/_icons/accessible.svg index cfc363df..e5cc45c6 100644 --- a/src/_icons/accessible.svg +++ b/src/_icons/accessible.svg @@ -4,5 +4,5 @@ tags: [low-vision, blind, disability, handicapped] - + diff --git a/src/_icons/dice.svg b/src/_icons/dice.svg index f00f7ea8..21f2ea26 100644 --- a/src/_icons/dice.svg +++ b/src/_icons/dice.svg @@ -3,8 +3,8 @@ tags: [game, boardgame, roll, throw, cube, numbers, gambling] --- - - - - + + + + diff --git a/src/_icons/discount.svg b/src/_icons/discount.svg index d4c464db..2194ffec 100644 --- a/src/_icons/discount.svg +++ b/src/_icons/discount.svg @@ -3,7 +3,7 @@ tags: [sale, reduction, price, cost, money, shopping, bargain] --- - - + + diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg index a792a8ac..0d14e960 100644 --- a/src/_icons/palette.svg +++ b/src/_icons/palette.svg @@ -3,7 +3,7 @@ tags: [color, paint, painter, picture, board, artist] --- - - - + + + diff --git a/src/_icons/tax.svg b/src/_icons/tax.svg index c7a54406..933085df 100644 --- a/src/_icons/tax.svg +++ b/src/_icons/tax.svg @@ -3,7 +3,7 @@ tags: [income, percentage, money, finance, charge, obligation, taxpayer, vat] --- - - + + -- cgit v1.2.1 From 2101bc7e7423d6605841adf9ea559c6f5d2674d8 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 14:46:47 +0200 Subject: `social-paypal` --- src/_icons/facebook.svg | 5 ----- src/_icons/github.svg | 5 ----- src/_icons/google.svg | 5 ----- src/_icons/social-facebook.svg | 5 +++++ src/_icons/social-github.svg | 5 +++++ src/_icons/social-google.svg | 5 +++++ src/_icons/social-paypal.svg | 5 +++++ src/editor.html | 10 ++++++++++ 8 files changed, 30 insertions(+), 15 deletions(-) delete mode 100644 src/_icons/facebook.svg delete mode 100644 src/_icons/github.svg delete mode 100644 src/_icons/google.svg create mode 100644 src/_icons/social-facebook.svg create mode 100644 src/_icons/social-github.svg create mode 100644 src/_icons/social-google.svg create mode 100644 src/_icons/social-paypal.svg (limited to 'src') diff --git a/src/_icons/facebook.svg b/src/_icons/facebook.svg deleted file mode 100644 index 579aeda7..00000000 --- a/src/_icons/facebook.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/github.svg b/src/_icons/github.svg deleted file mode 100644 index 399b07c5..00000000 --- a/src/_icons/github.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/google.svg b/src/_icons/google.svg deleted file mode 100644 index 9ce8aff3..00000000 --- a/src/_icons/google.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/social-facebook.svg b/src/_icons/social-facebook.svg new file mode 100644 index 00000000..579aeda7 --- /dev/null +++ b/src/_icons/social-facebook.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-github.svg b/src/_icons/social-github.svg new file mode 100644 index 00000000..399b07c5 --- /dev/null +++ b/src/_icons/social-github.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-google.svg b/src/_icons/social-google.svg new file mode 100644 index 00000000..9ce8aff3 --- /dev/null +++ b/src/_icons/social-google.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/social-paypal.svg b/src/_icons/social-paypal.svg new file mode 100644 index 00000000..47312102 --- /dev/null +++ b/src/_icons/social-paypal.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/editor.html b/src/editor.html index 37423d78..3f076728 100644 --- a/src/editor.html +++ b/src/editor.html @@ -73,6 +73,16 @@ layout: default
{% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis|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,typography,letter-case,clear-formatting|parentheses,brackets,braces,terminal|github,facebook,twitter,dribbble,google' %} {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee,currency-yen|bike,car,bus,truck,forklift,tir,firetruck,ambulance,tractor' %} + + {% assign social-icons = '' %} + {% for icon in icons %} + {% if icon.slug contains 'social-' %} + {% assign social-icons = social-icons | append: icon.slug | append: ',' %} + {% endif %} + {% endfor %} + {% assign size = social-icons | size | minus: 1 %} + {% assign social-icons = social-icons | slice: 0, size %} + {% include toolbar.html toolbar=social-icons %}

{{ site.icons.size }} icons

-- cgit v1.2.1 From 867b1217511881d924be68a4a3badbe63c75f46b Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 15:00:09 +0200 Subject: google-drive icon --- src/_icons/social-google-drive.svg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/_icons/social-google-drive.svg (limited to 'src') diff --git a/src/_icons/social-google-drive.svg b/src/_icons/social-google-drive.svg new file mode 100644 index 00000000..10d49d4e --- /dev/null +++ b/src/_icons/social-google-drive.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + -- cgit v1.2.1 From 3eb48496c90d2106a40e5ed5f836172e8abab41c Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 15:09:10 +0200 Subject: `instagram` icon --- src/_icons/social-instagram.svg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/_icons/social-instagram.svg (limited to 'src') diff --git a/src/_icons/social-instagram.svg b/src/_icons/social-instagram.svg new file mode 100644 index 00000000..d760ed8b --- /dev/null +++ b/src/_icons/social-instagram.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + -- cgit v1.2.1 From 51385e8c2014c52765620d21575a63b8a3925592 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 15:55:41 +0200 Subject: new brand icons --- src/_icons/brand-chrome.svg | 10 ++++++++++ src/_icons/brand-dribbble.svg | 8 ++++++++ src/_icons/brand-facebook.svg | 5 +++++ src/_icons/brand-github.svg | 5 +++++ src/_icons/brand-google-drive.svg | 7 +++++++ src/_icons/brand-google.svg | 5 +++++ src/_icons/brand-instagram.svg | 7 +++++++ src/_icons/brand-paypal.svg | 5 +++++ src/_icons/brand-sketch.svg | 5 +++++ src/_icons/brand-snapchat.svg | 5 +++++ src/_icons/brand-twitter.svg | 5 +++++ src/_icons/chrome.svg | 10 ---------- src/_icons/dribbble.svg | 8 -------- src/_icons/social-facebook.svg | 5 ----- src/_icons/social-github.svg | 5 ----- src/_icons/social-google-drive.svg | 7 ------- src/_icons/social-google.svg | 5 ----- src/_icons/social-instagram.svg | 7 ------- src/_icons/social-paypal.svg | 5 ----- src/_icons/twitter.svg | 5 ----- src/editor.html | 4 ++-- 21 files changed, 69 insertions(+), 59 deletions(-) create mode 100644 src/_icons/brand-chrome.svg create mode 100644 src/_icons/brand-dribbble.svg create mode 100644 src/_icons/brand-facebook.svg create mode 100644 src/_icons/brand-github.svg create mode 100644 src/_icons/brand-google-drive.svg create mode 100644 src/_icons/brand-google.svg create mode 100644 src/_icons/brand-instagram.svg create mode 100644 src/_icons/brand-paypal.svg create mode 100644 src/_icons/brand-sketch.svg create mode 100644 src/_icons/brand-snapchat.svg create mode 100644 src/_icons/brand-twitter.svg delete mode 100644 src/_icons/chrome.svg delete mode 100644 src/_icons/dribbble.svg delete mode 100644 src/_icons/social-facebook.svg delete mode 100644 src/_icons/social-github.svg delete mode 100644 src/_icons/social-google-drive.svg delete mode 100644 src/_icons/social-google.svg delete mode 100644 src/_icons/social-instagram.svg delete mode 100644 src/_icons/social-paypal.svg delete mode 100644 src/_icons/twitter.svg (limited to 'src') diff --git a/src/_icons/brand-chrome.svg b/src/_icons/brand-chrome.svg new file mode 100644 index 00000000..5f571cb1 --- /dev/null +++ b/src/_icons/brand-chrome.svg @@ -0,0 +1,10 @@ +--- +tags: [browser, internet, web] +--- + + + + + + + diff --git a/src/_icons/brand-dribbble.svg b/src/_icons/brand-dribbble.svg new file mode 100644 index 00000000..eff0a1dd --- /dev/null +++ b/src/_icons/brand-dribbble.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/brand-facebook.svg b/src/_icons/brand-facebook.svg new file mode 100644 index 00000000..579aeda7 --- /dev/null +++ b/src/_icons/brand-facebook.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-github.svg b/src/_icons/brand-github.svg new file mode 100644 index 00000000..399b07c5 --- /dev/null +++ b/src/_icons/brand-github.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-google-drive.svg b/src/_icons/brand-google-drive.svg new file mode 100644 index 00000000..10d49d4e --- /dev/null +++ b/src/_icons/brand-google-drive.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/brand-google.svg b/src/_icons/brand-google.svg new file mode 100644 index 00000000..9ce8aff3 --- /dev/null +++ b/src/_icons/brand-google.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-instagram.svg b/src/_icons/brand-instagram.svg new file mode 100644 index 00000000..d760ed8b --- /dev/null +++ b/src/_icons/brand-instagram.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/brand-paypal.svg b/src/_icons/brand-paypal.svg new file mode 100644 index 00000000..47312102 --- /dev/null +++ b/src/_icons/brand-paypal.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-sketch.svg b/src/_icons/brand-sketch.svg new file mode 100644 index 00000000..08d2e145 --- /dev/null +++ b/src/_icons/brand-sketch.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-snapchat.svg b/src/_icons/brand-snapchat.svg new file mode 100644 index 00000000..8d7f5d2d --- /dev/null +++ b/src/_icons/brand-snapchat.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-twitter.svg b/src/_icons/brand-twitter.svg new file mode 100644 index 00000000..0dc252be --- /dev/null +++ b/src/_icons/brand-twitter.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/chrome.svg b/src/_icons/chrome.svg deleted file mode 100644 index 5f571cb1..00000000 --- a/src/_icons/chrome.svg +++ /dev/null @@ -1,10 +0,0 @@ ---- -tags: [browser, internet, web] ---- - - - - - - - diff --git a/src/_icons/dribbble.svg b/src/_icons/dribbble.svg deleted file mode 100644 index eff0a1dd..00000000 --- a/src/_icons/dribbble.svg +++ /dev/null @@ -1,8 +0,0 @@ ---- ---- - - - - - - diff --git a/src/_icons/social-facebook.svg b/src/_icons/social-facebook.svg deleted file mode 100644 index 579aeda7..00000000 --- a/src/_icons/social-facebook.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/social-github.svg b/src/_icons/social-github.svg deleted file mode 100644 index 399b07c5..00000000 --- a/src/_icons/social-github.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/social-google-drive.svg b/src/_icons/social-google-drive.svg deleted file mode 100644 index 10d49d4e..00000000 --- a/src/_icons/social-google-drive.svg +++ /dev/null @@ -1,7 +0,0 @@ ---- ---- - - - - - diff --git a/src/_icons/social-google.svg b/src/_icons/social-google.svg deleted file mode 100644 index 9ce8aff3..00000000 --- a/src/_icons/social-google.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/social-instagram.svg b/src/_icons/social-instagram.svg deleted file mode 100644 index d760ed8b..00000000 --- a/src/_icons/social-instagram.svg +++ /dev/null @@ -1,7 +0,0 @@ ---- ---- - - - - - diff --git a/src/_icons/social-paypal.svg b/src/_icons/social-paypal.svg deleted file mode 100644 index 47312102..00000000 --- a/src/_icons/social-paypal.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/_icons/twitter.svg b/src/_icons/twitter.svg deleted file mode 100644 index 0dc252be..00000000 --- a/src/_icons/twitter.svg +++ /dev/null @@ -1,5 +0,0 @@ ---- ---- - - - diff --git a/src/editor.html b/src/editor.html index 3f076728..2570d357 100644 --- a/src/editor.html +++ b/src/editor.html @@ -71,12 +71,12 @@ layout: default
- {% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis|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,typography,letter-case,clear-formatting|parentheses,brackets,braces,terminal|github,facebook,twitter,dribbble,google' %} + {% include toolbar.html toolbar='arrow-back-up,arrow-forward-up,printer,paint|bold,italic,underline,strikethrough,emphasis|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,typography,letter-case,clear-formatting|parentheses,brackets,braces,terminal' %} {% include toolbar.html toolbar='check,checks,x|currency-euro,currency-dollar,currency-bitcoin,currency-pound,currency-rupee,currency-yen|bike,car,bus,truck,forklift,tir,firetruck,ambulance,tractor' %} {% assign social-icons = '' %} {% for icon in icons %} - {% if icon.slug contains 'social-' %} + {% if icon.slug contains 'brand-' %} {% assign social-icons = social-icons | append: icon.slug | append: ',' %} {% endif %} {% endfor %} -- cgit v1.2.1 From 155ab48e01716553d071400839ba08ea2baf7be7 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 15:58:32 +0200 Subject: `chrome` icon fix --- src/_icons/brand-chrome.svg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/_icons/brand-chrome.svg b/src/_icons/brand-chrome.svg index 5f571cb1..5c9b7118 100644 --- a/src/_icons/brand-chrome.svg +++ b/src/_icons/brand-chrome.svg @@ -4,7 +4,7 @@ tags: [browser, internet, web] - - - + + + -- cgit v1.2.1 From 8a9f03d444e4716cb1c755680358c2695e879b17 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 17:23:41 +0200 Subject: 3 new icons: `brand-gitlab`, `brand-opera`, `brand-safari` --- src/_icons/brand-gitlab.svg | 5 +++++ src/_icons/brand-opera.svg | 7 +++++++ src/_icons/brand-safari.svg | 7 +++++++ 3 files changed, 19 insertions(+) create mode 100644 src/_icons/brand-gitlab.svg create mode 100644 src/_icons/brand-opera.svg create mode 100644 src/_icons/brand-safari.svg (limited to 'src') diff --git a/src/_icons/brand-gitlab.svg b/src/_icons/brand-gitlab.svg new file mode 100644 index 00000000..0a7decbb --- /dev/null +++ b/src/_icons/brand-gitlab.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-opera.svg b/src/_icons/brand-opera.svg new file mode 100644 index 00000000..1785e65b --- /dev/null +++ b/src/_icons/brand-opera.svg @@ -0,0 +1,7 @@ +--- +tags: [navigation, compass, travel, direction, discover] +--- + + + + diff --git a/src/_icons/brand-safari.svg b/src/_icons/brand-safari.svg new file mode 100644 index 00000000..d977bfe7 --- /dev/null +++ b/src/_icons/brand-safari.svg @@ -0,0 +1,7 @@ +--- +tags: [navigation, compass, travel, direction, discover] +--- + + + + -- cgit v1.2.1 From 2a501898f2c8cf76e17379d783220297e3c828ae Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 17:31:16 +0200 Subject: new icon: `brand-framer` --- src/_icons/brand-framer.svg | 5 +++++ src/_icons/brand-gitlab.svg | 2 +- src/_icons/brand-opera.svg | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 src/_icons/brand-framer.svg (limited to 'src') diff --git a/src/_icons/brand-framer.svg b/src/_icons/brand-framer.svg new file mode 100644 index 00000000..ed776b70 --- /dev/null +++ b/src/_icons/brand-framer.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/brand-gitlab.svg b/src/_icons/brand-gitlab.svg index 0a7decbb..c7e5352c 100644 --- a/src/_icons/brand-gitlab.svg +++ b/src/_icons/brand-gitlab.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/brand-opera.svg b/src/_icons/brand-opera.svg index 1785e65b..31b969c2 100644 --- a/src/_icons/brand-opera.svg +++ b/src/_icons/brand-opera.svg @@ -3,5 +3,5 @@ tags: [navigation, compass, travel, direction, discover] --- - + -- cgit v1.2.1 From 8d0c3ce09eb3bcaf92a37a154487a5b4ab4f67f8 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 17:39:47 +0200 Subject: `device-mobile-vibration` fix --- src/_icons/device-mobile-vibration.svg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index c0e67aab..d950acf7 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -3,10 +3,10 @@ tags: [iphone, phone, smartphone, cellphone] --- - - - - - + + + + + -- cgit v1.2.1 From 5ce5681581500db3fc0c3589a2d83927a08e891f Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 18:00:36 +0200 Subject: `brand-apple` icon --- src/_icons/brand-apple.svg | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/_icons/brand-apple.svg (limited to 'src') diff --git a/src/_icons/brand-apple.svg b/src/_icons/brand-apple.svg new file mode 100644 index 00000000..cdc80f42 --- /dev/null +++ b/src/_icons/brand-apple.svg @@ -0,0 +1,6 @@ +--- +--- + + + + -- cgit v1.2.1 From 7fbdcc2af0f948239048fe2669a05809df3f2f7b Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 18:08:02 +0200 Subject: `brand-telegram` icon --- src/_icons/brand-telegram.svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/_icons/brand-telegram.svg (limited to 'src') diff --git a/src/_icons/brand-telegram.svg b/src/_icons/brand-telegram.svg new file mode 100644 index 00000000..5f7284d2 --- /dev/null +++ b/src/_icons/brand-telegram.svg @@ -0,0 +1,5 @@ +--- +--- + + + -- cgit v1.2.1 From b6d6f224364ebe634b7db4a10c5bf56cd3b244b6 Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 5 Jun 2020 18:17:13 +0200 Subject: `brand-android` --- src/_icons/brand-android.svg | 11 +++++++++++ src/_icons/brand-apple.svg | 4 ++-- src/_icons/brand-telegram.svg | 2 +- src/_icons/device-mobile-vibration.svg | 10 +++++----- 4 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 src/_icons/brand-android.svg (limited to 'src') diff --git a/src/_icons/brand-android.svg b/src/_icons/brand-android.svg new file mode 100644 index 00000000..c1f74eea --- /dev/null +++ b/src/_icons/brand-android.svg @@ -0,0 +1,11 @@ +--- +--- + + + + + + + + + diff --git a/src/_icons/brand-apple.svg b/src/_icons/brand-apple.svg index cdc80f42..63ff60f5 100644 --- a/src/_icons/brand-apple.svg +++ b/src/_icons/brand-apple.svg @@ -1,6 +1,6 @@ --- --- - - + + diff --git a/src/_icons/brand-telegram.svg b/src/_icons/brand-telegram.svg index 5f7284d2..6b8f7ce2 100644 --- a/src/_icons/brand-telegram.svg +++ b/src/_icons/brand-telegram.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index d950acf7..c4c46598 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -3,10 +3,10 @@ tags: [iphone, phone, smartphone, cellphone] --- - - - + + + - - + + -- cgit v1.2.1 From 884dca6b4d44b387b7012afe025397d5e723b4b2 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 6 Jun 2020 20:20:38 +0200 Subject: 3 new icons: `ball-bowling`, `ball-volleyball`, `medical-cross` Renamed icons: - `ball` renamed to `ball-basketball` --- src/_icons/ball-basketball.svg | 9 +++++++++ src/_icons/ball-bowling.svg | 8 ++++++++ src/_icons/ball-volleyball.svg | 8 ++++++++ src/_icons/ball.svg | 9 --------- src/_icons/medical-cross.svg | 5 +++++ 5 files changed, 30 insertions(+), 9 deletions(-) create mode 100644 src/_icons/ball-basketball.svg create mode 100644 src/_icons/ball-bowling.svg create mode 100644 src/_icons/ball-volleyball.svg delete mode 100644 src/_icons/ball.svg create mode 100644 src/_icons/medical-cross.svg (limited to 'src') diff --git a/src/_icons/ball-basketball.svg b/src/_icons/ball-basketball.svg new file mode 100644 index 00000000..371df1af --- /dev/null +++ b/src/_icons/ball-basketball.svg @@ -0,0 +1,9 @@ +--- +--- + + + + + + + diff --git a/src/_icons/ball-bowling.svg b/src/_icons/ball-bowling.svg new file mode 100644 index 00000000..37e5a259 --- /dev/null +++ b/src/_icons/ball-bowling.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg new file mode 100644 index 00000000..5d31395b --- /dev/null +++ b/src/_icons/ball-volleyball.svg @@ -0,0 +1,8 @@ +--- +--- + + + {% for i in (0..2) %} + + {% endfor %} + diff --git a/src/_icons/ball.svg b/src/_icons/ball.svg deleted file mode 100644 index 371df1af..00000000 --- a/src/_icons/ball.svg +++ /dev/null @@ -1,9 +0,0 @@ ---- ---- - - - - - - - diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg new file mode 100644 index 00000000..56aa886f --- /dev/null +++ b/src/_icons/medical-cross.svg @@ -0,0 +1,5 @@ +--- +--- + + + -- cgit v1.2.1 From ddb87bca343122a0d4d1c2664d84f4f07d4fc1a1 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 6 Jun 2020 20:32:26 +0200 Subject: 1 new icon: `ball-tennis` Fixed icons: `ball-bowling`, `ball-volleyball`, `medical-cross` --- src/_icons/ball-bowling.svg | 6 +++--- src/_icons/ball-tennis.svg | 8 ++++++++ src/_icons/ball-volleyball.svg | 2 +- src/_icons/medical-cross.svg | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 src/_icons/ball-tennis.svg (limited to 'src') diff --git a/src/_icons/ball-bowling.svg b/src/_icons/ball-bowling.svg index 37e5a259..33718d61 100644 --- a/src/_icons/ball-bowling.svg +++ b/src/_icons/ball-bowling.svg @@ -2,7 +2,7 @@ --- - - - + + + diff --git a/src/_icons/ball-tennis.svg b/src/_icons/ball-tennis.svg new file mode 100644 index 00000000..d85ae52c --- /dev/null +++ b/src/_icons/ball-tennis.svg @@ -0,0 +1,8 @@ +--- +--- + + + {% for i in (0..1) %} + 0 %} transform="rotate({{ i | times: 180 }} 12 12)"{% endif %} /> + {% endfor %} + diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg index 5d31395b..181484ae 100644 --- a/src/_icons/ball-volleyball.svg +++ b/src/_icons/ball-volleyball.svg @@ -3,6 +3,6 @@ {% for i in (0..2) %} - + 0 %} transform="rotate({{ i | times: 120 }} 12 12)"{% endif %} /> {% endfor %} diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg index 56aa886f..c7c49c47 100644 --- a/src/_icons/medical-cross.svg +++ b/src/_icons/medical-cross.svg @@ -1,5 +1,5 @@ --- --- - + -- cgit v1.2.1 From c73b29ff13b58ac62e5ecc7cc0ab73dae0e00a66 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 6 Jun 2020 21:20:35 +0200 Subject: 2 new icons: `hand-middle-finger`, `hand-stop` --- src/_icons/hand-middle-finger.svg | 5 +++++ src/_icons/hand-stop.svg | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 src/_icons/hand-middle-finger.svg create mode 100644 src/_icons/hand-stop.svg (limited to 'src') diff --git a/src/_icons/hand-middle-finger.svg b/src/_icons/hand-middle-finger.svg new file mode 100644 index 00000000..c91fc76c --- /dev/null +++ b/src/_icons/hand-middle-finger.svg @@ -0,0 +1,5 @@ +--- +--- + + + diff --git a/src/_icons/hand-stop.svg b/src/_icons/hand-stop.svg new file mode 100644 index 00000000..76af35cc --- /dev/null +++ b/src/_icons/hand-stop.svg @@ -0,0 +1,5 @@ +--- +--- + + + -- cgit v1.2.1 From e3e97eb382366a6c107da9e05b5615b1bec2847b Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 6 Jun 2020 21:28:59 +0200 Subject: 1 new icon: `yin-yang` --- src/_icons/yin-yang.svg | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/_icons/yin-yang.svg (limited to 'src') diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg new file mode 100644 index 00000000..2d0ce3be --- /dev/null +++ b/src/_icons/yin-yang.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + -- cgit v1.2.1 From 9334b5d8840c3fd71436af3ff42805be852dbe38 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sat, 6 Jun 2020 21:40:11 +0200 Subject: 2 new icons: `sunset`, `sunshine` --- src/_icons/sunset.svg | 7 +++++++ src/_icons/sunshine.svg | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 src/_icons/sunset.svg create mode 100644 src/_icons/sunshine.svg (limited to 'src') diff --git a/src/_icons/sunset.svg b/src/_icons/sunset.svg new file mode 100644 index 00000000..15b792a9 --- /dev/null +++ b/src/_icons/sunset.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + diff --git a/src/_icons/sunshine.svg b/src/_icons/sunshine.svg new file mode 100644 index 00000000..6890d4a3 --- /dev/null +++ b/src/_icons/sunshine.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + -- cgit v1.2.1 From a58bfb427bad0709050cfe1ce6a9c7c9806eb7c8 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 14:35:08 +0200 Subject: `medical-cross` icon fix --- src/_icons/medical-cross.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg index c7c49c47..dd227ec4 100644 --- a/src/_icons/medical-cross.svg +++ b/src/_icons/medical-cross.svg @@ -1,5 +1,5 @@ --- --- - + -- cgit v1.2.1 From d44724e18f8feeacd61c473eefc328da0281861e Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 14:40:47 +0200 Subject: `mist` icon --- src/_icons/medical-cross.svg | 2 +- src/_icons/mist.svg | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/_icons/mist.svg (limited to 'src') diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg index dd227ec4..5b14dd16 100644 --- a/src/_icons/medical-cross.svg +++ b/src/_icons/medical-cross.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/mist.svg b/src/_icons/mist.svg new file mode 100644 index 00000000..d10c37f9 --- /dev/null +++ b/src/_icons/mist.svg @@ -0,0 +1,8 @@ +--- +--- + + + + + + -- cgit v1.2.1 From 9c2654fb91be32e1fa3c6e2bbd45a1b717f404de Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 14:54:55 +0200 Subject: `wind` icon --- src/_icons/medical-cross.svg | 2 +- src/_icons/wind.svg | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/_icons/wind.svg (limited to 'src') diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg index 5b14dd16..3a9b1c85 100644 --- a/src/_icons/medical-cross.svg +++ b/src/_icons/medical-cross.svg @@ -1,5 +1,5 @@ --- --- - + diff --git a/src/_icons/wind.svg b/src/_icons/wind.svg new file mode 100644 index 00000000..7c4ebec6 --- /dev/null +++ b/src/_icons/wind.svg @@ -0,0 +1,7 @@ +--- +--- + + + + + -- cgit v1.2.1 From f8684c6bb2838b80bb1e214bb457f7d732babb06 Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 15:07:29 +0200 Subject: `flame` icon --- src/_icons/flame.svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/_icons/flame.svg (limited to 'src') diff --git a/src/_icons/flame.svg b/src/_icons/flame.svg new file mode 100644 index 00000000..99b73b6a --- /dev/null +++ b/src/_icons/flame.svg @@ -0,0 +1,5 @@ +--- +--- + + + -- cgit v1.2.1 From ecfb12bf6237a3b9590cd13b36bbed9abeac6a1a Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 15:23:08 +0200 Subject: `yin-yang` fix --- src/_icons/yin-yang.svg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg index 2d0ce3be..c490c30c 100644 --- a/src/_icons/yin-yang.svg +++ b/src/_icons/yin-yang.svg @@ -3,6 +3,6 @@ - - + + -- cgit v1.2.1 From 5c338e77a54fbf0d17d29f1acc60c487581a344b Mon Sep 17 00:00:00 2001 From: codecalm Date: Sun, 7 Jun 2020 15:34:14 +0200 Subject: Release 1.10.0 --- src/_icons/yin-yang.svg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg index c490c30c..c3bbdc77 100644 --- a/src/_icons/yin-yang.svg +++ b/src/_icons/yin-yang.svg @@ -3,6 +3,6 @@ - - + + -- cgit v1.2.1