r=marcia

- make test run entry point links more visible


git-svn-id: svn://10.0.0.236/trunk@224962 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ccooper%deadsquid.com 2007-04-24 20:26:47 +00:00
parent b60437eeb6
commit 2e3740b99f
3 changed files with 10 additions and 2 deletions

View File

@ -1012,7 +1012,7 @@ div.testcase-completed {
color: #333333;
}
.testcase-completed, td.in_use, div.recommended_test_runs {
.testcase-completed, td.in_use, div.recommended_test_runs, a.test_run:hover {
background-color: #eeffee;
border-width: 2px;
border-color: #99cc99;
@ -1467,3 +1467,11 @@ ul.test_run_nav a {
li.recommended {
font-size: 1.2em;
}
a.test_run {
padding: 5px;
}
a.test_run:link, a.test_run:visited {
color: #006633;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 444 B

View File

@ -15,7 +15,7 @@
[% END %]
<tr [% IF not (loop.count % 2) %]class="even"[% ELSE %]class="odd"[% END %]>
<td class="name">[% IF display_title_link %]<a title="Click here to join this test run!" href="run_tests.cgi?test_run_id=[% active_test_run.test_run_id %]">[% END %][% active_test_run.name %][% IF active_test_run.recommended %] <img alt="*" src="images/yellowstar.gif" / title="Mozilla needs help testing this right now">[% END %][% IF ! select_criteria %]</a>[% END %]</td>
<td class="name">[% IF display_title_link %]<a class="test_run" title="Click here to join this test run!" href="run_tests.cgi?test_run_id=[% active_test_run.test_run_id %]">[% END %][% active_test_run.name %][% IF active_test_run.recommended %] <img alt="*" src="images/yellowstar.gif" / title="Mozilla needs help testing this right now">[% END %][% IF display_title_link %]&nbsp;<img alt="Go!" src="images/go.png" /></a>[% END %]</td>
<td id="coverage_[% active_test_run.test_run_id %]" name="coverage_[% active_test_run.test_run_id %]" class="coverage"><a href="test_run_report.cgi?test_run_id=[% active_test_run.test_run_id %]">Loading...<br/><img src="images/loading.gif" alt="Loading..." class="coverage-loading" /></a></td>
<td class="results" >Pass: <a href="search_results.cgi?test_run_id=[% active_test_run.test_run_id %]&amp;result_status=pass">[% active_test_run.getNumResultsByStatus(1) %]</a> / Fail: <a href="search_results.cgi?test_run_id=[% active_test_run.test_run_id %]&amp;result_status=fail">[% active_test_run.getNumResultsByStatus(2) %]</a> / Unclear: <a href="search_results.cgi?test_run_id=[% active_test_run.test_run_id %]&amp;result_status=unclear">[% active_test_run.getNumResultsByStatus(3) %]</a><br/>
Results with Comments: <a href="search_results.cgi?test_run_id=[% active_test_run.test_run_id %]&amp;has_comments=1">[% active_test_run.getNumResultsWithComments %]</a></td>