diff options
-rw-r--r-- | src/_icons/border-radius.svg | 6 | ||||
-rw-r--r-- | src/_icons/device-mobile-vibration.svg | 10 | ||||
-rw-r--r-- | src/_icons/eraser.svg | 6 | ||||
-rw-r--r-- | src/_icons/plane-arrival.svg | 2 | ||||
-rw-r--r-- | src/_icons/plane-departure.svg | 2 | ||||
-rw-r--r-- | src/_icons/strikethrough.svg | 3 | ||||
-rw-r--r-- | src/editor.html | 2 |
7 files changed, 22 insertions, 9 deletions
diff --git a/src/_icons/border-radius.svg b/src/_icons/border-radius.svg new file mode 100644 index 00000000..5be52179 --- /dev/null +++ b/src/_icons/border-radius.svg @@ -0,0 +1,6 @@ +--- +--- +<svg> + <path d="M16.01 4h4v16h-16v-4.01" stroke-dasharray=".001 4" /> + <path d="M4 12v-4a4 4 0 0 1 4 -4h4" /> +</svg> diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg index cdeb82e5..5227c7b1 100644 --- a/src/_icons/device-mobile-vibration.svg +++ b/src/_icons/device-mobile-vibration.svg @@ -3,10 +3,10 @@ tags: [iphone, phone, smartphone, cellphone] --- <svg> <g transform="rotate(20 12 12)"> - <rect x="7" y="4" width="10" height="16" rx="1" /> - <line x1="11" y1="5" x2="13" y2="5" /> - <line x1="12" y1="17" x2="12" y2="17.01" /> - <line x1="3" y1="8" x2="3" y2="16" /> - <line x1="21" y1="8" x2="21" y2="16" /> + <rect x="7" y="4" width="10" height="16" rx="1" /> + <line x1="11" y1="5" x2="13" y2="5" /> + <line x1="12" y1="17" x2="12" y2="17.01" /> + <line x1="3" y1="8" x2="3" y2="16" /> + <line x1="21" y1="8" x2="21" y2="16" /> </g> </svg> diff --git a/src/_icons/eraser.svg b/src/_icons/eraser.svg new file mode 100644 index 00000000..528e1bda --- /dev/null +++ b/src/_icons/eraser.svg @@ -0,0 +1,6 @@ +--- +--- +<svg> + <path d="M19 19h-11l-4 -4a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9 9" /> + <path d="M18 12.3l-6.3 -6.3" /> +</svg> diff --git a/src/_icons/plane-arrival.svg b/src/_icons/plane-arrival.svg index 49fa2bc9..a4c198dd 100644 --- a/src/_icons/plane-arrival.svg +++ b/src/_icons/plane-arrival.svg @@ -2,5 +2,5 @@ --- <svg> <path d="M15 12h5a2 2 0 0 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3z" transform="rotate(15 12 12) translate(0 -1)" /> - <polyline points="3 21 21 21"></polyline> + <line x1="3" y1="21" x2="21" y2="21" /> </svg> diff --git a/src/_icons/plane-departure.svg b/src/_icons/plane-departure.svg index 63c62bae..0a56d523 100644 --- a/src/_icons/plane-departure.svg +++ b/src/_icons/plane-departure.svg @@ -2,5 +2,5 @@ --- <svg> <path d="M15 12h5a2 2 0 0 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3z" transform="rotate(-15 12 12) translate(0 -1)" /> - <polyline points="3 21 21 21"></polyline> + <line x1="3" y1="21" x2="21" y2="21" /> </svg> diff --git a/src/_icons/strikethrough.svg b/src/_icons/strikethrough.svg index cd88c614..b05191ac 100644 --- a/src/_icons/strikethrough.svg +++ b/src/_icons/strikethrough.svg @@ -2,5 +2,6 @@ --- <svg> <line x1="5" y1="12" x2="19" y2="12" /> - <path d="M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5" /> + <path d="M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7" /> + <path d="M16.5 16a3.5 3.5 0 0 1 -3.5 3h-1.5a4 2 0 0 1 -4 -1.5" /> </svg> diff --git a/src/editor.html b/src/editor.html index 6ab25e81..ccb4f7ee 100644 --- a/src/editor.html +++ b/src/editor.html @@ -2,7 +2,7 @@ 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|settings' | split: '|' %} +{% 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: '|' %} <div class="container"> |