Replace strong by span for .item-title elements
This commit is contained in:
parent
9e053decfc
commit
ef3d5a2712
5 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@
|
|||
%li(class="js-branch-#{branch.name}")
|
||||
%div
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, branch.name) do
|
||||
%strong.item-title.str-truncated= branch.name
|
||||
%span.item-title.str-truncated= branch.name
|
||||
|
||||
- if branch.name == @repository.root_ref
|
||||
%span.label.label-primary default
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
= cache(cache_key) do
|
||||
%li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
|
||||
.commit-row-title
|
||||
%strong.item-title.str-truncated
|
||||
%span.item-title.str-truncated
|
||||
= link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit.id), class: "commit-row-message"
|
||||
- if commit.description?
|
||||
%a.text-expander.js-toggle-button ...
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
%li
|
||||
%div
|
||||
= link_to namespace_project_tag_path(@project.namespace, @project, tag.name) do
|
||||
%strong.item-title
|
||||
%span.item-title
|
||||
= icon('tag')
|
||||
= tag.name
|
||||
- if tag.message.present?
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
.pull-right
|
||||
= link_to namespace_project_tag_path(@project.namespace, @project, @tag.name), class: 'btn btn-remove remove-row grouped has_tooltip', title: "Delete tag", method: :delete, data: { confirm: "Deleting the '#{@tag.name}' tag cannot be undone. Are you sure?" } do
|
||||
%i.fa.fa-trash-o
|
||||
%strong.item-title
|
||||
= @tag.name
|
||||
.title
|
||||
%span.item-title= @tag.name
|
||||
- if @tag.message.present?
|
||||
%span.light
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
= image_tag group_icon(group), class: "avatar s46 hidden-xs"
|
||||
= link_to group, class: 'group-name' do
|
||||
%strong.item-title= group.name
|
||||
%span.item-title= group.name
|
||||
|
||||
- if group_member
|
||||
as
|
||||
|
|
Loading…
Reference in a new issue