Commit a8870e87e4cc8ce441032dc6aa3dfa6e1812090e
1 parent
19c58bec
Exists in
master
and in
4 other branches
Fix blame markup & breadcrubs for commits
Showing
2 changed files
with
13 additions
and
1 deletions
Show diff stats
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, | ... | ... |