From d584b45114685b8800e05cc5e471beb777ac532f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 23 Jun 2017 14:05:39 +0200 Subject: [PATCH] Rename icons to avoid issues with theming app MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- css/style.css | 2 +- img/app.svg | 1 - img/deck-dark.svg | 6 ++++++ img/deck.svg | 7 +------ lib/AppInfo/Application.php | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 img/app.svg create mode 100644 img/deck-dark.svg diff --git a/css/style.css b/css/style.css index a098d61f1..43d45c956 100644 --- a/css/style.css +++ b/css/style.css @@ -1058,7 +1058,7 @@ button.button-inline:hover { */ .icon-deck { - background-image: url(../img/deck.svg); + background-image: url(../img/deck-dark.svg); } .icon-group { diff --git a/img/app.svg b/img/app.svg deleted file mode 100644 index 8635651ac..000000000 --- a/img/app.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/deck-dark.svg b/img/deck-dark.svg new file mode 100644 index 000000000..d316b8543 --- /dev/null +++ b/img/deck-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/img/deck.svg b/img/deck.svg index d316b8543..8635651ac 100644 --- a/img/deck.svg +++ b/img/deck.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 2f3375b7c..02921ad38 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -88,7 +88,7 @@ class Application extends App { 'id' => 'deck', 'order' => 10, 'href' => $urlGenerator->linkToRoute('deck.page.index'), - 'icon' => $urlGenerator->imagePath('deck', 'app.svg'), + 'icon' => $urlGenerator->imagePath('deck', 'deck.svg'), 'name' => 'Deck', ]; });