diff options
author | zottel <github@zottel.net> | 2012-04-20 13:42:33 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-04-20 13:42:33 +0200 |
commit | 9663299da1be50eef4327778fae619fc6f9edef4 (patch) | |
tree | 5cd9b93f16c344cf896ac8d4e2a4a818fe21e783 /view/theme/diabook-blue/style.php | |
parent | 041f74dc775424f686a1cd95c00e0d63bfc4b99c (diff) | |
parent | 0e25376e4afea4e5d96c233594feef0a35ca314c (diff) | |
download | volse-hubzilla-9663299da1be50eef4327778fae619fc6f9edef4.tar.gz volse-hubzilla-9663299da1be50eef4327778fae619fc6f9edef4.tar.bz2 volse-hubzilla-9663299da1be50eef4327778fae619fc6f9edef4.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/theme/diabook-blue/style.php')
-rw-r--r-- | view/theme/diabook-blue/style.php | 159 |
1 files changed, 158 insertions, 1 deletions
diff --git a/view/theme/diabook-blue/style.php b/view/theme/diabook-blue/style.php index 330911b77..c6b467999 100644 --- a/view/theme/diabook-blue/style.php +++ b/view/theme/diabook-blue/style.php @@ -1,24 +1,42 @@ <?php $line_height=false; $diabook_font_size=false; + $resolution=false; $site_line_height = get_config("diabook-blue","line_height"); $site_diabook_font_size = get_config("diabook-blue", "font_size" ); + $site_resolution = get_config("diabook-blue", "resolution" ); + if (local_user()) { $line_height = get_pconfig(local_user(), "diabook-blue","line_height"); $diabook_font_size = get_pconfig(local_user(), "diabook-blue", "font_size"); + $resolution = get_pconfig(local_user(), "diabook-blue", "resolution"); } if ($line_height===false) $line_height=$site_line_height; if ($line_height===false) $line_height="1.3"; if ($diabook_font_size===false) $diabook_font_size=$site_diabook_font_size; if ($diabook_font_size===false) $diabook_font_size="13"; + if ($resolution===false) $resolution=$site_resolution; + if ($resolution===false) $resolution="normal"; + - + if($resolution == "normal") { if (file_exists("$THEMEPATH/style.css")){ echo file_get_contents("$THEMEPATH/style.css"); } + if($diabook_font_size == "15"){ + echo " + .wall-item-container .wall-item-content { + font-size: 15px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 15px; + } + "; + } if($diabook_font_size == "14"){ echo " .wall-item-container .wall-item-content { @@ -74,6 +92,144 @@ } "; } + if($line_height == "1.5"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.5; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.5; + } + "; + } + if($line_height == "1.4"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.4; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.4; + } + "; + } + if($line_height == "1.3"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.3; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.3; + } + "; + } + if($line_height == "1.2"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.2; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.2; + } + "; + } + if($line_height == "1.1"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.1; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.1; + } + "; + } + } + + if($resolution == "wide") { + if (file_exists("$THEMEPATH/style-wide.css")){ + echo file_get_contents("$THEMEPATH/style-wide.css"); + } + if($diabook_font_size == "15"){ + echo " + .wall-item-container .wall-item-content { + font-size: 15px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 15px; + } + "; + } + if($diabook_font_size == "14"){ + echo " + .wall-item-container .wall-item-content { + font-size: 14px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 14px; + } + "; + } + if($diabook_font_size == "13.5"){ + echo " + .wall-item-container .wall-item-content { + font-size: 13.5px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 13.5px; + } + "; + } + if($diabook_font_size == "13"){ + echo " + .wall-item-container .wall-item-content { + font-size: 13px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 13px; + } + "; + } + if($diabook_font_size == "12.5"){ + echo " + .wall-item-container .wall-item-content { + font-size: 12.5px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 12.5px; + } + "; + } + if($diabook_font_size == "12"){ + echo " + .wall-item-container .wall-item-content { + font-size: 12px; + } + + .wall-item-photo-container .wall-item-content { + font-size: 12px; + } + "; + } + if($line_height == "1.5"){ + echo " + .wall-item-container .wall-item-content { + line-height: 1.5; + } + + .wall-item-photo-container .wall-item-content { + line-height: 1.5; + } + "; + } if($line_height == "1.4"){ echo " .wall-item-container .wall-item-content { @@ -118,3 +274,4 @@ } "; } + }
\ No newline at end of file |