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-blue | |
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-blue')
-rwxr-xr-x | view/theme/diabook-blue/rs_common_tabs.tpl | 2 | ||||
-rw-r--r-- | view/theme/diabook-blue/style-settings.css | 15 | ||||
-rwxr-xr-x | view/theme/diabook-blue/theme.php | 2 |
3 files changed, 8 insertions, 11 deletions
diff --git a/view/theme/diabook-blue/rs_common_tabs.tpl b/view/theme/diabook-blue/rs_common_tabs.tpl index 513778e76..6a1c5c71b 100755 --- a/view/theme/diabook-blue/rs_common_tabs.tpl +++ b/view/theme/diabook-blue/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-blue/style-settings.css b/view/theme/diabook-blue/style-settings.css index 4d57d3782..197b53d30 100644 --- a/view/theme/diabook-blue/style-settings.css +++ b/view/theme/diabook-blue/style-settings.css @@ -945,17 +945,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; @@ -1018,8 +1016,7 @@ aside #side-peoplefind-url { width: 150px; } #contact-block { - overflow: auto; - height: auto; + display: none; } #contact-block .contact-block-h4 { float: left; @@ -1153,8 +1150,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-blue/theme.php b/view/theme/diabook-blue/theme.php index 52879649a..4d9e31bfa 100755 --- a/view/theme/diabook-blue/theme.php +++ b/view/theme/diabook-blue/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, )); |