diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-04-13 11:21:15 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-04-13 11:21:15 +0200 |
commit | 7aa3b92f4c4619de76f45f448edfd6e4dcfbceb4 (patch) | |
tree | f28c86610cf46b3abc04acd76549129972882f16 /view/theme/quattro/style.php | |
parent | 138a0e06b88b0c9163ea0bffff8e3521e6c7ee22 (diff) | |
download | volse-hubzilla-7aa3b92f4c4619de76f45f448edfd6e4dcfbceb4.tar.gz volse-hubzilla-7aa3b92f4c4619de76f45f448edfd6e4dcfbceb4.tar.bz2 volse-hubzilla-7aa3b92f4c4619de76f45f448edfd6e4dcfbceb4.zip |
quattro: add admin theme settigs. darker items background with a bottom border.
Diffstat (limited to 'view/theme/quattro/style.php')
-rw-r--r-- | view/theme/quattro/style.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/view/theme/quattro/style.php b/view/theme/quattro/style.php index b6104a170..fa02a04b6 100644 --- a/view/theme/quattro/style.php +++ b/view/theme/quattro/style.php @@ -1,11 +1,18 @@ <?php - $color = false; + $color=false; + $quattro_align=false; + $site_color = get_config("quattro","color"); + $site_quattro_align = get_config("quattro", "align" ); + if (local_user()) { $color = get_pconfig(local_user(), "quattro","color"); $quattro_align = get_pconfig(local_user(), 'quattro', 'align' ); } + if ($color===false) $color=$site_color; if ($color===false) $color="dark"; + if ($quattro_align===false) $quattro_align=$site_quattro_align; + if (file_exists("$THEMEPATH/$color/style.css")){ echo file_get_contents("$THEMEPATH/$color/style.css"); |