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:
authorNico Kaiser <nico@kaiser.me>2022-11-03 23:51:57 +0300
committerNico Kaiser <nico@kaiser.me>2022-11-08 13:14:26 +0300
commit4ace26638dc1235e175148d08403c69380f82d0a (patch)
treeea0cc01a11e84823f61e24e77cfc2bc4e1a4f8b2
parent3ad5a251716c242d383ac61115df0aee88883432 (diff)
Remove broken icons.css references
Signed-off-by: Nico Kaiser <nico@kaiser.me>
-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');