Skip to content

Commit

Permalink
Fix search box styling
Browse files Browse the repository at this point in the history
  • Loading branch information
oltarasenko committed Oct 2, 2020
1 parent d1e5f4b commit 94e64e9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/crawly_ui_web/templates/item/index.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@

<%= if @search do %>
<div class="row">
<div class="column column-90"><input type="text" value="<%= @search %>" name="search" autocomplete="off"></div>
<div class="column column-offset-0">(*)<button type="submit"><i class="fa fa-search"></i></button></div>
<div class="column column-90">
<input type="text" value="<%= @search %>" name="search" autocomplete="off">
<div class="help_text">(*) <i>"field_name:field_value"</i> or more complex expressions <i>"title:%pi% && color:blue || color:green";</i> </div>
</div>
<div class="column column-offset-0"><button type="submit"><i class="fa fa-search"></i></button></div>
</div>
<% else %>
<div class="row">
Expand Down

0 comments on commit 94e64e9

Please sign in to comment.