mirror of
https://github.com/apache/lucene.git
synced 2025-02-06 18:18:38 +00:00
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:
parent
8680e2a02a
commit
bebe033fb5
@ -72,7 +72,7 @@
|
||||
<td class="title" colspan="2"><%=doc['title_text']%></td>
|
||||
</tr>
|
||||
<% 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 %>
|
||||
</table>
|
||||
</td>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Solr Flare: <%=controller.action_name%></title>
|
||||
<title>Solr flare: <%=controller.action_name%></title>
|
||||
<%= javascript_include_tag :defaults %>
|
||||
<%= stylesheet_link_tag 'flare'%>
|
||||
</head>
|
||||
|
@ -158,3 +158,9 @@ em {
|
||||
color: #999;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.auto_complete {
|
||||
padding-left: 20px;
|
||||
padding-top: 10px;
|
||||
background: #fff;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user