diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-31 18:42:11 +0200 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-31 18:42:11 +0200 |
commit | 36545e554bd051f602c270569a20eddf432555f0 (patch) | |
tree | 8fb986714001a83587167e80f7eca55b4bcd0fd6 /view/theme/diabook-aerith | |
parent | 19a7096be65d761abf9f9e195a862208aa6fa397 (diff) | |
download | volse-hubzilla-36545e554bd051f602c270569a20eddf432555f0.tar.gz volse-hubzilla-36545e554bd051f602c270569a20eddf432555f0.tar.bz2 volse-hubzilla-36545e554bd051f602c270569a20eddf432555f0.zip |
diabook-themes: move "common tabs" to left side on settings page
Diffstat (limited to 'view/theme/diabook-aerith')
-rwxr-xr-x | view/theme/diabook-aerith/rs_common_tabs.tpl | 2 | ||||
-rw-r--r-- | view/theme/diabook-aerith/style-settings.css | 17 | ||||
-rwxr-xr-x | view/theme/diabook-aerith/theme.php | 2 |
3 files changed, 7 insertions, 14 deletions
diff --git a/view/theme/diabook-aerith/rs_common_tabs.tpl b/view/theme/diabook-aerith/rs_common_tabs.tpl index 513778e76..6a1c5c71b 100755 --- a/view/theme/diabook-aerith/rs_common_tabs.tpl +++ b/view/theme/diabook-aerith/rs_common_tabs.tpl @@ -1,4 +1,4 @@ -<h3 style="margin-top: 0px; padding-left: 0px; text-align: center;">Settings Menu</h3> +<h3 style="border-bottom: 1px solid #D2D2D2;">Settings Menu</h3> <ul class="rs_tabs"> {{ for $tabs as $tab }} <li><a href="$tab.url" class="rs_tab button $tab.sel">$tab.label</a></li> diff --git a/view/theme/diabook-aerith/style-settings.css b/view/theme/diabook-aerith/style-settings.css index af08f0ffb..0326dbcfc 100644 --- a/view/theme/diabook-aerith/style-settings.css +++ b/view/theme/diabook-aerith/style-settings.css @@ -982,18 +982,14 @@ ul.menu-popup .empty { aside { display: table-cell; vertical-align: top; - width: 160px; + width: 200px; padding: 0px 10px 0px 10px; border-right: 1px solid #D2D2D2; float: left; /* background: #F1F1F1; */ } aside #page-sidebar{display: none;} -aside .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; -} +aside .vcard {display: none;} aside .vcard .title { margin-bottom: 5px; } @@ -1056,10 +1052,7 @@ aside #side-follow-url { aside #side-peoplefind-url { width: 150px; } -#contact-block { - overflow: auto; - height: auto; -} +#contact-block {display: none;} #contact-block .contact-block-h4 { float: left; margin: 5px 0px; @@ -1192,8 +1185,8 @@ span.sbox input { section { display: table-cell; vertical-align: top; - width: 640px; - padding: 0px 10px 0px 10px; + width: 650px; + padding: 0px 0px 0px 20px; } body .pageheader{ diff --git a/view/theme/diabook-aerith/theme.php b/view/theme/diabook-aerith/theme.php index 38dd9ae8c..132d69b47 100755 --- a/view/theme/diabook-aerith/theme.php +++ b/view/theme/diabook-aerith/theme.php @@ -291,7 +291,7 @@ if ($a->argv[0] === "settings"){ ) ); $tabtpl = file_get_contents(dirname(__file__).'/rs_common_tabs.tpl') ; - $a->page['right_aside'] = replace_macros($tabtpl, array( + $a->page['aside'] = replace_macros($tabtpl, array( '$tabs' => $tabs, )); |