tweaks to suggest popup to avoid overlay issue, lowercased flare as that seems a good persona, and added commas on document display

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@510678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2007-02-22 22:05:16 +00:00
parent 8680e2a02a
commit bebe033fb5
3 changed files with 8 additions and 2 deletions

View File

@ -72,7 +72,7 @@
<td class="title" colspan="2"><%=doc['title_text']%></td> <td class="title" colspan="2"><%=doc['title_text']%></td>
</tr> </tr>
<% doc.each do |k,v|; highlighting = @response.highlighted(doc['id'], k) %> <% doc.each do |k,v|; highlighting = @response.highlighted(doc['id'], k) %>
<tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : v%></td></tr> <tr><td class="field"><%=k%>:</td><td><%= highlighting ? "...#{highlighting}..." : (v.respond_to?('join') ? v.join(',') : v.to_s)%></td></tr>
<% end %> <% end %>
</table> </table>
</td> </td>

View File

@ -1,6 +1,6 @@
<html> <html>
<head> <head>
<title>Solr Flare: <%=controller.action_name%></title> <title>Solr flare: <%=controller.action_name%></title>
<%= javascript_include_tag :defaults %> <%= javascript_include_tag :defaults %>
<%= stylesheet_link_tag 'flare'%> <%= stylesheet_link_tag 'flare'%>
</head> </head>

View File

@ -158,3 +158,9 @@ em {
color: #999; color: #999;
font-style: italic; font-style: italic;
} }
div.auto_complete {
padding-left: 20px;
padding-top: 10px;
background: #fff;
}