Merge branch 'master' into production

This commit is contained in:
Dan Elbert 2017-05-08 11:20:11 -05:00
commit c081ae351a
2 changed files with 15 additions and 9 deletions

View File

@ -6,6 +6,10 @@ div.table_tags {
width: 275px;
}
div.recipe_list_controls {
width: 85px;
}
@mixin editor {
@extend .well;

View File

@ -61,6 +61,7 @@
<td>
<% if current_user? %>
<div class="recipe_list_controls">
<%= link_to new_recipe_log_path(recipe), class: 'btn btn-xs btn-primary' do %>
<span class="glyphicon glyphicon-copy"></span>
<% end %>
@ -70,6 +71,7 @@
<%= link_to recipe, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-xs btn-danger' do %>
<span class="glyphicon glyphicon-remove"></span>
<% end %>
</div>
<% end %>
</td>
</tr>