diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-11-09 11:24:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-09 11:24:42 +0100 |
commit | b38b6103090b7619fe0a10d85cba430daf66d45d (patch) | |
tree | 486405296d7136bc33c29d0194968ce896f1cfed /apps/workflowengine | |
parent | eb9f53441fc0cacbaa91869bb923148315ef9d6a (diff) | |
parent | cef0e622fbe36fc72216241695a24b57c2193c32 (diff) | |
download | nextcloud-server-b38b6103090b7619fe0a10d85cba430daf66d45d.tar.gz nextcloud-server-b38b6103090b7619fe0a10d85cba430daf66d45d.zip |
Merge pull request #17837 from nextcloud/design/flow-icon
Add Flow app icon
Diffstat (limited to 'apps/workflowengine')
-rw-r--r-- | apps/workflowengine/img/app-dark.svg | 1 | ||||
-rw-r--r-- | apps/workflowengine/img/app.svg | 1 | ||||
-rw-r--r-- | apps/workflowengine/lib/Settings/Section.php | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/apps/workflowengine/img/app-dark.svg b/apps/workflowengine/img/app-dark.svg new file mode 100644 index 00000000000..65499f393ac --- /dev/null +++ b/apps/workflowengine/img/app-dark.svg @@ -0,0 +1 @@ +<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m3.084 3c-1.0027 0-1.834 0.83129-1.834 1.834v2.166h-0.23633c-1.3523-0.019125-1.3523 2.0191 0 2h0.23633v2.166c0 1.0027 0.83129 1.834 1.834 1.834h4.332c1.0027 0 1.834-0.83129 1.834-1.834v-2.166h3.3359l-1.7832 1.7832c-0.98163 0.94251 0.47151 2.3957 1.4141 1.4141l3.4902-3.4902c0.387-0.3878 0.391-1.0229 0-1.4141l-3.4902-3.4902c-0.1883-0.1935-0.4468-0.30271-0.7168-0.30273-0.8974 0-1.3404 1.0909-0.69727 1.7168l1.7832 1.7832h-3.3359v-2.166c0-1.0027-0.83129-1.834-1.834-1.834h-4.332zm0 1.5h4.332c0.19764 0 0.33398 0.13634 0.33398 0.33398v6.332c0 0.19764-0.13634 0.33398-0.33398 0.33398h-4.332c-0.19764 0-0.33398-0.13634-0.33398-0.33398v-6.332c0-0.19764 0.13634-0.33398 0.33398-0.33398z"/></svg> diff --git a/apps/workflowengine/img/app.svg b/apps/workflowengine/img/app.svg new file mode 100644 index 00000000000..e17ee96c92d --- /dev/null +++ b/apps/workflowengine/img/app.svg @@ -0,0 +1 @@ +<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m3.084 3c-1.0027 0-1.834 0.83129-1.834 1.834v2.166h-0.23633c-1.3523-0.019125-1.3523 2.0191 0 2h0.23633v2.166c0 1.0027 0.83129 1.834 1.834 1.834h4.332c1.0027 0 1.834-0.83129 1.834-1.834v-2.166h3.3359l-1.7832 1.7832c-0.98163 0.94251 0.47151 2.3957 1.4141 1.4141l3.4902-3.4902c0.387-0.3878 0.391-1.0229 0-1.4141l-3.4902-3.4902c-0.1883-0.1935-0.4468-0.30271-0.7168-0.30273-0.8974 0-1.3404 1.0909-0.69727 1.7168l1.7832 1.7832h-3.3359v-2.166c0-1.0027-0.83129-1.834-1.834-1.834h-4.332zm0 1.5h4.332c0.19764 0 0.33398 0.13634 0.33398 0.33398v6.332c0 0.19764-0.13634 0.33398-0.33398 0.33398h-4.332c-0.19764 0-0.33398-0.13634-0.33398-0.33398v-6.332c0-0.19764 0.13634-0.33398 0.33398-0.33398z" fill="#fff"/></svg> diff --git a/apps/workflowengine/lib/Settings/Section.php b/apps/workflowengine/lib/Settings/Section.php index 031e9438d9a..3ec3c22dce0 100644 --- a/apps/workflowengine/lib/Settings/Section.php +++ b/apps/workflowengine/lib/Settings/Section.php @@ -23,6 +23,7 @@ namespace OCA\WorkflowEngine\Settings; +use OCA\WorkflowEngine\AppInfo\Application; use OCP\IL10N; use OCP\IURLGenerator; use OCP\Settings\IIconSection; @@ -67,6 +68,6 @@ class Section implements IIconSection { * {@inheritdoc} */ public function getIcon() { - return $this->url->imagePath('core', 'actions/tag.svg'); + return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); } } |