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 | |
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')
-rwxr-xr-x | view/theme/diabook/rs_common_tabs.tpl | 2 | ||||
-rw-r--r-- | view/theme/diabook/style-settings.css | 15 | ||||
-rwxr-xr-x | view/theme/diabook/theme.php | 2 |
3 files changed, 8 insertions, 11 deletions
diff --git a/view/theme/diabook/rs_common_tabs.tpl b/view/theme/diabook/rs_common_tabs.tpl index 513778e76..6a1c5c71b 100755 --- a/view/theme/diabook/rs_common_tabs.tpl +++ b/view/theme/diabook/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/style-settings.css b/view/theme/diabook/style-settings.css index e077e608d..46f7e957e 100644 --- a/view/theme/diabook/style-settings.css +++ b/view/theme/diabook/style-settings.css @@ -934,17 +934,15 @@ 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 .vcard .fn { - font-size: 18px; - font-weight: bold; - margin-bottom: 5px; +aside .vcard { + display: none; } aside .vcard .title { margin-bottom: 5px; @@ -1007,8 +1005,7 @@ aside #side-peoplefind-url { width: 150px; } #contact-block { - overflow: auto; - height: auto; + display: none; } #contact-block .contact-block-h4 { float: left; @@ -1132,8 +1129,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/theme.php b/view/theme/diabook/theme.php index 08bdfaf89..6973951a0 100755 --- a/view/theme/diabook/theme.php +++ b/view/theme/diabook/theme.php @@ -299,7 +299,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, )); |