Fix changes dropdown ellipsis working across browsers

Closes #41561
This commit is contained in:
Phil Hughes 2018-01-08 10:45:56 +00:00
parent 82e2d90b51
commit 500a3de7b4
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
5 changed files with 25 additions and 4 deletions

View File

@ -651,15 +651,13 @@
min-width: 0;
}
.diff-changed-file-name,
.diff-changed-file-path {
.diff-changed-file-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.diff-changed-file-path {
direction: rtl;
color: $gl-text-color-tertiary;
}

View File

@ -226,4 +226,12 @@ module DiffHelper
diffs.overflow?
end
def diff_file_path_text(diff_file, max: 60)
path = diff_file.new_path
return path unless path.size > max && max > 3
"...#{path[-(max - 3)..-1]}"
end
end

View File

@ -25,7 +25,7 @@
= sprite_icon(diff_file_changed_icon(diff_file), size: 16, css_class: "#{diff_file_changed_icon_color(diff_file)} diff-file-changed-icon append-right-8")
%span.diff-changed-file-content.append-right-8
%strong.diff-changed-file-name= diff_file.blob.name
%span.diff-changed-file-path.prepend-top-5= diff_file.new_path
%span.diff-changed-file-path.prepend-top-5= diff_file_path_text(diff_file)
%span.diff-changed-stats
%span.cgreen<
+#{diff_file.added_lines}

View File

@ -0,0 +1,5 @@
---
title: Fixed chanages dropdown ellipsis positioning
merge_request:
author:
type: fixed

View File

@ -266,4 +266,14 @@ describe DiffHelper do
end
end
end
context '#diff_file_path_text' do
it 'returns full path by default' do
expect(diff_file_path_text(diff_file)).to eq(diff_file.new_path)
end
it 'returns truncated path' do
expect(diff_file_path_text(diff_file, max: 10)).to eq("...open.rb")
end
end
end