Commit b4d95002 authored by Eric Eastwood's avatar Eric Eastwood

Use CSS to space external link icon from text

parent 8cf22bab
...@@ -170,6 +170,8 @@ ...@@ -170,6 +170,8 @@
} }
.tree-item-file-external-link { .tree-item-file-external-link {
margin-right: 4px;
span { span {
text-decoration: inherit; text-decoration: inherit;
} }
......
...@@ -6,13 +6,12 @@ ...@@ -6,13 +6,12 @@
%td.tree-item-file-name %td.tree-item-file-name
= tree_icon('file', blob.mode, blob.name) = tree_icon('file', blob.mode, blob.name)
= link_to path_to_file, = link_to path_to_file,
class: 'tree-item-file-external-link js-artifact-tree-tooltip', class: ('tree-item-file-external-link js-artifact-tree-tooltip' if is_external_link),
target: ('_blank' if is_external_link), target: ('_blank' if is_external_link),
rel: ('noopener noreferrer' if is_external_link), rel: ('noopener noreferrer' if is_external_link),
title: ('Opens in a new window' if is_external_link) do title: ('Opens in a new window' if is_external_link) do
%span.str-truncated>= blob.name %span.str-truncated>= blob.name
- if is_external_link - if is_external_link
= ' '
= icon('external-link') = icon('external-link')
%td %td
= number_to_human_size(blob.size, precision: 2) = number_to_human_size(blob.size, precision: 2)
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