diff options
author | friendica <info@friendica.com> | 2012-04-26 15:35:25 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-26 15:35:25 -0700 |
commit | 2d94d216a3869827f890cbc2ca71f8b3d8ad935f (patch) | |
tree | 5a6a7df85b48f27ddefea6f0badc81fd13095221 /view/theme/cleanzero/style.php | |
parent | f8e7f28f403336dc288ab53eba1834de26790598 (diff) | |
parent | 3ee998dbaf83e92dd1ceaee4d35ca942210c5e24 (diff) | |
download | volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.tar.gz volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.tar.bz2 volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.zip |
Merge https://github.com/friendica/friendica into pull
Diffstat (limited to 'view/theme/cleanzero/style.php')
-rw-r--r-- | view/theme/cleanzero/style.php | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/view/theme/cleanzero/style.php b/view/theme/cleanzero/style.php new file mode 100644 index 000000000..b820d3b7a --- /dev/null +++ b/view/theme/cleanzero/style.php @@ -0,0 +1,71 @@ +<?php + $color=false; + $cleanzero_font_size=false; + + $site_color = get_config("cleanzero","color"); + $site_cleanzero_font_size = get_config("cleanzero", "font_size" ); + + + if (local_user()) { + $color = get_pconfig(local_user(), "cleanzero","color"); + $cleanzero_font_size = get_pconfig(local_user(), "cleanzero", "font_size"); + + } + + if ($color===false) $color=$site_color; + if ($color===false) $color="cleanzero"; + if ($cleanzero_font_size===false) $cleanzero_font_size=$site_cleanzero_font_size; + + + + if (file_exists("$THEMEPATH/$color/style.css")){ + echo file_get_contents("$THEMEPATH/$color/style.css"); + } + + + + if($cleanzero_font_size == "16"){ + echo " + .wall-item-content-wrapper { + font-size: 16px; + } + + .wall-item-content-wrapper.comment { + font-size: 16px; + } + "; + } + if($cleanzero_font_size == "14"){ + echo " + .wall-item-content-wrapper { + font-size: 14px; + } + + .wall-item-content-wrapper.comment { + font-size: 14px; + } + "; + } + if($cleanzero_font_size == "12"){ + echo " + .wall-item-content-wrapper { + font-size: 12px; + } + + .wall-item-content-wrapper.comment { + font-size: 12px; + } + "; + } + if($cleanzero_font_size == "10"){ + echo " + .wall-item-content-wrapper { + font-size: 10px; + } + + .wall-item-content-wrapper.comment { + font-size: 10px; + } + "; + } + |