r=marcia

- make test run entry point links more visible
This commit is contained in:
ccooper%deadsquid.com 2007-04-24 20:26:47 +00:00
Родитель 6bd967e6ad
Коммит f869619874
3 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -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;
}

Двоичные данные
webtools/litmus/images/go.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 444 B

Просмотреть файл

@ -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>