Commit 53819ace authored by Sunil Joshi's avatar Sunil Joshi Committed by Simon Green

Bug 451758 - Highlight shared searches in userprefs.cgi

r=glob, a=simon
parent 5063970f
...@@ -575,4 +575,9 @@ form th { ...@@ -575,4 +575,9 @@ form th {
} }
th.left { th.left {
text-align: left; text-align: left;
} }
\ No newline at end of file
tr.shared_search {
background-color: #fff7cd;
color: #000;
}
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
[% Hook.process('saved-row') %] [% Hook.process('saved-row') %]
</tr> </tr>
[% FOREACH q = user.queries %] [% FOREACH q = user.queries %]
<tr> <tr [% 'class="shared_search"' IF q.shared_with_group.id %]>
<td>[% q.name FILTER html %]</td> <td>[% q.name FILTER html %]</td>
<td> <td>
<a href="buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=[% q.name FILTER uri %] <a href="buglist.cgi?cmdtype=dorem&amp;remaction=run&amp;namedcmd=[% q.name FILTER uri %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment