Commit a8870e87e4cc8ce441032dc6aa3dfa6e1812090e

Authored by Dmitriy Zaporozhets
1 parent 19c58bec

Fix blame markup & breadcrubs for commits

app/assets/stylesheets/gitlab_bootstrap/files.scss
... ... @@ -68,10 +68,22 @@
68 68 * Blame file
69 69 */
70 70 &.blame {
  71 + table {
  72 + border:none;
  73 + box-shadow:none;
  74 + margin:0;
  75 + }
71 76 tr {
72 77 border-bottom: 1px solid #eee;
73 78 }
74 79 td {
  80 + &:first-child {
  81 + border-left:none;
  82 + }
  83 + &:last-child {
  84 + border-right:none;
  85 + }
  86 + background:#fff;
75 87 padding:5px;
76 88 }
77 89 .author,
... ...
app/views/commits/show.html.haml
1 1 = render "head"
2 2  
3   -- if @path
  3 +- if @path.present?
4 4 %ul.breadcrumb
5 5 %li
6 6 %span.arrow
... ...