2012-03-30 21:21:14 +02:00
|
|
|
<?php
|
2015-06-29 23:03:44 +02:00
|
|
|
$uid = get_theme_uid();
|
|
|
|
|
2012-04-13 11:21:15 +02:00
|
|
|
$color=false;
|
|
|
|
$quattro_align=false;
|
|
|
|
$site_color = get_config("quattro","color");
|
|
|
|
$site_quattro_align = get_config("quattro", "align" );
|
|
|
|
|
2015-06-29 23:03:44 +02:00
|
|
|
if ($uid) {
|
|
|
|
$color = get_pconfig( $uid, "quattro","color");
|
|
|
|
$quattro_align = get_pconfig( $uid, 'quattro', 'align' );
|
2012-04-12 08:40:17 +02:00
|
|
|
}
|
2012-03-30 21:21:14 +02:00
|
|
|
|
2012-04-13 11:21:15 +02:00
|
|
|
if ($color===false) $color=$site_color;
|
2012-03-30 21:21:14 +02:00
|
|
|
if ($color===false) $color="dark";
|
2012-04-13 11:21:15 +02:00
|
|
|
if ($quattro_align===false) $quattro_align=$site_quattro_align;
|
|
|
|
|
2012-03-30 21:21:14 +02:00
|
|
|
|
|
|
|
if (file_exists("$THEMEPATH/$color/style.css")){
|
|
|
|
echo file_get_contents("$THEMEPATH/$color/style.css");
|
|
|
|
}
|
|
|
|
|
2012-04-12 08:40:17 +02: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
|
|
|
|
2012-10-01 14:58:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
$textarea_font_size = false;
|
|
|
|
$post_font_size = false;
|
|
|
|
|
|
|
|
$site_textarea_font_size = get_config("quattro","tfs");
|
|
|
|
$site_post_font_size = get_config("quattro","pfs");
|
|
|
|
if ($site_textarea_font_size===false) $site_textarea_font_size="20";
|
|
|
|
if ($site_post_font_size===false) $site_post_font_size="12";
|
|
|
|
|
2015-06-29 23:03:44 +02:00
|
|
|
if ($uid) {
|
|
|
|
$textarea_font_size = get_pconfig( $uid, "quattro","tfs");
|
|
|
|
$post_font_size = get_pconfig( $uid, "quattro","pfs");
|
2012-10-01 14:58:05 +02: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;
|
2012-09-17 09:29:58 +02: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; }
|
2012-10-01 14:58:05 +02:00
|
|
|
.wall-item-container .wall-item-content { font-size: ${post_font_size}px; }
|
2012-09-17 09:29:58 +02:00
|
|
|
";
|