diff options
author | Nur Rony <pro.nmrony@gmail.com> | 2017-02-02 18:22:32 +0600 |
---|---|---|
committer | Nur Rony <pro.nmrony@gmail.com> | 2017-02-02 18:22:32 +0600 |
commit | b329a4675ab3641e5b0526da40ed4f47d61b53d4 (patch) | |
tree | 72b791f0c24a12d95b6bdead8e9d4540f8a45411 /app/helpers | |
parent | d4dd1fcf93d10b65b9e1b5ca392daacaf7c5138c (diff) | |
download | gitlab-ce-b329a4675ab3641e5b0526da40ed4f47d61b53d4.tar.gz |
removes old css class from everywhere27291-unify-mr-diff-file-buttons
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/blob_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/blob_helper.rb b/app/helpers/blob_helper.rb index c3508443d8a..311a70725ab 100644 --- a/app/helpers/blob_helper.rb +++ b/app/helpers/blob_helper.rb @@ -21,7 +21,7 @@ module BlobHelper options[:link_opts]) 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' } + button_tag "Edit", class: "btn disabled has-tooltip", 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-sm' elsif can?(current_user, :fork_project, project) @@ -32,7 +32,7 @@ module BlobHelper } fork_path = namespace_project_forks_path(project.namespace, project, namespace_key: current_user.namespace.id, continue: continue_params) - link_to "Edit", fork_path, class: 'btn btn-file-option', method: :post + link_to "Edit", fork_path, class: 'btn', method: :post end end |