Improve the consistency of commit titles, branch names, tag names, issue/MR titles, on their respective project pages
This commit is contained in:
parent
0e344aa229
commit
818607f011
12 changed files with 24 additions and 9 deletions
|
@ -1,6 +1,7 @@
|
|||
Please view this file on the master branch, on stable branches it's out of date.
|
||||
|
||||
v 8.4.0 (unreleased)
|
||||
- Improve the consistency of commit titles, branch names, tag names, issue/MR titles, on their respective project pages
|
||||
- Autocomplete data is now always loaded, instead of when focusing a comment text area (Yorick Peterse)
|
||||
- Improved performance of finding issues for an entire group (Yorick Peterse)
|
||||
- Added custom application performance measuring system powered by InfluxDB (Yorick Peterse)
|
||||
|
|
3
app/assets/stylesheets/pages/branches.scss
Normal file
3
app/assets/stylesheets/pages/branches.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
.branch-name{
|
||||
font-weight: 600;
|
||||
}
|
|
@ -2,6 +2,10 @@
|
|||
display: block;
|
||||
}
|
||||
|
||||
.commit-row-title .commit-title {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.commit-author, .commit-committer{
|
||||
display: block;
|
||||
color: #999;
|
||||
|
|
|
@ -11,3 +11,8 @@
|
|||
height: 42px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-list .group-name {
|
||||
font-weight: 600;
|
||||
color: #4c4e54;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
.issue-title {
|
||||
margin-bottom: 5px;
|
||||
font-size: $list-font-size;
|
||||
font-weight: bold;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.issue-info {
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
.merge-request-title {
|
||||
margin-bottom: 5px;
|
||||
font-size: $list-font-size;
|
||||
font-weight: bold;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.merge-request-info {
|
||||
|
|
3
app/assets/stylesheets/pages/tags.scss
Normal file
3
app/assets/stylesheets/pages/tags.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
.tag-name{
|
||||
font-weight: 600;
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
%li(class="js-branch-#{branch.name}")
|
||||
%div
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, branch.name) do
|
||||
%strong.str-truncated= branch.name
|
||||
.branch-name.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.str-truncated
|
||||
.commit-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
|
||||
.tag-name
|
||||
= 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
|
||||
.title
|
||||
%strong= @tag.name
|
||||
.tag-name.title
|
||||
= @tag.name
|
||||
- if @tag.message.present?
|
||||
%span.light
|
||||
|
||||
|
|
|
@ -10,8 +10,7 @@
|
|||
%i.fa.fa-sign-out
|
||||
|
||||
= image_tag group_icon(group), class: "avatar s46 hidden-xs"
|
||||
= link_to group, class: 'group-name' do
|
||||
%strong= group.name
|
||||
= link_to group.name, group, class: 'group-name'
|
||||
|
||||
- if group_member
|
||||
as
|
||||
|
|
Loading…
Reference in a new issue