Merge pull request #14395 from tobiasd/reuse

4th batch of REUSE compliance
This commit is contained in:
Michael Vogel 2024-08-25 11:06:28 +02:00 committed by GitHub
commit da9c7c4b21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
70 changed files with 454 additions and 3 deletions

11
LICENSES/BSD-3-Clause.txt Normal file
View file

@ -0,0 +1,11 @@
Copyright (c) <year> <owner>.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

11
LICENSES/WTFPL.txt Normal file
View file

@ -0,0 +1,11 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

View file

@ -7,9 +7,23 @@ SPDX-PackageDownloadLocation = "https://friendi.ca"
path = [
"doc/**",
"spec/*",
"tests/**",
"**/.gitignore",
"src/**/README.md",
"mods/**",
".github/ISSUE_TEMPLATE/*"
"static/*.jsonld",
".github/ISSUE_TEMPLATE/*",
"view/theme/frio/README.md",
"view/theme/vier/README.md",
"view/theme/quattro/TODO",
"view/theme/quattro/**Makefile",
"images/icons/**",
"view/install/*.png",
"view/theme/quattro/icons/*",
"view/theme/smoothly/images/*",
"images/screenshots/*",
"view/theme/frio/img/**",
"config/local-sample.config.php"
]
SPDX-FileCopyrightText = "2010-2024 The Friendica Project"
SPDX-License-Identifier = "CC0-1.0"
@ -19,6 +33,19 @@ path = "view/lang/**/strings.php"
SPDX-FileCopyrightText = "2010-2024 The Friendica Project"
SPDX-License-Identifier = "AGPL-3.0-or-later"
[[annotations]]
path = [
"view/theme/vier/css/font-awesome*.css",
"view/theme/vier/css/font2.css"
]
SPDX-FileCopyrightText = "Dave Gandy"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/theme/vier/font/*"
SPDX-FileCopyrightText = "Dave Gandy"
SPDX-License-Identifier = "OFL-1.1"
[[annotations]]
path = "view/theme/frio/font/open_sans/**"
SPDX-FileCopyrightText = "2010 Steve Matteson, Google LLC"
@ -58,3 +85,59 @@ SPDX-License-Identifier = "MIT"
path = "view/js/fancybox/**"
SPDX-FileCopyrightText = "2019 fancyApps"
SPDX-License-Identifier = "GPL-3.0-only"
[[annotations]]
path = [
"view/theme/smoothly/js/modernizr.custom.2.5.3.*js",
"view/js/modernizr.js"
]
SPDX-FileCopyrightText = "modernizrJS"
SPDX-License-Identifier = "MIT OR BSD-3-Clause"
[[annotations]]
path = "view/theme/frio/frameworks/flexMenu/*"
SPDX-FileCopyrightText = "2012-2014 352 Inc. & Contributors"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = [
"view/theme/quattro/jquery.tools.min.js",
"view/theme/frio/js/jquery.tools.min.js"
]
SPDX-FileCopyrightText = "NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. http://flowplayer.org/tools/"
SPDX-License-Identifier = "CC0-1.0"
[[annotations]]
path = "view/theme/frio/php/PHPColors/*"
SPDX-FileCopyrightText = "Arlo Carreon"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/theme/frio/frameworks/autosize/*"
SPDX-FileCopyrightText = "Jack Moore"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/theme/frio/frameworks/sticky-kit/jquery.sticky-kit.min.js"
SPDX-FileCopyrightText = "2015 Leaf Corcoran"
SPDX-License-Identifier = "WTFPL"
[[annotations]]
path = "view/theme/frio/frameworks/jquery-scrollspy/*"
SPDX-FileCopyrightText = "2011 Samuel Alexander, 2015 SoftwareSpot"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/theme/frio/frameworks/ekko-lightbox/*"
SPDX-FileCopyrightText = "2013 Ashley White"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/theme/frio/frameworks/awesome-bootstrap-checkbox/*"
SPDX-FileCopyrightText = "2014 Philip Daineka"
SPDX-License-Identifier = "MIT"
[[annotations]]
path = "view/js/vanillaEmojiPicker/*"
SPDX-FileCopyrightText = "2020, woody180 https://github.com/woody180/vanilla-javascript-emoji-picker"
SPDX-License-Identifier = "MIT"

View file

@ -1,5 +1,9 @@
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This script is used for autotesting the Friendica codebase with different
# types of tests and environments.
#

View file

@ -1,6 +1,10 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
This script will collect the contributors to friendica and its translations from
* the git log of the friendica core and addons repositories

View file

@ -1,5 +1,9 @@
#!/bin/bash
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: AGPL-3.0-or-later
command -v uglifyjs >/dev/null 2>&1 || { echo >&2 "I require UglifyJS but it's not installed. Aborting."; exit 1; }
MINIFY_CMD=uglifyjs

View file

@ -1,4 +1,8 @@
#!/bin/bash
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Script to setup the vagrant instance for running friendica
#
# DO NOT RUN on your physical machine as this won't be of any use

View file

@ -1,5 +1,9 @@
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: AGPL-3.0-or-later
# Run this as sudo!
# I move this file to /usr/local/bin/vhost and run command 'vhost' from anywhere, using sudo.

View file

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2010-2024 the Friendica project
#
# SPDX-License-Identifier: CC0-1.0
<FilesMatch "\.tpl">
<IfModule authz_host_module>
#Apache 2.4

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* General style rules .*/
.pull-right { float: right }

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/***
* Friendica Communication Server
*

View file

@ -1,5 +1,9 @@
//<!-- Docs at: http://www.microcosmotalk.com/tech/scripts/
// @license magnet:?xt=urn:btih:e95b018ef3580986a04669f1b5879592219e2a7a&dn=public-domain.txt Public Domain
//
// SPDX-License-Identifer = CC0-1.0
// SPDX-FileCopyrightText = Jim Carlock
//
// NOTE:
// This code is placed into the public domain and may be used in any manner desired.
//

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
Dropzone.autoDiscover = false;
var DzFactory = function (max_imagesize) {
this.createDropzone = function(dropSelector, textareaElementId) {

View file

@ -3,7 +3,7 @@
/**
* SPDX-FileCopyrightText: 2014 Leonardo Cardoso (http://leocardz.com), Rabuzarus to use it in the decentralized social network Friendica (https://friendi.ca).
*
* SPDX-License-Identifier: MIT or GPL-2.0-only
* SPDX-License-Identifier: MIT OR GPL-2.0-only
*
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
// https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
body {
font-family: "Comic Sans MS", sans !important;
font-size: 13px;

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* dark variation Fabio Comuni <fabrix.xm@gmail.com> */
a:link, a:visited { color: #99CCFF; text-decoration: none; }

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
.vcard .fn {
color: orange !important;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* green variation by Tobias Diekershoff <tobias.diekershoff@gmx.net> */
a:link, a:visited { color: #549f4f; text-decoration: none; }

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
a, a:link, a:visited { color: #7433af; text-decoration: none; }
a:hover {text-decoration: underline; }

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
.wall-item-content-wrapper {
border: none;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* duepuntozero Frindika style
* Fabio Comuni <fabrix.xm@gmail.com>

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@-webkit-keyframes passing-through {
0% {
opacity: 0;

File diff suppressed because one or more lines are too long

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
@file view/theme/frio/css/font-awesome.custom.css
This file applies Font Awesome icons to some friendica standard classes

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
.hovercard {
position: absolute;
top: 0;

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#adminpage.adminpage > h1 {
padding: 0 15px;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
Created on : 17.02.2016, 23:55:45
Author : rabuzarus and contributors

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
$(function () {
// Jot attachment live preview.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/*
* The javascript for friendicas hovercard. Bootstraps popover is needed.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
// We append the linkPreview to a global Variable to make linkPreview
// accessable on other places. Note: search on other places before you

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**
* JavaScript for the admin module

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
var batchConfirmed = false;

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**
* JavaScript for the display module

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**
* @file view/theme/frio/js/mod_events.js

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
$(document).ready(function () {

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/**
* Contains functions for bootstrap modal handling.

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
$(function(){
/* column filter */

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
/*
* The file contains functions for text editing and commenting

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
var jotcache = ""; //The jot cache. We use it as cache to restore old/original jot content

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
Licence : AGPL
Created on : 11.08.2020

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
Licence : AGPL
Created on : 11.08.2020

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Quattro Theme LESS file
// "Echo" palette from Inkscape

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* THIS FILE IS GENERATED FROM THE less SOURCE DO NOT EDIT MANUALLY */
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
**/

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Quattro Theme LESS file
// "Echo" palette from Inkscape

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* THIS FILE IS GENERATED FROM THE less SOURCE DO NOT EDIT MANUALLY */
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
**/

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Quattro Theme LESS file
/* icons */

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
$(document).ready(function(){
$('nav').bind('nav-update', function(e,data){

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Quattro Theme LESS file
// "Echo" palette from Inkscape

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* THIS FILE IS GENERATED FROM THE less SOURCE DO NOT EDIT MANUALLY */
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
**/

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
// Quattro Theme LESS file
/* global */

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2008 Jason Frame
//
// SPDX-License-Identifier: MIT
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
// source https://github.com/jaz303/jquery-grab-bag
(function($) {

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/*
style.css
Theme: Smoothly

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* "Breathe" style for friendica theme "Vier"
* silke june 2014 */

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
*{
box-shadow: 0 0 0 0 !important;
border-color: #343434 !important;

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
*{ box-shadow: 0 0 0 0 !important;}
body, section { background-color: #ffffff !important;}
#profile-jot-form { background-color: #ffffff !important;}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
aside {
display: none;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
aside, header, #nav-search-box, #nav-admin-link, #nav-messages-linkmenu, #shared-links-tab, #nav-logout-link,
.wall-item-location {
display: none;

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#nav-user-linklabel {
display: none;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
.tread-wrapper {
background-color: #fafafa;
}

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
nav {
background: #fff;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* Modifications by https://horche.demkontinuum.de/profile/hoergen */
/* General */

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
nav {
background: rgb(36, 76, 94);
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/**
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
* Additional Changes: Michael Vogel <icarus@dabo.de>

View file

@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
right_aside {
display: block;
}