forked from friendica/themes-community
added the Fishfinger theme
The Fishfinger theme is derived from the Quattro theme. This must be available in the Friendica themes directory. Creation date around the 2012, at a time when "vier" was either not there or just in the beginning
This commit is contained in:
parent
4cc1095a25
commit
9a5e6138b6
58 changed files with 1932 additions and 0 deletions
26
fishfinger/style.php
Normal file
26
fishfinger/style.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
if (file_exists("$THEMEPATH/$color/style.css")){
|
||||
echo file_get_contents("$THEMEPATH/$color/style.css");
|
||||
}
|
||||
$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="12";
|
||||
if ($site_post_font_size===false) $site_post_font_size="12";
|
||||
|
||||
if (local_user()) {
|
||||
$textarea_font_size = get_pconfig(local_user(), "quattro","tfs");
|
||||
$post_font_size = get_pconfig(local_user(), "quattro","pfs");
|
||||
}
|
||||
|
||||
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; }
|
||||
";
|
Loading…
Add table
Add a link
Reference in a new issue