Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/icons.scss2
-rw-r--r--img/help.svg1
-rw-r--r--src/components/MenuBar.vue2
3 files changed, 3 insertions, 2 deletions
diff --git a/css/icons.scss b/css/icons.scss
index 43e4ca6f3..a5065f9b1 100644
--- a/css/icons.scss
+++ b/css/icons.scss
@@ -13,6 +13,7 @@
@include icon-black-white('paragraph', 'text', 1);
@include icon-black-white('code', 'text', 1);
@include icon-black-white('image', 'text', 1);
+@include icon-black-white('help', 'text', 1);
@include icon-black-white('emoji', 'text', 1);
@include icon-black-white('h1', 'text', 1);
@include icon-black-white('h2', 'text', 1);
@@ -20,4 +21,3 @@
@include icon-black-white('h4', 'text', 1);
@include icon-black-white('h5', 'text', 1);
@include icon-black-white('h6', 'text', 1);
-
diff --git a/img/help.svg b/img/help.svg
new file mode 100644
index 000000000..1ad79bbec
--- /dev/null
+++ b/img/help.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M15.07,11.25L14.17,12.17C13.45,12.89 13,13.5 13,15H11V14.5C11,13.39 11.45,12.39 12.17,11.67L13.41,10.41C13.78,10.05 14,9.55 14,9C14,7.89 13.1,7 12,7A2,2 0 0,0 10,9H8A4,4 0 0,1 12,5A4,4 0 0,1 16,9C16,9.88 15.64,10.67 15.07,11.25M13,19H11V17H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12C22,6.47 17.5,2 12,2Z" /></svg> \ No newline at end of file
diff --git a/src/components/MenuBar.vue b/src/components/MenuBar.vue
index c41a800c7..7c27439da 100644
--- a/src/components/MenuBar.vue
+++ b/src/components/MenuBar.vue
@@ -259,7 +259,7 @@ export default {
class: 'icon-image',
}, {
label: t('text', 'Formatting help'),
- class: 'icon-info',
+ class: 'icon-help',
click: () => {
this.$emit('show-help')
},