Commit f175d0bc authored by Martin Wortschack's avatar Martin Wortschack Committed by Ezekiel Kigbo

Replace fa-history icons with GitLab SVG history icon

parent ba4c2b16
= icon('history fw') = sprite_icon('history', size: 16, css_class: 'gl-mr-1 gl-vertical-align-text-bottom')
= succeed '.' do = succeed '.' do
To find the state of this project's repository at the time of any of these versions, check out To find the state of this project's repository at the time of any of these versions, check out
= link_to "the tags", project_tags_path(viewer.project) = link_to "the tags", project_tags_path(viewer.project)
...@@ -42,18 +42,18 @@ ...@@ -42,18 +42,18 @@
- if @tag.has_signature? - if @tag.has_signature?
= render partial: 'projects/commit/signature', object: @tag.signature = render partial: 'projects/commit/signature', object: @tag.signature
- if can?(current_user, :admin_tag, @project) - if can?(current_user, :admin_tag, @project)
= link_to edit_project_tag_release_path(@project, @tag.name), class: 'btn btn-edit controls-item has-tooltip', title: s_('TagsPage|Edit release notes') do = link_to edit_project_tag_release_path(@project, @tag.name), class: 'btn btn-icon btn-edit gl-button controls-item has-tooltip', title: s_('TagsPage|Edit release notes') do
= sprite_icon("pencil") = sprite_icon("pencil", css_class: 'gl-icon')
= link_to project_tree_path(@project, @tag.name), class: 'btn controls-item has-tooltip', title: s_('TagsPage|Browse files') do = link_to project_tree_path(@project, @tag.name), class: 'btn btn-icon gl-button controls-item has-tooltip', title: s_('TagsPage|Browse files') do
= sprite_icon('folder-open') = sprite_icon('folder-open', css_class: 'gl-icon')
= link_to project_commits_path(@project, @tag.name), class: 'btn controls-item has-tooltip', title: s_('TagsPage|Browse commits') do = link_to project_commits_path(@project, @tag.name), class: 'btn btn-icon gl-button controls-item has-tooltip', title: s_('TagsPage|Browse commits') do
= icon('history') = sprite_icon('history', css_class: 'gl-icon')
.btn-container.controls-item .btn-container.controls-item
= render 'projects/buttons/download', project: @project, ref: @tag.name = render 'projects/buttons/download', project: @project, ref: @tag.name
- if can?(current_user, :admin_tag, @project) - if can?(current_user, :admin_tag, @project)
.btn-container.controls-item-full .btn-container.controls-item-full
= link_to project_tag_path(@project, @tag.name), class: "btn btn-remove remove-row has-tooltip #{protected_tag?(@project, @tag) ? 'disabled' : ''}", title: s_('TagsPage|Delete tag'), method: :delete, data: { confirm: s_('TagsPage|Deleting the %{tag_name} tag cannot be undone. Are you sure?') % { tag_name: @tag.name } } do = link_to project_tag_path(@project, @tag.name), class: "btn btn-icon btn-danger gl-button remove-row has-tooltip #{protected_tag?(@project, @tag) ? 'disabled' : ''}", title: s_('TagsPage|Delete tag'), method: :delete, data: { confirm: s_('TagsPage|Deleting the %{tag_name} tag cannot be undone. Are you sure?') % { tag_name: @tag.name } } do
%i.fa.fa-trash-o = sprite_icon('remove', css_class: 'gl-icon')
- if @tag.message.present? - if @tag.message.present?
%pre.wrap{ data: { qa_selector: 'tag_message_content' } } %pre.wrap{ data: { qa_selector: 'tag_message_content' } }
......
---
title: Replace fa-history icons with GitLab SVG history icon
merge_request: 36691
author:
type: changed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment