Commit 11605c2d8dac95503242a87b56715fbe985953e9

Authored by Dmitriy Zaporozhets
1 parent 1165759b

Tree files use normal font-weight

app/views/projects/tree/_blob_item.html.haml
1 1 %tr{ class: "tree-item #{tree_hex_class(blob_item)}" }
2 2 %td.tree-item-file-name
3 3 = tree_icon(type)
4   - %strong= link_to truncate(blob_item.name, length: 40), project_blob_path(@project, tree_join(@id || @commit.id, blob_item.name))
  4 + %span= link_to truncate(blob_item.name, length: 40), project_blob_path(@project, tree_join(@id || @commit.id, blob_item.name))
5 5 %td.tree_time_ago.cgray
6 6 %span.log_loading.hide
7 7 Loading commit data...
... ...
app/views/projects/tree/_submodule_item.html.haml
... ... @@ -4,7 +4,7 @@
4 4 %tr{ class: "tree-item", url: url }
5 5 %td.tree-item-file-name
6 6 = image_tag "submodule.png"
7   - %strong= truncate(name, length: 40)
  7 + %span= truncate(name, length: 40)
8 8 %td
9 9 %code= submodule_item.id[0..10]
10 10 %td{ colspan: 2 }
... ...