summaryrefslogtreecommitdiff
path: root/app/views/projects/blob
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-12-02 22:17:48 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-12-02 22:17:48 +0000
commitca7e31c48fef604287ffc485d20a1551b345456a (patch)
tree6ce66597f1c6301e4877e85a2fb3d0ecdb6632e1 /app/views/projects/blob
parentbb76a9e2ea071894ffc369c1b4760ff9afd7e106 (diff)
parent854deae4129c002faf97f615c17e742e8eff9166 (diff)
downloadgitlab-ce-ca7e31c48fef604287ffc485d20a1551b345456a.tar.gz
Merge branch 'ui/consistency' into 'master'
UI: Improve consistency across the board Depends on !1953 See the commits for more details, the messages mostly speak for themselves. Fixes https://dev.gitlab.org/gitlab/gitlabhq/issues/2577 See merge request !1954
Diffstat (limited to 'app/views/projects/blob')
-rw-r--r--app/views/projects/blob/edit.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/blob/edit.html.haml b/app/views/projects/blob/edit.html.haml
index 56745165251..a47fe7ede80 100644
--- a/app/views/projects/blob/edit.html.haml
+++ b/app/views/projects/blob/edit.html.haml
@@ -5,12 +5,12 @@
%ul.center-top-menu.no-bottom.js-edit-mode
%li.active
= link_to '#editor' do
- %i.fa.fa-edit
- Edit file
+ = icon('edit')
+ Edit File
%li
= link_to '#preview', 'data-preview-url' => namespace_project_preview_blob_path(@project.namespace, @project, @id) do
- %i.fa.fa-eye
+ = icon('eye')
= editing_preview_title(@blob.name)
= form_tag(namespace_project_update_blob_path(@project.namespace, @project, @id), method: :put, class: 'form-horizontal js-requires-input js-edit-blob-form') do