aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro/style.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2012-04-12 08:40:17 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2012-04-12 08:40:17 +0200
commit6c50eba206ee4f3e43580ef4a29f24f04760b248 (patch)
tree6b206f66985ce744c671b6c9c90844766231d276 /view/theme/quattro/style.php
parente992e296851fd049af045d8851f3b46d0fe73a3f (diff)
downloadvolse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.tar.gz
volse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.tar.bz2
volse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.zip
quattro: move center css to style.php. add tpl for generic_links_widget
Diffstat (limited to 'view/theme/quattro/style.php')
-rw-r--r--view/theme/quattro/style.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/view/theme/quattro/style.php b/view/theme/quattro/style.php
index 889ec1530..b6104a170 100644
--- a/view/theme/quattro/style.php
+++ b/view/theme/quattro/style.php
@@ -1,5 +1,9 @@
<?php
- $color = get_pconfig(local_user(), "quattro","color");
+ $color = false;
+ if (local_user()) {
+ $color = get_pconfig(local_user(), "quattro","color");
+ $quattro_align = get_pconfig(local_user(), 'quattro', 'align' );
+ }
if ($color===false) $color="dark";
@@ -7,3 +11,13 @@
echo file_get_contents("$THEMEPATH/$color/style.css");
}
+
+ if($quattro_align=="center"){
+ echo "
+ html { width: 100%; margin:0px; padding:0px; }
+ body {
+ margin: 50px auto;
+ width: 900px;
+ }
+ ";
+ }