From cb59aca5fa1bb845b752718248862c00ffe47c1a Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Fri, 28 Dec 2018 17:38:30 +0100 Subject: [PATCH] Fix icon urls --- developer_manual/design/icons.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/developer_manual/design/icons.rst b/developer_manual/design/icons.rst index fb076ac16..4f91a53bc 100644 --- a/developer_manual/design/icons.rst +++ b/developer_manual/design/icons.rst @@ -25,15 +25,15 @@ You can request and color any svg icons used in nextcloud with this api. The server will directly change the colours of the ``circle``, ``rect`` and ``path`` elements in the svg you provide. Simply use those urls: -* ``https://yourdomain/svg/core/actions/menu/ffffff`` +* ``https://yourdomain/svg/core/actions/menu?color=ffffff`` Will serve the svg located in the core/img directory as a white icon ``/core/img/actions/menu.svg`` -* ``https://yourdomain/svg/core/places/calendar/0082c9`` +* ``https://yourdomain/svg/core/places/calendar?color=0082c9`` Will serve the svg located in the core/img directory with the color #0082c9 ``/core/img/places/calendar.svg`` -* ``https://yourdomain/svg/files/app/000000`` +* ``https://yourdomain/svg/files/app?color=000000`` Will serve the svg located in the files app ``img`` directory ad a black icon ``/app/files/img/app.svg``