diff options
author | myk%mozilla.org <> | 2004-07-03 09:49:16 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2004-07-03 09:49:16 +0200 |
commit | 3c436394d0083ed29e9381aa48b467a0ae99bc11 (patch) | |
tree | 44347ef3996c0856d2019ead1d1d2eda6e86bb98 | |
parent | 00cc8677e25a98e81d70757cc02991e63ee3b975 (diff) | |
download | bugzilla-3c436394d0083ed29e9381aa48b467a0ae99bc11.tar.gz bugzilla-3c436394d0083ed29e9381aa48b467a0ae99bc11.tar.xz |
Fix for bug 248379: update to bug 245924; enable link groups to be styled individually
Patch by Svetlana Harisova
r=myk
a=myk
-rw-r--r-- | css/global.css | 14 | ||||
-rw-r--r-- | skins/standard/global.css | 14 | ||||
-rw-r--r-- | template/en/default/global/useful-links.html.tmpl | 12 |
3 files changed, 18 insertions, 22 deletions
diff --git a/css/global.css b/css/global.css index 7cbda7b0a..5c08cbe04 100644 --- a/css/global.css +++ b/css/global.css @@ -107,14 +107,14 @@ display: table; } - #footer .group + #footer #links-actions, + #footer #links-edit, + #footer #links-saved { display: table-row; } - #footer #link-action, - #footer #link-edit, - #footer #link-saved + #footer .label { width: 7.2em; display: block; @@ -125,15 +125,13 @@ padding: 0.1em 0.2em; } - #footer #link-action + #footer #links-actions .label { padding-top: 0.45em; } /* hide from MSIE and NN4 */ - [id]#footer #link-action, - [id]#footer #link-edit, - [id]#footer #link-saved + [id]#footer .label { display: table-cell; float: none; diff --git a/skins/standard/global.css b/skins/standard/global.css index 7cbda7b0a..5c08cbe04 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -107,14 +107,14 @@ display: table; } - #footer .group + #footer #links-actions, + #footer #links-edit, + #footer #links-saved { display: table-row; } - #footer #link-action, - #footer #link-edit, - #footer #link-saved + #footer .label { width: 7.2em; display: block; @@ -125,15 +125,13 @@ padding: 0.1em 0.2em; } - #footer #link-action + #footer #links-actions .label { padding-top: 0.45em; } /* hide from MSIE and NN4 */ - [id]#footer #link-action, - [id]#footer #link-edit, - [id]#footer #link-saved + [id]#footer .label { display: table-cell; float: none; diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl index 8e208927c..b37ef4c35 100644 --- a/template/en/default/global/useful-links.html.tmpl +++ b/template/en/default/global/useful-links.html.tmpl @@ -27,8 +27,8 @@ <form method="get" action="show_bug.cgi"> <div id="useful-links"> - <div class="group"> - <div id="link-action">Actions:</div> + <div id="links-actions"> + <div class="label">Actions:</div> <div class="links"> <a href="enter_bug.cgi">New</a> | <a href="query.cgi">Search</a> | @@ -64,8 +64,8 @@ </div> [% IF user.login %] - <div class="group"> - <div id="link-edit">Edit:</div> + <div id="links-edit"> + <div class="label">Edit:</div> <div class="links"> <a href="userprefs.cgi">Prefs</a> @@ -88,8 +88,8 @@ [%# Saved searches %] - <div class="group"> - <div id="link-saved"> + <div id="links-saved"> + <div class="label"> [% IF user.showmybugslink OR user.queries.size %] Saved Searches: [% END %] |