aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/cleanzero/style.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-05-05 20:08:19 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-05-05 20:08:19 -0400
commit0c4099966a5ac1f1ff5dc568a600aa57776fb752 (patch)
treef6c8a337eeae8ecc1848e319c9e5beb8c338d973 /view/theme/cleanzero/style.php
parent250bf57e1e69670b956c1365dcb9ffa90800c05c (diff)
parente1ab3a93cc450ca52c7651ecca8cad8334e5f1ce (diff)
downloadvolse-hubzilla-0c4099966a5ac1f1ff5dc568a600aa57776fb752.tar.gz
volse-hubzilla-0c4099966a5ac1f1ff5dc568a600aa57776fb752.tar.bz2
volse-hubzilla-0c4099966a5ac1f1ff5dc568a600aa57776fb752.zip
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master: diabook-theme: small fix diabook-theme: twitter-box-update at right_aside diabook-theme: can now set the twitter search term in theme-settings & small fixes consolidate item deletion so we can fix orphaned categories and file_as tags. DE: new email templates translated workaround to clean up orphaned filetags only show remove category to item owner Option to set theme width added. Minor layout changes * master:
Diffstat (limited to 'view/theme/cleanzero/style.php')
-rw-r--r--view/theme/cleanzero/style.php73
1 files changed, 71 insertions, 2 deletions
diff --git a/view/theme/cleanzero/style.php b/view/theme/cleanzero/style.php
index b820d3b7a..682c527f1 100644
--- a/view/theme/cleanzero/style.php
+++ b/view/theme/cleanzero/style.php
@@ -1,21 +1,24 @@
<?php
$color=false;
$cleanzero_font_size=false;
+ $cleanzero_theme_width=false;
$site_color = get_config("cleanzero","color");
$site_cleanzero_font_size = get_config("cleanzero", "font_size" );
-
+ $site_cleanzero_theme_width = get_config("cleanzero", "theme_width");
if (local_user()) {
$color = get_pconfig(local_user(), "cleanzero","color");
$cleanzero_font_size = get_pconfig(local_user(), "cleanzero", "font_size");
+ $cleanzero_theme_width = get_pconfig(local_user(), "cleanzero", "theme_width");
}
if ($color===false) $color=$site_color;
if ($color===false) $color="cleanzero";
if ($cleanzero_font_size===false) $cleanzero_font_size=$site_cleanzero_font_size;
-
+ if ($cleanzero_theme_width===false) $cleanzero_theme_width=$site_cleanzero_theme_width;
+ if ($cleanzero_theme_width===false) $cleanzero_theme_width="standard";
if (file_exists("$THEMEPATH/$color/style.css")){
@@ -68,4 +71,70 @@
}
";
}
+ if ($cleanzero_theme_width === "standard") {
+ echo "
+ section {
+ margin: 0px 10%;
+ margin-right:10%;
+ }
+
+ aside {
+ margin-left: 10%;
+ }
+ nav {
+ margin-left: 10%;
+ margin-right: 10%;
+
+ }
+
+ nav #site-location {
+ right: 10%;
+
+ }
+ ";
+ }
+
+ if ($cleanzero_theme_width === "narrow") {
+ echo "
+ section {
+ margin: 0px 15%;
+ margin-right:15%;
+ }
+
+ aside {
+ margin-left: 15%;
+ }
+ nav {
+ margin-left: 15%;
+ margin-right: 15%;
+ }
+
+ nav #site-location {
+ right: 15%;
+
+ }
+ ";
+ }
+ if ($cleanzero_theme_width === "wide") {
+ echo "
+ section {
+ margin: 0px 5%;
+ margin-right:5%;
+ }
+
+ aside {
+ margin-left: 5%;
+ }
+ nav {
+ margin-left: 5%;
+ margin-right: 5%;
+
+ }
+
+ nav #site-location {
+ right: 5%;
+
+ }
+ ";
+ }