2012-03-30 21:21:14 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
|
|
|
* @file view/theme/quattro/style.php
|
|
|
|
*/
|
2020-01-18 16:50:57 +01:00
|
|
|
use Friendica\DI;
|
2017-11-07 03:22:52 +01:00
|
|
|
|
2019-10-16 14:43:59 +02:00
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
2017-11-07 03:22:52 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
$color = false;
|
|
|
|
$quattro_align = false;
|
2020-01-19 21:21:13 +01:00
|
|
|
$site_color = DI::config()->get("quattro", "color", "dark");
|
|
|
|
$site_quattro_align = DI::config()->get("quattro", "align", false);
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($uid) {
|
2020-01-18 16:50:57 +01:00
|
|
|
$color = DI::pConfig()->get($uid, "quattro", "color", false);
|
|
|
|
$quattro_align = DI::pConfig()->get($uid, 'quattro', 'align', false);
|
2018-01-15 03:22:39 +01:00
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($color === false) {
|
|
|
|
$color = $site_color;
|
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($quattro_align === false) {
|
|
|
|
$quattro_align = $site_quattro_align;
|
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2019-04-01 03:50:00 +02:00
|
|
|
$color = \Friendica\Util\Strings::sanitizeFilePathItem($color);
|
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if (file_exists("$THEMEPATH/$color/style.css")) {
|
|
|
|
echo file_get_contents("$THEMEPATH/$color/style.css");
|
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2012-03-30 21:21:14 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($quattro_align == "center") {
|
|
|
|
echo "
|
|
|
|
html { width: 100%; margin:0px; padding:0px; }
|
|
|
|
body {
|
|
|
|
margin: 50px auto;
|
|
|
|
width: 900px;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
}
|
2012-09-17 09:29:58 +02:00
|
|
|
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
$textarea_font_size = false;
|
|
|
|
$post_font_size = false;
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$site_textarea_font_size = DI::config()->get("quattro", "tfs", "20");
|
|
|
|
$site_post_font_size = DI::config()->get("quattro", "pfs", "12");
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($uid) {
|
2020-01-18 16:50:57 +01:00
|
|
|
$textarea_font_size = DI::pConfig()->get($uid, "quattro", "tfs", false);
|
|
|
|
$post_font_size = DI::pConfig()->get($uid, "quattro", "pfs", false);
|
2018-01-15 03:22:39 +01:00
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if ($textarea_font_size === false) {
|
|
|
|
$textarea_font_size = $site_textarea_font_size;
|
|
|
|
}
|
|
|
|
if ($post_font_size === false) {
|
|
|
|
$post_font_size = $site_post_font_size;
|
|
|
|
}
|
2017-11-07 23:15:59 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
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; }
|
|
|
|
";
|