diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-06-06 19:48:28 +0200 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-06-06 22:53:41 +0200 |
commit | 1e046196759eefd3246bf95bffe3b8f8c0406069 (patch) | |
tree | d37ef4efbc99758296baf1105fa4b59a2684c046 /apps/files_sharing/css | |
parent | 858ba27835ed3e71ad34c9cc933467e98db14adf (diff) | |
download | nextcloud-server-1e046196759eefd3246bf95bffe3b8f8c0406069.tar.gz nextcloud-server-1e046196759eefd3246bf95bffe3b8f8c0406069.zip |
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r-- | apps/files_sharing/css/404.css | 5 | ||||
-rw-r--r-- | apps/files_sharing/css/icons.scss | 23 | ||||
-rw-r--r-- | apps/files_sharing/css/mobile.scss | 5 | ||||
-rw-r--r-- | apps/files_sharing/css/public.scss | 5 | ||||
-rw-r--r-- | apps/files_sharing/css/publicView.scss | 4 |
5 files changed, 21 insertions, 21 deletions
diff --git a/apps/files_sharing/css/404.css b/apps/files_sharing/css/404.css index 2ed81df3b86..160a8f83fc3 100644 --- a/apps/files_sharing/css/404.css +++ b/apps/files_sharing/css/404.css @@ -1,4 +1,7 @@ - +/** + * SPDX-FileCopyrightText: 2013 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-or-later + */ #body-login .error-broken-link{ text-align:left;color:#fff; } diff --git a/apps/files_sharing/css/icons.scss b/apps/files_sharing/css/icons.scss index 21bd1bde019..ddfd7f89602 100644 --- a/apps/files_sharing/css/icons.scss +++ b/apps/files_sharing/css/icons.scss @@ -1,23 +1,6 @@ -/** - * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com> - * - * @author John Molakvoæ <skjnldsv@protonmail.com> - * - * @license GNU AGPL version 3 or any later version - * - * 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/>. - * +/*! + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ @use 'variables'; @import 'functions'; diff --git a/apps/files_sharing/css/mobile.scss b/apps/files_sharing/css/mobile.scss index 5800bf6755f..6d95c82155b 100644 --- a/apps/files_sharing/css/mobile.scss +++ b/apps/files_sharing/css/mobile.scss @@ -1,3 +1,8 @@ +/*! + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2014 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ @use 'variables'; @media only screen and (max-width: variables.$breakpoint-mobile) { diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index ded68fc46b1..2f4a28b761c 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -1,3 +1,8 @@ +/*! + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ @use 'variables'; $footer-height: 65px; diff --git a/apps/files_sharing/css/publicView.scss b/apps/files_sharing/css/publicView.scss index 398fd1b0a37..b5d9978e5f4 100644 --- a/apps/files_sharing/css/publicView.scss +++ b/apps/files_sharing/css/publicView.scss @@ -1,2 +1,6 @@ +/*! + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ @import 'public.scss'; @import 'mobile.scss'; |