85 lines
2.4 KiB
PHP
85 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
*
|
|
* @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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
use Friendica\DI;
|
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
|
|
|
$color = false;
|
|
$quattro_align = false;
|
|
$site_color = DI::config()->get("quattro", "color", "dark");
|
|
$site_quattro_align = DI::config()->get("quattro", "align", false);
|
|
|
|
if ($uid) {
|
|
$color = DI::pConfig()->get($uid, "quattro", "color", false);
|
|
$quattro_align = DI::pConfig()->get($uid, 'quattro', 'align', false);
|
|
}
|
|
|
|
if ($color === false) {
|
|
$color = $site_color;
|
|
}
|
|
|
|
if ($quattro_align === false) {
|
|
$quattro_align = $site_quattro_align;
|
|
}
|
|
|
|
$color = \Friendica\Util\Strings::sanitizeFilePathItem($color);
|
|
|
|
if (file_exists("$THEMEPATH/$color/style.css")) {
|
|
echo file_get_contents("$THEMEPATH/$color/style.css");
|
|
}
|
|
|
|
|
|
if ($quattro_align == "center") {
|
|
echo "
|
|
html { width: 100%; margin:0px; padding:0px; }
|
|
body {
|
|
margin: 50px auto;
|
|
width: 900px;
|
|
}
|
|
";
|
|
}
|
|
|
|
|
|
$textarea_font_size = false;
|
|
$post_font_size = false;
|
|
|
|
$site_textarea_font_size = DI::config()->get("quattro", "tfs", "20");
|
|
$site_post_font_size = DI::config()->get("quattro", "pfs", "12");
|
|
|
|
if ($uid) {
|
|
$textarea_font_size = DI::pConfig()->get($uid, "quattro", "tfs", false);
|
|
$post_font_size = DI::pConfig()->get($uid, "quattro", "pfs", false);
|
|
}
|
|
|
|
if ($textarea_font_size === false) {
|
|
$textarea_font_size = $site_textarea_font_size;
|
|
}
|
|
if ($post_font_size === false) {
|
|
$post_font_size = $site_post_font_size;
|
|
}
|
|
|
|
echo "
|
|
textarea { font-size: ${textarea_font_size}px; }
|
|
.wall-item-comment-wrapper .comment-edit-text-full { font-size: ${textarea_font_size}px; }
|
|
#jot .profile-jot-text:focus { font-size: ${textarea_font_size}px; }
|
|
.wall-item-container .wall-item-content { font-size: ${post_font_size}px; }
|
|
";
|