aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/diabook/theme.php
diff options
context:
space:
mode:
authortommy tomson <thomas.bierey@gmx.de>2012-04-29 04:12:04 +0200
committertommy tomson <thomas.bierey@gmx.de>2012-04-29 04:12:04 +0200
commit3d054341ef3c7598c12b003c0d271910b3349795 (patch)
tree33919b3fc16f34b368a4de0617ac8f467b38a315 /view/theme/diabook/theme.php
parent356bd9b04ad5378b19d4aa8b25ccab178491df34 (diff)
downloadvolse-hubzilla-3d054341ef3c7598c12b003c0d271910b3349795.tar.gz
volse-hubzilla-3d054341ef3c7598c12b003c0d271910b3349795.tar.bz2
volse-hubzilla-3d054341ef3c7598c12b003c0d271910b3349795.zip
diabook-themes: bug/css-fixes
Diffstat (limited to 'view/theme/diabook/theme.php')
-rwxr-xr-xview/theme/diabook/theme.php23
1 files changed, 20 insertions, 3 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index c45db9884..fa0d47ece 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -3,13 +3,13 @@
/*
* Name: Diabook
* Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
- * Version: (Version: 1.022)
+ * Version: (Version: 1.023)
* Author:
*/
//print diabook-version for debugging
-$diabook_version = "Diabook (Version: 1.022)";
+$diabook_version = "Diabook (Version: 1.023)";
$a->page['htmlhead'] .= sprintf('<script "%s" ></script>', $diabook_version);
//change css on network and profilepages
@@ -313,6 +313,20 @@ $autogrowJS = $a->get_baseurl($ssl_state)."/view/theme/diabook/js/jquery.autogro
$a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" ></script>', $autogrowJS);
//js scripts
+
+//check if community_home-plugin is activated and change css
+$nametocheck = "communityhome";
+$r = q("select id from addon where name = '%s' and installed = 1", dbesc($nametocheck));
+if(count($r) == "1") {
+
+$a->page['htmlhead'] .= '
+<script>
+$(document).ready(function() {
+ $("div#login-submit-wrapper").attr("style","padding-top: 120px;");
+ });
+</script>';
+}
+
//comment-edit-wrapper on photo_view
if ($a->argv[0].$a->argv[2] === "photos"."image"){
@@ -324,7 +338,6 @@ $a->page['htmlhead'] .= '
});
</script>';
-
}
$a->page['htmlhead'] .= '
@@ -334,6 +347,10 @@ $a->page['htmlhead'] .= '
$("a.lightbox").fancybox(); // Select all links with lightbox class
});
+$(document).ready(function() {
+ var footer_top = $(document).height() - 30;
+ $("div#footerbox").attr("style", "border-top: 1px solid #D2D2D2; width: 70%;right: 15%;position: absolute;top:"+footer_top+"px;");
+ });
</script>';