Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2016-07-07 23:05:45 +0300
committerJacob Schatz <jschatz@gitlab.com>2016-07-07 23:05:45 +0300
commit7ebd011ed1de7aee706f07a53c63c90f1c8aa5d4 (patch)
tree2d488e4a65caa0552498454811eb1e8322dd6eba /app/views/projects
parent86d83a3a85dfc252ee5efb8cc630e1a4295adb93 (diff)
parentedcdeb86fe40f5b66f3d1a1f57965f2299de3008 (diff)
Merge branch 'dz-remove-icons' into 'master'
Remove icons from file edit tabs We don't need this icons and it also inconsistent with current UI See merge request !5072
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/blob/edit.html.haml2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/views/projects/blob/edit.html.haml b/app/views/projects/blob/edit.html.haml
index e4f04ca7764..b1c9895f43e 100644
--- a/app/views/projects/blob/edit.html.haml
+++ b/app/views/projects/blob/edit.html.haml
@@ -4,12 +4,10 @@
%ul.nav-links.no-bottom.js-edit-mode
%li.active
= link_to '#editor' do
- = icon('edit')
Edit File
%li
= link_to '#preview', 'data-preview-url' => namespace_project_preview_blob_path(@project.namespace, @project, @id) do
- = icon('eye')
= editing_preview_title(@blob.name)
= form_tag(namespace_project_update_blob_path(@project.namespace, @project, @id), method: :put, class: 'form-horizontal js-quick-submit js-requires-input js-edit-blob-form') do