2012-03-30 19:21:14 +00:00
|
|
|
<?php
|
2017-11-07 02:22:52 +00:00
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\PConfig;
|
|
|
|
|
2015-06-29 21:03:44 +00:00
|
|
|
$uid = get_theme_uid();
|
|
|
|
|
2017-11-07 22:15:59 +00:00
|
|
|
$color = false;
|
|
|
|
$quattro_align = false;
|
2017-11-08 06:43:20 +00:00
|
|
|
$site_color = Config::get("quattro", "color", "dark");
|
2017-11-07 22:15:59 +00:00
|
|
|
$site_quattro_align = Config::get("quattro", "align", false);
|
|
|
|
|
2015-06-29 21:03:44 +00:00
|
|
|
if ($uid) {
|
2017-11-08 06:43:20 +00:00
|
|
|
$color = PConfig::get($uid, "quattro", "color", false);
|
|
|
|
$quattro_align = PConfig::get($uid, 'quattro', 'align', false);
|
2017-11-07 22:15:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($color === false) {
|
|
|
|
$color = $site_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($quattro_align === false) {
|
|
|
|
$quattro_align = $site_quattro_align;
|
|
|
|
}
|
|
|
|
|
2012-03-30 19:21:14 +00:00
|
|
|
if (file_exists("$THEMEPATH/$color/style.css")){
|
|
|
|
echo file_get_contents("$THEMEPATH/$color/style.css");
|
|
|
|
}
|
|
|
|
|
2012-04-12 06:40:17 +00:00
|
|
|
|
2017-11-07 22:15:59 +00:00
|
|
|
if ($quattro_align == "center"){
|
2012-04-12 06:40:17 +00:00
|
|
|
echo "
|
|
|
|
html { width: 100%; margin:0px; padding:0px; }
|
|
|
|
body {
|
|
|
|
margin: 50px auto;
|
|
|
|
width: 900px;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
}
|
2012-09-17 07:29:58 +00:00
|
|
|
|
2017-11-07 22:15:59 +00:00
|
|
|
|
|
|
|
$textarea_font_size = false;
|
|
|
|
$post_font_size = false;
|
|
|
|
|
|
|
|
$site_textarea_font_size = Config::get("quattro", "tfs", "20");
|
|
|
|
$site_post_font_size = Config::get("quattro", "pfs", "12");
|
|
|
|
|
|
|
|
if ($uid) {
|
|
|
|
$textarea_font_size = PConfig::get($uid, "quattro", "tfs", false);
|
|
|
|
$post_font_size = 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; }
|
|
|
|
";
|