Fix on-hover state for 'Edit' button on tree view

This commit is contained in:
Valery Sizov 2016-06-21 14:27:20 +03:00
parent bb4a1ef6c1
commit c6b4106401
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ module BlobHelper
if !on_top_of_branch?(project, ref)
button_tag "Edit", class: "btn disabled has-tooltip btn-file-option", title: "You can only edit files when you are on a branch", data: { container: 'body' }
elsif can_edit_blob?(blob, project, ref)
link_to "Edit", edit_path, class: 'btn btn-file-option'
link_to "Edit", edit_path, class: 'btn btn-sm'
elsif can?(current_user, :fork_project, project)
continue_params = {
to: edit_path,