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

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis <6653109+artonge@users.noreply.github.com>2022-11-08 13:57:09 +0300
committerGitHub <noreply@github.com>2022-11-08 13:57:09 +0300
commit05c3c2f2271b5ee58c1a0b9a7b3f55573230d20b (patch)
tree1c76cd2dafdf289412d237bb4b36966d10d35390
parent5190b3c6b591f8382593388c0b820e1304c7a77a (diff)
parent4ace26638dc1235e175148d08403c69380f82d0a (diff)
Merge pull request #1454 from nicokaiser/fix/icons-css
Remove broken icons.css references
-rw-r--r--css/icons.scss28
-rw-r--r--lib/Controller/PageController.php1
-rw-r--r--lib/Controller/PublicAlbumController.php1
3 files changed, 0 insertions, 30 deletions
diff --git a/css/icons.scss b/css/icons.scss
deleted file mode 100644
index 99d17c11..00000000
--- a/css/icons.scss
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
- *
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- *
- * @license AGPL-3.0-or-later
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-.icon-folder.icon-dark {
- @include icon-color('folder', 'filetypes', $color-black, 1, true);
-}
-
-@include icon-black-white('photos', 'photos', 2);
-@include icon-black-white('yourphotos', 'photos', 1);
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 23e041d4..fe5b3f29 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -134,7 +134,6 @@ class PageController extends Controller {
$this->initialState->provideInitialState('nomedia-paths', $paths);
Util::addScript(Application::APP_ID, 'photos-main');
- Util::addStyle(Application::APP_ID, 'icons');
if ($this->appManager->isEnabledForUser('recognize') === true) {
// Allow auto-translation of tags
diff --git a/lib/Controller/PublicAlbumController.php b/lib/Controller/PublicAlbumController.php
index 6477c1f3..f377af69 100644
--- a/lib/Controller/PublicAlbumController.php
+++ b/lib/Controller/PublicAlbumController.php
@@ -63,7 +63,6 @@ class PublicAlbumController extends Controller {
$this->initialState->provideInitialState('systemtags', false);
Util::addScript(Application::APP_ID, 'photos-public');
- Util::addStyle(Application::APP_ID, 'icons');
$response = new PublicTemplateResponse(Application::APP_ID, 'public');