aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook/style.php
diff options
context:
space:
mode:
authortommy tomson <thomas.bierey@gmx.de>2012-04-15 02:50:16 +0200
committertommy tomson <thomas.bierey@gmx.de>2012-04-15 02:50:16 +0200
commit170c15ceb9cac013146b7f9687b83a376a3a21ff (patch)
tree2c7963accf8e4f1e8ea5ab46c8676084fa1b8f1b /view/theme/diabook/style.php
parent31b1d353b251d61397b6b18b7d5d2e21c8d7ac64 (diff)
downloadvolse-hubzilla-170c15ceb9cac013146b7f9687b83a376a3a21ff.tar.gz
volse-hubzilla-170c15ceb9cac013146b7f9687b83a376a3a21ff.tar.bz2
volse-hubzilla-170c15ceb9cac013146b7f9687b83a376a3a21ff.zip
diabook: theme-settings: add a wide-option
Diffstat (limited to 'view/theme/diabook/style.php')
-rw-r--r--view/theme/diabook/style.php159
1 files changed, 158 insertions, 1 deletions
diff --git a/view/theme/diabook/style.php b/view/theme/diabook/style.php
index 72e8899d4..770124841 100644
--- a/view/theme/diabook/style.php
+++ b/view/theme/diabook/style.php
@@ -1,24 +1,42 @@
<?php
$line_height=false;
$diabook_font_size=false;
+ $resolution=false;
$site_line_height = get_config("diabook","line_height");
$site_diabook_font_size = get_config("diabook", "font_size" );
+ $site_resolution = get_config("diabook", "resolution" );
+
if (local_user()) {
$line_height = get_pconfig(local_user(), "diabook","line_height");
$diabook_font_size = get_pconfig(local_user(), "diabook", "font_size");
+ $resolution = get_pconfig(local_user(), "diabook", "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