Skip to content

Commit

Permalink
Merge pull request #2764 from rhelmer/bug1152243-revert-icon-supersea…
Browse files Browse the repository at this point in the history
…rch-ui-change

Revert "Bug 1152243 Add an icon to links that add terms to the current s...
  • Loading branch information
rhelmer committed May 1, 2015
2 parents 5a90c90 + 9276976 commit 751e05b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
Binary file removed webapp-django/crashstats/base/static/img/icons/add.png
Binary file not shown.
Expand Up @@ -212,20 +212,6 @@
display: inline-block;
padding-left: 17px;
}

.term {
background: transparent url(../../img/icons/add.png) left top no-repeat;
display: inline-block;
padding-left: 13px;
}

th.crash-id {
width: 235px;
}

a.crash-id {
font-family: monospace;
}
}
.facet {
.column-narrow {
Expand Down
Expand Up @@ -15,7 +15,7 @@
<caption>Crash Reports</caption>
<thead>
<tr>
<th scope="col" class="crash-id">Crash ID</th>
<th scope="col">Crash ID</th>
{% for column in columns %}
<th scope="col">{{ column | replace('_', ' ') | capitalize }}</th>
{% endfor %}
Expand All @@ -24,7 +24,7 @@
<tbody>
{% for crash in query.hits %}
<tr>
<td><a href="{{ url('crashstats:report_index', crash.uuid) }}" class="crash-id">{{ crash.uuid }}</a></td>
<td><a href="{{ url('crashstats:report_index', crash.uuid) }}" class="external-link">{{ crash.uuid }}</a></td>
{% for column in columns %}
<td>
{% if crash[column] %}
Expand All @@ -39,7 +39,6 @@

{% if column == 'signature' %}
&nbsp;
<br>
<em>
<a
{% if waffle.switch('signature-report') %}
Expand Down Expand Up @@ -91,7 +90,6 @@
<td>
<a href="#" class="term" data-field="{{ facet }}" title="Add this term to the search form">{{ hit.term }}</a>
{% if facet == 'signature' %}
<br>
<em>
<a
{% if waffle.switch('signature-report') %}
Expand Down

0 comments on commit 751e05b

Please sign in to comment.