From: myk%mozilla.org <> Date: Sat, 30 Jul 2005 07:41:09 +0000 (+0000) Subject: Fix for bug 302702: refactors tabs code into shared file so not only prefs and search... X-Git-Tag: bugzilla-2.21.1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f55027e7a07f4cb3f74cd6c42e710e794564df3c;p=thirdparty%2Fbugzilla.git Fix for bug 302702: refactors tabs code into shared file so not only prefs and search but also other pages can use it --- diff --git a/skins/standard/global.css b/skins/standard/global.css index f9ac7c96d1..ab3eabf10f 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -313,21 +313,24 @@ body padding: 1em 0; } -.selected_tab +td.tab { - background: #fff; - border: 1px solid black; + background: #eee; + text-align: center; + border-style: solid; + border-color: black; + border-width: 0px 0px 2px 0px; } - -.unselected_tab + +td.tab.selected { - background: #eee; - border: 1px solid black; + background: white; + border-width: 2px 2px 0px 2px; } -.spacer +td.tab.spacer { - border: 1px solid black; + background: white; } table#flags th, table#flags td { vertical-align: baseline; text-align: left; } diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index d909f3b8ac..5287ff1e4f 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -38,57 +38,33 @@ [% PROCESS global/header.html.tmpl title = "User Preferences" h2 = filtered_login - style = "td.selected_tab { - border-width: 2px 2px 0px; - border-style: solid; - border-color: black; - } - td.unselected_tab, td.spacer { - border-width: 0px 0px 2px 0px; - border-style: solid; - border-color: black; - }" %] -[% tabs = [ { name => "account", description => "Account Preferences", - saveable => "1" }, - { name => "settings", description => "General Preferences", - saveable => "1" }, - { name => "email", description => "Email Preferences", - saveable => "1" }, - { name => "saved-searches", description => "Saved searches", - saveable => "1" }, - { name => "permissions", description => "Permissions", - saveable => "0" } ] %] +[% tabs = [ { name => "account", label => "Account Preferences", + link => "userprefs.cgi?tab=account", saveable => "1" }, + { name => "settings", label => "General Preferences", + link => "userprefs.cgi?tab=settings", saveable => "1" }, + { name => "email", label => "Email Preferences", + link => "userprefs.cgi?tab=email", saveable => "1" }, + { name => "saved-searches", label => "Saved searches", + link => "userprefs.cgi?tab=saved-searches", saveable => "1" }, + { name => "permissions", label => "Permissions", + link => "userprefs.cgi?tab=permissions", saveable => "0" } ] %] -
- - [% FOREACH tab = tabs %] - [% IF tab.name == current_tab_name %] - [% current_tab = tab %] - | - [% tab.description %] - | - [% ELSE %] -- [% tab.description %] - | - [% END %] - [% END %] - -- |
The changes to your - [% current_tab.description FILTER lower %] have been saved. + [% current_tab.label FILTER lower %] have been saved.
[% IF email_changes_saved %] @@ -99,7 +75,7 @@ [% END %] [% END %] -